Fix default scale down delay after delete
This commit is contained in:
parent
a1d0304683
commit
600ba8ad10
|
|
@ -84,7 +84,7 @@ var (
|
|||
scaleDownEnabled = flag.Bool("scale-down-enabled", true, "Should CA scale down the cluster")
|
||||
scaleDownDelayAfterAdd = flag.Duration("scale-down-delay-after-add", 10*time.Minute,
|
||||
"How long after scale up that scale down evaluation resumes")
|
||||
scaleDownDelayAfterDelete = flag.Duration("scale-down-delay-after-delete", *scanInterval,
|
||||
scaleDownDelayAfterDelete = flag.Duration("scale-down-delay-after-delete", 0,
|
||||
"How long after node deletion that scale down evaluation resumes, defaults to scanInterval")
|
||||
scaleDownDelayAfterFailure = flag.Duration("scale-down-delay-after-failure", 3*time.Minute,
|
||||
"How long after scale down failure that scale down evaluation resumes")
|
||||
|
|
|
|||
Loading…
Reference in New Issue