Bump SelectorIndex to beta

Kubernetes-commit: 5aafaefa4a742220706ea6fe06d70bab3260476f
This commit is contained in:
wojtekt 2020-06-25 11:58:32 +02:00 committed by Kubernetes Publisher
parent ee676f25d5
commit f2a7cd49e0
1 changed files with 3 additions and 2 deletions

View File

@ -138,8 +138,9 @@ const (
// Deprecates and removes SelfLink from ObjectMeta and ListMeta.
RemoveSelfLink featuregate.Feature = "RemoveSelfLink"
// owner: @shaloulcy
// owner: @shaloulcy, @wojtek-t
// alpha: v1.18
// beta: v1.19
//
// Allows label and field based indexes in apiserver watch cache to accelerate list operations.
SelectorIndex featuregate.Feature = "SelectorIndex"
@ -173,6 +174,6 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
WatchBookmark: {Default: true, PreRelease: featuregate.GA, LockToDefault: true},
APIPriorityAndFairness: {Default: false, PreRelease: featuregate.Alpha},
RemoveSelfLink: {Default: false, PreRelease: featuregate.Alpha},
SelectorIndex: {Default: false, PreRelease: featuregate.Alpha},
SelectorIndex: {Default: true, PreRelease: featuregate.Beta},
WarningHeaders: {Default: true, PreRelease: featuregate.Beta},
}