Add documentation for LogarithmicScaleDown featuregate
This commit is contained in:
parent
59359afddc
commit
76ec4489c1
|
|
@ -339,8 +339,7 @@ prioritize scaling down pods based on the following general algorithm:
|
|||
the pod with the lower value will come first.
|
||||
1. Pods on nodes with more replicas come before pods on nodes with fewer replicas.
|
||||
1. If the pods' creation times differ, the pod that was created more recently
|
||||
comes before the older pod (the creation times are bucketed on an integer log scale
|
||||
when the `LogarithmicScaleDown` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/) is enabled)
|
||||
comes before the older pod (the creation times are bucketed on an integer log scale).
|
||||
|
||||
If all of the above match, then selection is random.
|
||||
|
||||
|
|
|
|||
|
|
@ -13,6 +13,10 @@ stages:
|
|||
- stage: beta
|
||||
defaultValue: true
|
||||
fromVersion: "1.22"
|
||||
toVersion: "1.30"
|
||||
- stage: stable
|
||||
defaultValue: true
|
||||
fromVersion: "1.31"
|
||||
---
|
||||
Enable semi-random selection of pods to evict on controller scaledown
|
||||
based on logarithmic bucketing of pod timestamps.
|
||||
|
|
|
|||
Loading…
Reference in New Issue