Files
todo/deploy/k8s/overlays/prod/deployment-patch.yaml
Mayne0213 f4cfd5b594 REFACTOR(app): remove CPU limits
- Remove CPU limit configuration
- Improve container performance
2025-12-05 22:39:17 +09:00

20 lines
335 B
YAML

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