Add WatchList feature gate

This commit is contained in:
Lukasz Szaszkiewicz 2023-03-01 10:57:17 +01:00
parent 2ae115e5a2
commit ea084ff4da

View File

@ -205,6 +205,12 @@ const (
//
// Enables In-Place Pod Vertical Scaling
InPlacePodVerticalScaling featuregate.Feature = "InPlacePodVerticalScaling"
// owner: @p0lyn0mial
// alpha: v1.27
//
// Allow the API server to stream individual items instead of chunking
WatchList featuregate.Feature = "WatchList"
)
func init() {
@ -258,4 +264,6 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
WatchBookmark: {Default: true, PreRelease: featuregate.GA, LockToDefault: true},
InPlacePodVerticalScaling: {Default: false, PreRelease: featuregate.Alpha},
WatchList: {Default: false, PreRelease: featuregate.Alpha},
}