Files
portfolio/deploy/k8s/overlays/prod/deployment-patch.yaml
Mayne0213 4d690851a0 CHORE(app): increase CPU limits
- Prod: 400m -> 800m (2x)
- Dev: 280m -> 560m (2x)

Strategy A: Conservative approach for throttling reduction
2025-12-05 01:42:59 +09:00

20 lines
372 B
YAML

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