Skip to content

Commit 0b15903

Browse files
committed
kube-apiserver: promote WatchList feature to beta
1 parent bffc02b commit 0b15903

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pkg/features/kube_features.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1264,7 +1264,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
12641264

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

1267-
genericfeatures.WatchList: {Default: false, PreRelease: featuregate.Alpha},
1267+
genericfeatures.WatchList: {Default: true, PreRelease: featuregate.Beta},
12681268

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

staging/src/k8s.io/apiserver/pkg/features/kube_features.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,7 @@ const (
298298

299299
// owner: @p0lyn0mial
300300
// alpha: v1.27
301+
// beta: v1.31
301302
//
302303
// Allow the API server to stream individual items instead of chunking
303304
WatchList featuregate.Feature = "WatchList"
@@ -402,7 +403,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
402403

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

405-
WatchList: {Default: false, PreRelease: featuregate.Alpha},
406+
WatchList: {Default: true, PreRelease: featuregate.Beta},
406407

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

0 commit comments

Comments
 (0)