client-go/features: enable WatchListClient for 1.35 release

This commit is contained in:
Lukasz Szaszkiewicz
2025-11-03 20:33:48 +01:00
parent 4d0d412686
commit ca8847149e

View File

@@ -67,10 +67,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"
)
@@ -95,5 +91,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},
},
}