Merge pull request #134180 from p0lyn0mial/upstream-watchlist-dynamic-interface

Promote/Enable WatchListClient feature for release 1.35

Kubernetes-commit: 099ef07c9f90a7650b5a06f58fa7005d9c760761
This commit is contained in:
Kubernetes Publisher
2025-11-06 01:33:01 -08:00

View File

@@ -73,10 +73,6 @@ const (
// beta: v1.30
//
// Allow the client to get a stream of individual items instead of chunking from the server.
//
// NOTE:
// The feature is disabled in Beta by default because
// it will only be turned on for selected control plane component(s).
WatchListClient Feature = "WatchListClient"
)
@@ -104,5 +100,6 @@ var defaultVersionedKubernetesFeatureGates = map[Feature]VersionedSpecs{
},
WatchListClient: {
{Version: version.MustParse("1.30"), Default: false, PreRelease: Beta},
{Version: version.MustParse("1.35"), Default: true, PreRelease: Beta},
},
}