fix(resources): lower memory requests to fix ArgoCD controller scheduling
metrics-server activation triggered simultaneous HPA scale-ups, exhausting node request budgets despite sufficient physical RAM. ArgoCD application- controller (256Mi request) could not schedule on either node. - argocd controller: 256Mi → 128Mi request (unblocks scheduling immediately) - nowchess services: 128Mi → 96Mi request (prevents HPA cascade from filling nodes) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -901,7 +901,7 @@ controller:
|
||||
memory: 512Mi
|
||||
requests:
|
||||
cpu: 250m
|
||||
memory: 256Mi
|
||||
memory: 128Mi
|
||||
|
||||
# Application controller container ports
|
||||
containerPorts:
|
||||
|
||||
@@ -79,7 +79,7 @@ spec:
|
||||
resources:
|
||||
requests:
|
||||
cpu: "5m"
|
||||
memory: "128Mi"
|
||||
memory: "96Mi"
|
||||
limits:
|
||||
cpu: "500m"
|
||||
memory: "256Mi"
|
||||
@@ -146,7 +146,7 @@ spec:
|
||||
resources:
|
||||
requests:
|
||||
cpu: "5m"
|
||||
memory: "128Mi"
|
||||
memory: "96Mi"
|
||||
limits:
|
||||
cpu: "500m"
|
||||
memory: "256Mi"
|
||||
@@ -223,7 +223,7 @@ spec:
|
||||
resources:
|
||||
requests:
|
||||
cpu: "20m"
|
||||
memory: "128Mi"
|
||||
memory: "96Mi"
|
||||
limits:
|
||||
cpu: "500m"
|
||||
memory: "256Mi"
|
||||
@@ -384,7 +384,7 @@ spec:
|
||||
resources:
|
||||
requests:
|
||||
cpu: "5m"
|
||||
memory: "128Mi"
|
||||
memory: "96Mi"
|
||||
limits:
|
||||
cpu: "500m"
|
||||
memory: "256Mi"
|
||||
@@ -447,7 +447,7 @@ spec:
|
||||
resources:
|
||||
requests:
|
||||
cpu: "5m"
|
||||
memory: "128Mi"
|
||||
memory: "96Mi"
|
||||
limits:
|
||||
cpu: "500m"
|
||||
memory: "256Mi"
|
||||
@@ -511,7 +511,7 @@ spec:
|
||||
resources:
|
||||
requests:
|
||||
cpu: "5m"
|
||||
memory: "128Mi"
|
||||
memory: "96Mi"
|
||||
limits:
|
||||
cpu: "500m"
|
||||
memory: "256Mi"
|
||||
@@ -592,7 +592,7 @@ spec:
|
||||
resources:
|
||||
requests:
|
||||
cpu: "5m"
|
||||
memory: "128Mi"
|
||||
memory: "96Mi"
|
||||
limits:
|
||||
cpu: "500m"
|
||||
memory: "256Mi"
|
||||
@@ -666,7 +666,7 @@ spec:
|
||||
resources:
|
||||
requests:
|
||||
cpu: "5m"
|
||||
memory: "128Mi"
|
||||
memory: "96Mi"
|
||||
limits:
|
||||
cpu: "500m"
|
||||
memory: "256Mi"
|
||||
@@ -727,7 +727,7 @@ spec:
|
||||
memory: "64Mi"
|
||||
limits:
|
||||
cpu: "100m"
|
||||
memory: "128Mi"
|
||||
memory: "96Mi"
|
||||
rollbackWindow:
|
||||
revisions: 3
|
||||
strategy:
|
||||
|
||||
Reference in New Issue
Block a user