Skip to content

Commit c3bcd4f

Browse files
authored
Merge pull request kubernetes#126139 from enj/enj/i/revert_list_cache
Revert "Move ConsistentListFromCache to Beta default"
2 parents a8110d7 + aeb51a1 commit c3bcd4f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pkg/features/kube_features.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1235,7 +1235,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
12351235

12361236
genericfeatures.APIServingWithRoutine: {Default: true, PreRelease: featuregate.Beta},
12371237

1238-
genericfeatures.ConsistentListFromCache: {Default: true, PreRelease: featuregate.Beta},
1238+
genericfeatures.ConsistentListFromCache: {Default: false, PreRelease: featuregate.Alpha},
12391239

12401240
genericfeatures.CustomResourceValidationExpressions: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.31
12411241

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,6 @@ const (
309309
// owner: @serathius
310310
// kep: http://kep.k8s.io/2340
311311
// alpha: v1.28
312-
// beta: v1.31
313312
//
314313
// Allow the API server to serve consistent lists from cache
315314
ConsistentListFromCache featuregate.Feature = "ConsistentListFromCache"
@@ -410,7 +409,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
410409

411410
WatchList: {Default: true, PreRelease: featuregate.Beta},
412411

413-
ConsistentListFromCache: {Default: true, PreRelease: featuregate.Beta},
412+
ConsistentListFromCache: {Default: false, PreRelease: featuregate.Alpha},
414413

415414
ZeroLimitedNominalConcurrencyShares: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.32
416415
}

0 commit comments

Comments
 (0)