From 38814f50834e931f19284f2a50a4c275bbf6d288 Mon Sep 17 00:00:00 2001 From: Hemant Kumar Date: Thu, 21 Apr 2022 13:48:02 -0400 Subject: [PATCH] Fix misc review comments --- content/en/blog/_posts/2022-04-18-volume-expansion-ga.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/en/blog/_posts/2022-04-18-volume-expansion-ga.md b/content/en/blog/_posts/2022-04-18-volume-expansion-ga.md index 23c25392fd..dbd9f7e683 100644 --- a/content/en/blog/_posts/2022-04-18-volume-expansion-ga.md +++ b/content/en/blog/_posts/2022-04-18-volume-expansion-ga.md @@ -1,6 +1,6 @@ --- layout: blog -title: "Volume expansion going GA in v1.24" +title: "Volume expansion now available as stable feature in Kubernetes 1.24" date: 2022-04-18 slug: volume-expansion-ga --- @@ -30,7 +30,7 @@ spec: - ReadWriteOnce resources: requests: - storage: 1Gi --> specify new size here + storage: 1Gi # specify new size here ``` Users can request expansion of the underlying volume by specifying a new value instead of old `1Gi` size. Once expansion is initiated - pvc's conditions can be monitored @@ -40,13 +40,13 @@ When Kubernetes starts expanding the volume - it will add `Resizing` condition t expansion operation can also be obtained by monitoring events associated with the PVC: ``` -~> kubectl describe pvc +kubectl describe pvc ``` ### Storage driver support Not every volume type however is expandable by default. Some volume types such as - intree hostpath volumes are not expandable at all. For CSI volumes - the CSI driver -must have capability `EXPAND_VOLUME` in controller or node service (or both if appropriate). For CSI volumes - please refer to documentation of your CSI driver, to find out +must have capability `EXPAND_VOLUME` in controller or node service (or both if appropriate). Please refer to documentation of your CSI driver, to find out if it supports volume expansion. Please refer to volume expansion documentation for intree volume types which support volume expansion - [Expanding Persistent Volumes](/docs/concepts/storage/persistent-volumes/#expanding-persistent-volumes-claims)