Skip to content

Commit

Permalink
kube-apiserver: promote WatchList feature to beta
Browse files Browse the repository at this point in the history
  • Loading branch information
p0lyn0mial committed Jun 27, 2024
1 parent bffc02b commit 0b15903
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/features/kube_features.go
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS

genericfeatures.WatchFromStorageWithoutResourceVersion: {Default: false, PreRelease: featuregate.Beta},

genericfeatures.WatchList: {Default: false, PreRelease: featuregate.Alpha},
genericfeatures.WatchList: {Default: true, PreRelease: featuregate.Beta},

genericfeatures.ZeroLimitedNominalConcurrencyShares: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.32

Expand Down
3 changes: 2 additions & 1 deletion staging/src/k8s.io/apiserver/pkg/features/kube_features.go
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ const (

// owner: @p0lyn0mial
// alpha: v1.27
// beta: v1.31
//
// Allow the API server to stream individual items instead of chunking
WatchList featuregate.Feature = "WatchList"
Expand Down Expand Up @@ -402,7 +403,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS

InPlacePodVerticalScaling: {Default: false, PreRelease: featuregate.Alpha},

WatchList: {Default: false, PreRelease: featuregate.Alpha},
WatchList: {Default: true, PreRelease: featuregate.Beta},

ConsistentListFromCache: {Default: true, PreRelease: featuregate.Beta},

Expand Down

0 comments on commit 0b15903

Please sign in to comment.