From c2e1465d5ec1cdb5638a40248a92d4120288f0af Mon Sep 17 00:00:00 2001 From: James Williams Date: Thu, 16 Jun 2022 13:23:46 +0000 Subject: [PATCH] Make a few minor grammar fixes --- doc/advanced/persistent-volumes/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/advanced/persistent-volumes/index.md b/doc/advanced/persistent-volumes/index.md index f825ee86ce..c0317483b3 100644 --- a/doc/advanced/persistent-volumes/index.md +++ b/doc/advanced/persistent-volumes/index.md @@ -25,7 +25,7 @@ include: 1 In Kubernetes 1.11, [expanding the storage size of your volume is supported](https://kubernetes.io/blog/2018/07/12/resizing-persistent-volumes-using-kubernetes/) if you have `allowVolumeExpansion` configured to true in your [Storage Class](https://kubernetes.io/docs/concepts/storage/storage-classes/). -Automating theses changes is complicated due to: +Automating these changes is complicated because: 1. Kubernetes does not allow changes to most fields in an existing [PersistentVolumeClaim](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims) 1. Unless [manually configured](../../installation/storage.md), the [PVC](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims) is the only reference to dynamically provisioned [PersistentVolumes](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistent-volumes) @@ -271,7 +271,7 @@ status: Shortly after making the change to the [Volume](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistent-volumes), the terminal watching the claim status should show `Bound`. -Finally, [apply the changes to the GitLab chart](#apply-the-changes-to-the-gitlab-chart) +Finally, [apply the changes to the GitLab chart](#apply-the-changes-to-the-gitlab-chart). ### Switching to a different Volume @@ -310,7 +310,7 @@ spec: fsType: ext4 ``` -What you actually want, is to create a [Persistent Volume](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistent-volumes), like so: +What you actually want is to create a [Persistent Volume](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistent-volumes), like so: ```yaml apiVersion: v1 -- GitLab