graduate MinDomain feature to stable
This commit is contained in:
parent
08fb708f79
commit
01cfb51bfe
|
@ -60,7 +60,7 @@ spec:
|
||||||
# Configure a topology spread constraint
|
# Configure a topology spread constraint
|
||||||
topologySpreadConstraints:
|
topologySpreadConstraints:
|
||||||
- maxSkew: <integer>
|
- maxSkew: <integer>
|
||||||
minDomains: <integer> # optional; beta since v1.25
|
minDomains: <integer> # optional; GA since v1.30
|
||||||
topologyKey: <string>
|
topologyKey: <string>
|
||||||
whenUnsatisfiable: <string>
|
whenUnsatisfiable: <string>
|
||||||
labelSelector: <object>
|
labelSelector: <object>
|
||||||
|
@ -98,10 +98,10 @@ your cluster. Those fields are:
|
||||||
|
|
||||||
{{< note >}}
|
{{< note >}}
|
||||||
The `MinDomainsInPodTopologySpread` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/)
|
The `MinDomainsInPodTopologySpread` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/)
|
||||||
enables `minDomains` for pod topology spread. Starting from v1.28,
|
enables `minDomains` for pod topology spread. From v1.28 to v1.29,
|
||||||
the `MinDomainsInPodTopologySpread` gate
|
the `MinDomainsInPodTopologySpread` gate
|
||||||
is enabled by default. In older Kubernetes clusters it might be explicitly
|
is enabled by default.
|
||||||
disabled or the field might not be available.
|
And, at v1.30, this feature graduated to stable and the feature gate and the gate doesn't support the disablement anymore.
|
||||||
{{< /note >}}
|
{{< /note >}}
|
||||||
|
|
||||||
- The value of `minDomains` must be greater than 0, when specified.
|
- The value of `minDomains` must be greater than 0, when specified.
|
||||||
|
|
|
@ -17,6 +17,10 @@ stages:
|
||||||
- stage: beta
|
- stage: beta
|
||||||
defaultValue: true
|
defaultValue: true
|
||||||
fromVersion: "1.27"
|
fromVersion: "1.27"
|
||||||
|
toVersion: "1.29"
|
||||||
|
- stage: stable
|
||||||
|
defaultValue: true
|
||||||
|
fromVersion: "1.30"
|
||||||
---
|
---
|
||||||
Enable `minDomains` in
|
Enable `minDomains` in
|
||||||
[Pod topology spread constraints](/docs/concepts/scheduling-eviction/topology-spread-constraints/).
|
[Pod topology spread constraints](/docs/concepts/scheduling-eviction/topology-spread-constraints/).
|
||||||
|
|
Loading…
Reference in New Issue