kube-apiserver: promote WatchList feature to beta

Kubernetes-commit: 0b15903b35d83ca32833e81997b6257ee4d4f369
This commit is contained in:
Lukasz Szaszkiewicz 2024-06-19 11:48:20 +02:00 committed by Kubernetes Publisher
parent 5addfa30ff
commit 8321755755
1 changed files with 2 additions and 1 deletions

View File

@ -305,6 +305,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"
@ -411,7 +412,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},