Skip to content

Commit e49371d

Browse files
committed
fix: adjust resource requests and limits for deployment
1 parent 5a086c9 commit e49371d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

argoCD/deployment.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ spec:
2020
- containerPort: 3000
2121
name: default-port
2222
resources:
23-
limits:
24-
memory: "3Gi"
25-
cpu: "2000m"
2623
requests:
27-
memory: "1Gi"
28-
cpu: "1000m"
24+
cpu: 500m # 必要最低限の0.5CPUを確保
25+
memory: 1Gi # 必要最低限の1GiBを確保
26+
limits:
27+
cpu: 1000m # 最大1CPUまで使用可能
28+
memory: 2Gi # 最大2GiBまで使用可能
2929
readinessProbe:
3030
initialDelaySeconds: 30
3131
periodSeconds: 20

0 commit comments

Comments
 (0)