Skip to content

Commit 17095ae

Browse files
committed
Promote VolumeAttributesClass to Beta
1 parent 77c715d commit 17095ae

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Following table reflects the head of this branch.
2929
| CSINodeExpandSecret | GA | On | [CSI Node expansion secret](https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/3107-csi-nodeexpandsecret) | No |
3030
| HonorPVReclaimPolicy| Beta | On | [Honor the PV reclaim policy](https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/2644-honor-pv-reclaim-policy) | No |
3131
| PreventVolumeModeConversion | Beta |On | [Prevent unauthorized conversion of source volume mode](https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/3141-prevent-volume-mode-conversion) | `--prevent-volume-mode-conversion` (No in-tree feature gate) |
32+
| VolumeAttributesClass | Beta | Off | [Pass VolumeAttributesClass parameters during CreateVolume](https://github.com/kubernetes/enhancements/blob/master/keps/sig-storage/3751-volume-attributes-class/README.md) | `--feature-gates=VolumeAttributesClass=true` |
3233
| CrossNamespaceVolumeDataSource | Alpha |Off | [Cross-namespace volume data source](https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/3294-provision-volumes-from-cross-namespace-snapshots) | `--feature-gates=CrossNamespaceVolumeDataSource=true` |
3334

3435
All other external-provisioner features and the external-provisioner itself is considered GA and fully supported.

pkg/features/features.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ const (
4646
// owner: @sunnylovestiramisu @ConnorJC3
4747
// kep: https://kep.k8s.io/3751
4848
// alpha: v1.29
49+
// beta: v1.31
4950
//
5051
// Pass VolumeAttributesClass parameters to supporting CSI drivers during CreateVolume
5152
VolumeAttributesClass featuregate.Feature = "VolumeAttributesClass"
@@ -61,5 +62,5 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
6162
Topology: {Default: true, PreRelease: featuregate.GA},
6263
HonorPVReclaimPolicy: {Default: true, PreRelease: featuregate.Beta},
6364
CrossNamespaceVolumeDataSource: {Default: false, PreRelease: featuregate.Alpha},
64-
VolumeAttributesClass: {Default: false, PreRelease: featuregate.Alpha},
65+
VolumeAttributesClass: {Default: false, PreRelease: featuregate.Beta},
6566
}

0 commit comments

Comments
 (0)