Files
ai/deploy/k8s/prod/patch-web.yaml
2026-04-01 18:34:08 -04:00

19 lines
370 B
YAML

# Production web: imagePullPolicy and resources
apiVersion: apps/v1
kind: Deployment
metadata:
name: ai-web
spec:
template:
spec:
containers:
- name: ai-web
imagePullPolicy: Always
resources:
requests:
memory: "256Mi"
cpu: "100m"
limits:
memory: "512Mi"
cpu: "500m"