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