You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This page assumes that you are familiar with [StorageClasses](/docs/concepts/storage/storage-classes/),
14
14
[volumes](/docs/concepts/storage/volumes/) and [PersistentVolumes](/docs/concepts/storage/persistent-volumes/)
@@ -18,11 +18,11 @@ in Kubernetes.
18
18
19
19
A VolumeAttributesClass provides a way for administrators to describe the mutable
20
20
"classes" of storage they offer. Different classes might map to different quality-of-service levels.
21
-
Kubernetes itself is unopinionated about what these classes represent.
21
+
Kubernetes itself is un-opinionated about what these classes represent.
22
22
23
-
This is an alpha feature and disabled by default.
23
+
This is a beta feature and disabled by default.
24
24
25
-
If you want to test the feature whilst it's alpha, you need to enable the `VolumeAttributesClass`
25
+
If you want to test the feature whilst it's beta, you need to enable the `VolumeAttributesClass`
26
26
[feature gate](/docs/reference/command-line-tools-reference/feature-gates/) for the kube-controller-manager and the kube-apiserver. You use the `--feature-gates` command line argument:
27
27
28
28
```
@@ -45,7 +45,7 @@ While the name of a VolumeAttributesClass object in a `PersistentVolumeClaim` is
45
45
46
46
47
47
```yaml
48
-
apiVersion: storage.k8s.io/v1alpha1
48
+
apiVersion: storage.k8s.io/v1beta1
49
49
kind: VolumeAttributesClass
50
50
metadata:
51
51
name: silver
@@ -74,7 +74,7 @@ Each VolumeAttributesClass has a resizer that determines what volume plugin is u
74
74
75
75
The modifying volume feature support for VolumeAttributesClass is implemented in [kubernetes-csi/external-resizer](https://github.com/kubernetes-csi/external-resizer).
76
76
77
-
For example, a existing PersistentVolumeClaim is using a VolumeAttributesClass named silver:
77
+
For example, an existing PersistentVolumeClaim is using a VolumeAttributesClass named silver:
78
78
79
79
```yaml
80
80
apiVersion: v1
@@ -91,7 +91,7 @@ A new VolumeAttributesClass gold is available in the cluster:
91
91
92
92
93
93
```yaml
94
-
apiVersion: storage.k8s.io/v1alpha1
94
+
apiVersion: storage.k8s.io/v1beta1
95
95
kind: VolumeAttributesClass
96
96
metadata:
97
97
name: gold
@@ -128,4 +128,4 @@ the parameters may be used depends on the CSI driver implementation.
128
128
Please refer to the related CSI driver documentation for more details.
129
129
130
130
There can be at most 512 parameters defined for a VolumeAttributesClass.
131
-
The total length of the parameters object including its keys and values cannot exceed 256 KiB.
131
+
The total length of the parameters object including its keys and values cannot exceed 256 KiB.
0 commit comments