diff --git a/features/known_features.go b/features/known_features.go index c7e24de0f..4b022c4b4 100644 --- a/features/known_features.go +++ b/features/known_features.go @@ -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}, }, }