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:
parent
9a64ed8889
commit
53fde83544
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue