mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-25 12:43:23 +00:00
Introduce ConcurrentWatchObjectDecode feature gate disabled by default
This commit is contained in:
parent
eb729d1db7
commit
93a10a7569
@ -1264,6 +1264,8 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
|
|||||||
|
|
||||||
genericfeatures.AuthorizeWithSelectors: {Default: false, PreRelease: featuregate.Alpha},
|
genericfeatures.AuthorizeWithSelectors: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
|
||||||
|
genericfeatures.ConcurrentWatchObjectDecode: {Default: false, PreRelease: featuregate.Beta},
|
||||||
|
|
||||||
genericfeatures.ConsistentListFromCache: {Default: true, PreRelease: featuregate.Beta},
|
genericfeatures.ConsistentListFromCache: {Default: true, PreRelease: featuregate.Beta},
|
||||||
|
|
||||||
genericfeatures.CoordinatedLeaderElection: {Default: false, PreRelease: featuregate.Alpha},
|
genericfeatures.CoordinatedLeaderElection: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
@ -101,6 +101,11 @@ const (
|
|||||||
// Allows authorization to use field and label selectors.
|
// Allows authorization to use field and label selectors.
|
||||||
AuthorizeWithSelectors featuregate.Feature = "AuthorizeWithSelectors"
|
AuthorizeWithSelectors featuregate.Feature = "AuthorizeWithSelectors"
|
||||||
|
|
||||||
|
// owner: @serathius
|
||||||
|
// beta: v1.31
|
||||||
|
// Enables concurrent watch object decoding to avoid starving watch cache when conversion webhook is installed.
|
||||||
|
ConcurrentWatchObjectDecode featuregate.Feature = "ConcurrentWatchObjectDecode"
|
||||||
|
|
||||||
// owner: @cici37 @jpbetz
|
// owner: @cici37 @jpbetz
|
||||||
// kep: http://kep.k8s.io/3488
|
// kep: http://kep.k8s.io/3488
|
||||||
// alpha: v1.26
|
// alpha: v1.26
|
||||||
@ -365,6 +370,8 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
|
|||||||
|
|
||||||
AuthorizeWithSelectors: {Default: false, PreRelease: featuregate.Alpha},
|
AuthorizeWithSelectors: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
|
||||||
|
ConcurrentWatchObjectDecode: {Default: false, PreRelease: featuregate.Beta},
|
||||||
|
|
||||||
ValidatingAdmissionPolicy: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.32
|
ValidatingAdmissionPolicy: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.32
|
||||||
|
|
||||||
CoordinatedLeaderElection: {Default: false, PreRelease: featuregate.Alpha},
|
CoordinatedLeaderElection: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
Loading…
Reference in New Issue
Block a user