diff --git a/content/en/docs/concepts/workloads/controllers/statefulset.md b/content/en/docs/concepts/workloads/controllers/statefulset.md index 516cb4f60c..177dd3b371 100644 --- a/content/en/docs/concepts/workloads/controllers/statefulset.md +++ b/content/en/docs/concepts/workloads/controllers/statefulset.md @@ -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 diff --git a/content/en/docs/reference/command-line-tools-reference/feature-gates/stateful-set-start-ordinal.md b/content/en/docs/reference/command-line-tools-reference/feature-gates/stateful-set-start-ordinal.md index 4bd6b41061..1309dc1b86 100644 --- a/content/en/docs/reference/command-line-tools-reference/feature-gates/stateful-set-start-ordinal.md +++ b/content/en/docs/reference/command-line-tools-reference/feature-gates/stateful-set-start-ordinal.md @@ -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