fix(neuron): scale stage/prod to 0 replicas and reduce dev memory requests

- Stage and prod deployments scaled to 0 — not yet promoted, no need for running pods
- Dev memory requests reduced from 384Mi to 256Mi to allow scheduling on memory-constrained node
This commit is contained in:
Will Anderson
2026-04-17 10:18:50 -05:00
parent bbe3d14037
commit 939e2574d2
6 changed files with 8 additions and 8 deletions
@@ -35,10 +35,10 @@ spec:
resources: resources:
requests: requests:
cpu: 100m cpu: 100m
memory: 384Mi memory: 256Mi
limits: limits:
cpu: 500m cpu: 500m
memory: 768Mi memory: 512Mi
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /actuator/health/liveness path: /actuator/health/liveness
@@ -35,10 +35,10 @@ spec:
resources: resources:
requests: requests:
cpu: 100m cpu: 100m
memory: 384Mi memory: 256Mi
limits: limits:
cpu: 500m cpu: 500m
memory: 768Mi memory: 512Mi
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /actuator/health/liveness path: /actuator/health/liveness
@@ -7,7 +7,7 @@ metadata:
app: neuron-mcp app: neuron-mcp
env: prod env: prod
spec: spec:
replicas: 1 replicas: 0
selector: selector:
matchLabels: matchLabels:
app: neuron-mcp app: neuron-mcp
@@ -7,7 +7,7 @@ metadata:
app: neuron-rest app: neuron-rest
env: prod env: prod
spec: spec:
replicas: 1 replicas: 0
selector: selector:
matchLabels: matchLabels:
app: neuron-rest app: neuron-rest
@@ -7,7 +7,7 @@ metadata:
app: neuron-mcp app: neuron-mcp
env: stage env: stage
spec: spec:
replicas: 1 replicas: 0
selector: selector:
matchLabels: matchLabels:
app: neuron-mcp app: neuron-mcp
@@ -7,7 +7,7 @@ metadata:
app: neuron-rest app: neuron-rest
env: stage env: stage
spec: spec:
replicas: 1 replicas: 0
selector: selector:
matchLabels: matchLabels:
app: neuron-rest app: neuron-rest