Skip to content

Commit a8e96c8

Browse files
authored
Merge pull request kubernetes#95148 from wojtek-t/graduate_indexes_to_ga
Graduate SelectorIndex to GA
2 parents 902ed94 + fea3042 commit a8e96c8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

staging/src/k8s.io/apiserver/pkg/features/kube_features.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,15 @@ const (
122122

123123
// owner: @wojtek-t
124124
// alpha: v1.16
125+
// beta: v1.20
125126
//
126127
// Deprecates and removes SelfLink from ObjectMeta and ListMeta.
127128
RemoveSelfLink featuregate.Feature = "RemoveSelfLink"
128129

129130
// owner: @shaloulcy, @wojtek-t
130131
// alpha: v1.18
131132
// beta: v1.19
133+
// GA: v1.20
132134
//
133135
// Allows label and field based indexes in apiserver watch cache to accelerate list operations.
134136
SelectorIndex featuregate.Feature = "SelectorIndex"
@@ -166,7 +168,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
166168
WatchBookmark: {Default: true, PreRelease: featuregate.GA, LockToDefault: true},
167169
APIPriorityAndFairness: {Default: false, PreRelease: featuregate.Alpha},
168170
RemoveSelfLink: {Default: true, PreRelease: featuregate.Beta},
169-
SelectorIndex: {Default: true, PreRelease: featuregate.Beta},
171+
SelectorIndex: {Default: true, PreRelease: featuregate.GA, LockToDefault: true},
170172
WarningHeaders: {Default: true, PreRelease: featuregate.Beta},
171173
EfficientWatchResumption: {Default: false, PreRelease: featuregate.Alpha},
172174
}

0 commit comments

Comments
 (0)