Skip to content

Commit 0c0e19b

Browse files
committed
Move ConsistentListFromCache to Beta default
1 parent 4e51e9c commit 0c0e19b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pkg/features/kube_features.go

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

12161216
genericfeatures.APIServingWithRoutine: {Default: true, PreRelease: featuregate.Beta},
12171217

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

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

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,7 @@ const (
305305
// owner: @serathius
306306
// kep: http://kep.k8s.io/2340
307307
// alpha: v1.28
308+
// beta: v1.31
308309
//
309310
// Allow the API server to serve consistent lists from cache
310311
ConsistentListFromCache featuregate.Feature = "ConsistentListFromCache"
@@ -392,7 +393,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
392393

393394
WatchList: {Default: false, PreRelease: featuregate.Alpha},
394395

395-
ConsistentListFromCache: {Default: false, PreRelease: featuregate.Alpha},
396+
ConsistentListFromCache: {Default: true, PreRelease: featuregate.Beta},
396397

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

0 commit comments

Comments
 (0)