Remove StatefulSetStartOrdinal feature gate to target stable in 1.31

This commit is contained in:
Peter Schuurman 2024-07-08 18:23:20 -07:00
parent dea8689e86
commit c5205da717
2 changed files with 7 additions and 5 deletions

View File

@ -178,13 +178,11 @@ will also add a pod label with this index: `apps.kubernetes.io/pod-index`.
### Start ordinal
{{< feature-state for_k8s_version="v1.27" state="beta" >}}
{{< feature-state feature_gate_name="StatefulSetStartOrdinal" >}}
`.spec.ordinals` is an optional field that allows you to configure the integer
ordinals assigned to each Pod. It defaults to nil. You must enable the
`StatefulSetStartOrdinal`
[feature gate](/docs/reference/command-line-tools-reference/feature-gates/) to
use this field. Once enabled, you can configure the following options:
ordinals assigned to each Pod. It defaults to nil. Within the field, you can
configure the following options:
* `.spec.ordinals.start`: If the `.spec.ordinals.start` field is set, Pods will
be assigned ordinals from `.spec.ordinals.start` up through

View File

@ -13,6 +13,10 @@ stages:
- stage: beta
defaultValue: true
fromVersion: "1.27"
toVersion: "1.30"
- stage: stable
defaultValue: true
fromVersion: "1.31"
---
Allow configuration of the start ordinal in a
StatefulSet. See