From f0c85270257bafc0a4d56caa7bcfdef6143e5da8 Mon Sep 17 00:00:00 2001 From: "cryptophys.adm" Date: Sun, 1 Feb 2026 16:30:10 +0000 Subject: [PATCH] Add helm/values.yaml --- helm/values.yaml | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 helm/values.yaml diff --git a/helm/values.yaml b/helm/values.yaml new file mode 100644 index 0000000..f576d2b --- /dev/null +++ b/helm/values.yaml @@ -0,0 +1,48 @@ +replicaCount: 1 + +image: + repository: harbor.cryptophys.work/cryptophys/mcp-server + tag: latest + pullPolicy: Always + +service: + type: ClusterIP + port: 80 + targetPort: 8088 + +ingress: + enabled: true + className: nginx + host: mcp.cryptophys.work + tls: + enabled: true + secretName: mcp-tls + +resources: + requests: + cpu: 50m + memory: 128Mi + limits: + cpu: 200m + memory: 256Mi + +nodeSelector: + kubernetes.io/hostname: cortex-178-18-250-39 + +tolerations: + - key: node-role.kubernetes.io/control-plane + effect: NoSchedule + +securityContext: + runAsNonRoot: true + runAsUser: 1000 + runAsGroup: 1000 + fsGroup: 1000 + seccompProfile: + type: RuntimeDefault + +containerSecurityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL