fix(rtx6000-scaling): set minReplicas to 1 to prevent transient scale-up/down thrashing from periodic health checks

Prevents the watcher cron (every 5m) from causing unnecessary spot pod churn. Keeps 1 ready pod always (KEDA overrides deployment replicas).
This commit is contained in:
sirius0xdev 2026-04-29 11:20:45 +00:00
parent 9a64ed8889
commit 53fde83544

View file

@ -13,6 +13,6 @@ spec:
service: rtx6000-brain-service service: rtx6000-brain-service
port: 8000 port: 8000
replicas: replicas:
min: 0 min: 1
max: 1 max: 1