mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-01 15:58:37 +00:00
Add the feature gate OrderedNamespaceDeletion
for apiserver.
This commit is contained in:
parent
491a23f079
commit
0907f745a0
@ -455,6 +455,12 @@ const (
|
||||
// Permits kubelet to run with swap enabled.
|
||||
NodeSwap featuregate.Feature = "NodeSwap"
|
||||
|
||||
// owner: @cici37
|
||||
// kep: https://kep.k8s.io/5080
|
||||
//
|
||||
// Enables ordered namespace deletion.
|
||||
OrderedNamespaceDeletion featuregate.Feature = "OrderedNamespaceDeletion"
|
||||
|
||||
// owner: @RomanBednar
|
||||
// kep: https://kep.k8s.io/3762
|
||||
//
|
||||
|
@ -552,6 +552,10 @@ var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate
|
||||
{Version: version.MustParse("1.30"), Default: true, PreRelease: featuregate.Beta},
|
||||
},
|
||||
|
||||
OrderedNamespaceDeletion: {
|
||||
{Version: version.MustParse("1.33"), Default: false, PreRelease: featuregate.Alpha},
|
||||
},
|
||||
|
||||
PersistentVolumeLastPhaseTransitionTime: {
|
||||
{Version: version.MustParse("1.28"), Default: false, PreRelease: featuregate.Alpha},
|
||||
{Version: version.MustParse("1.29"), Default: true, PreRelease: featuregate.Beta},
|
||||
|
Loading…
Reference in New Issue
Block a user