We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a086c9 commit e49371dCopy full SHA for e49371d
1 file changed
argoCD/deployment.yaml
@@ -20,12 +20,12 @@ spec:
20
- containerPort: 3000
21
name: default-port
22
resources:
23
- limits:
24
- memory: "3Gi"
25
- cpu: "2000m"
26
requests:
27
- memory: "1Gi"
28
- cpu: "1000m"
+ cpu: 500m # 必要最低限の0.5CPUを確保
+ memory: 1Gi # 必要最低限の1GiBを確保
+ limits:
+ cpu: 1000m # 最大1CPUまで使用可能
+ memory: 2Gi # 最大2GiBまで使用可能
29
readinessProbe:
30
initialDelaySeconds: 30
31
periodSeconds: 20
0 commit comments