xslt-lab: pin frontend minReplicas to 2 (SPOF fix was drifting)

The 1->2 bump that fixed the 503 outage only ever existed as a manual edit
in-cluster, so it was reverted on the next ArgoCD sync.
This commit is contained in:
2026-07-25 07:35:35 +00:00
parent 405233e53d
commit ccbc1fb800
+4 -1
View File
@@ -31,7 +31,10 @@ hpa:
targetCPUUtilizationPercentage: 80
frontend:
enabled: true
minReplicas: 1
# Two replicas minimum: a single frontend pod is a SPOF and took the site
# down with 503s once. This lived only as a manual kubectl edit, so every
# ArgoCD sync reverted it — keep it here.
minReplicas: 2
maxReplicas: 5
targetCPUUtilizationPercentage: 80