Promoted feature gate ServiceNodePortStaticSubrange to stable and locked it to always active

This commit is contained in:
xuzhenglun 2023-08-29 20:01:10 +08:00
parent 70a28449a7
commit af7d76fa05
No known key found for this signature in database
GPG Key ID: 43BD51D11716234A

View File

@ -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},