58 lines
877 B
YAML
58 lines
877 B
YAML
replicaCount: 1
|
|
|
|
image:
|
|
repository: python
|
|
tag: "3.10-slim"
|
|
pullPolicy: IfNotPresent
|
|
|
|
# Build MCP at runtime for now
|
|
initContainers:
|
|
enabled: true
|
|
|
|
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
|
|
|
|
env:
|
|
HOME: /tmp
|
|
PIP_USER: "1"
|
|
PYTHONUSERBASE: /tmp/.local
|