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
| VolumeExpansion | Stable | On |[Support for expanding CSI volumes](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#csi-volume-expansion). |
28
-
| ReadWriteOncePod | Stable | On |[Single pod access mode for PersistentVolumes](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes). |
29
-
| VolumeAttributesClass | Beta | Off |[Volume Attributes Classes](https://kubernetes.io/docs/concepts/storage/volume-attributes-classes). |
| VolumeExpansion | Stable | On |[Support for expanding CSI volumes](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#csi-volume-expansion). |
28
+
| ReadWriteOncePod | Stable | On |[Single pod access mode for PersistentVolumes](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes). |
29
+
| RecoverVolumeExpansionFailure | Beta | On |[Recover from volume expansion failure](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#recovering-from-failure-when-expanding-volumes)|
30
+
| VolumeAttributesClass | Beta | Off |[Volume Attributes Classes](https://kubernetes.io/docs/concepts/storage/volume-attributes-classes). |
31
+
30
32
31
33
## Usage
32
34
@@ -78,12 +80,12 @@ Note that the external-resizer does not scale with more replicas. Only one exter
78
80
*`AnnotateFsResize=true|false` (ALPHA - default=false): Store current size of pvc in pv's annotation, so as if pvc is deleted while expansion was pending on the node, the size of pvc can be restored to old value. This permits
79
81
expansion on the node in case pvc was deleted while expansion was pending on the node (but completed in the controller). Use of this feature depends on Kubernetes version 1.21.
80
82
81
-
*`RecoverVolumeExpansionFailure=true|false` (ALPHA - default=false): Allow users to reduce size of PVC if expansion to current size is failing. If the feature gate `RecoverVolumeExpansionFailure` is enabled
83
+
*`RecoverVolumeExpansionFailure=true|false` (BETA - default=true): Allow users to reduce size of PVC if expansion to current size is failing. If the feature gate `RecoverVolumeExpansionFailure` is enabled
82
84
and expansion has failed for a PVC, you can retry expansion with a smaller size than the previously requested value. To request a new expansion attempt with a
83
85
smaller proposed size, edit `.spec.resources` for that PVC and choose a value that is less than the value you previously tried.
84
86
This is useful if expansion to a higher value did not succeed because of capacity constraint.
85
87
If that has happened, or you suspect that it might have, you can retry expansion by specifying a
86
-
size that is within the capacity limits of underlying storage provider. You can monitor status of resize operation by watching `.status.resizeStatus` and events on the PVC. Use of this feature-gate requires Kubernetes 1.31.
88
+
size that is within the capacity limits of underlying storage provider. You can monitor status of resize operation by watching `.status.resizeStatus` and events on the PVC. Use of this feature-gate requires Kubernetes 1.32.
0 commit comments