Files
portfolio/deploy/k8s/overlays/prod/deployment-patch.yaml
Mayne0213 2628d722a5 CHORE(app): allocate extra CPU for throttling
- Increase CPU allocation
- Reduce container throttling
2025-12-01 17:15:05 +09:00

20 lines
372 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: portfolio-app
labels:
environment: production
spec:
replicas: 1
template:
spec:
containers:
- name: portfolio-app
resources:
requests:
memory: "120Mi"
cpu: "200m"
limits:
memory: "230Mi"
cpu: "400m"