Graduate SelectorIndex to GA

Kubernetes-commit: fea3042f1f84129ab1cb6e481bd51343061673b7
This commit is contained in:
wojtekt 2020-09-29 14:06:41 +02:00 committed by Kubernetes Publisher
parent e8e1ea4393
commit 0a1c9314fa
1 changed files with 3 additions and 1 deletions

View File

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