Skip to content

Commit

Permalink
add RetroactiveDefaultStorageClass feature gate
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBednar committed Aug 2, 2022
1 parent bc4c493 commit d19f6fb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pkg/features/kube_features.go
Original file line number Diff line number Diff line change
Expand Up @@ -719,6 +719,13 @@ const (
// Allow users to recover from volume expansion failure
RecoverVolumeExpansionFailure featuregate.Feature = "RecoverVolumeExpansionFailure"

// owner: @RomanBednar
// kep: http://kep.k8s.io/3333
// alpha: v1.25
//
// Allow assigning StorageClass to unbound PVCs retroactively
RetroactiveDefaultStorageClass featuregate.Feature = "RetroactiveDefaultStorageClass"

// owner: @mikedanese
// alpha: v1.7
// beta: v1.12
Expand Down Expand Up @@ -1044,6 +1051,8 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS

RecoverVolumeExpansionFailure: {Default: false, PreRelease: featuregate.Alpha},

RetroactiveDefaultStorageClass: {Default: false, PreRelease: featuregate.Alpha},

RotateKubeletServerCertificate: {Default: true, PreRelease: featuregate.Beta},

SeccompDefault: {Default: true, PreRelease: featuregate.Beta},
Expand Down

0 comments on commit d19f6fb

Please sign in to comment.