From af7d76fa059c18f82cea57a08fe3776c34a192de Mon Sep 17 00:00:00 2001 From: xuzhenglun Date: Tue, 29 Aug 2023 20:01:10 +0800 Subject: [PATCH] Promoted feature gate `ServiceNodePortStaticSubrange` to stable and locked it to always active --- pkg/features/kube_features.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go index 9b4d183f634..44265e6dbb1 100644 --- a/pkg/features/kube_features.go +++ b/pkg/features/kube_features.go @@ -787,6 +787,7 @@ const ( // kep: http://kep.k8s.io/3682 // alpha: v1.27 // beta: v1.28 + // stable: v1.29 // // Subdivide the NodePort range for dynamic and static port allocation. ServiceNodePortStaticSubrange featuregate.Feature = "ServiceNodePortStaticSubrange" @@ -1149,7 +1150,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS SecurityContextDeny: {Default: false, PreRelease: featuregate.Alpha}, - ServiceNodePortStaticSubrange: {Default: true, PreRelease: featuregate.Beta}, + ServiceNodePortStaticSubrange: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // GA in 1.29; remove in 1.31 SidecarContainers: {Default: false, PreRelease: featuregate.Alpha},