Skip to content

Commit 790379c

Browse files
authored
Merge pull request #45180 from sanposhiho/min-domain
graduate MinDomain feature to stable
2 parents e9569b6 + 9d31d21 commit 790379c

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

content/en/docs/concepts/scheduling-eviction/topology-spread-constraints.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ spec:
6060
# Configure a topology spread constraint
6161
topologySpreadConstraints:
6262
- maxSkew: <integer>
63-
minDomains: <integer> # optional; beta since v1.25
63+
minDomains: <integer> # optional
6464
topologyKey: <string>
6565
whenUnsatisfiable: <string>
6666
labelSelector: <object>
@@ -96,11 +96,11 @@ your cluster. Those fields are:
9696
A domain is a particular instance of a topology. An eligible domain is a domain whose
9797
nodes match the node selector.
9898

99+
<!-- OK to remove this note once v1.29 Kubernetes is out of support -->
99100
{{< note >}}
100-
The `MinDomainsInPodTopologySpread` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/)
101-
enables `minDomains` for pod topology spread. Starting from v1.28,
102-
the `MinDomainsInPodTopologySpread` gate
103-
is enabled by default. In older Kubernetes clusters it might be explicitly
101+
Before Kubernetes v1.30, the `minDomains` field was only available if the
102+
`MinDomainsInPodTopologySpread` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/)
103+
was enabled (default since v1.28). In older Kubernetes clusters it might be explicitly
104104
disabled or the field might not be available.
105105
{{< /note >}}
106106

content/en/docs/reference/command-line-tools-reference/feature-gates/min-domains-in-pod-topology-spread.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ stages:
1717
- stage: beta
1818
defaultValue: true
1919
fromVersion: "1.27"
20+
toVersion: "1.29"
21+
- stage: stable
22+
defaultValue: true
23+
fromVersion: "1.30"
2024
---
2125
Enable `minDomains` in
2226
[Pod topology spread constraints](/docs/concepts/scheduling-eviction/topology-spread-constraints/).

0 commit comments

Comments
 (0)