From e6ec6a4acfffddf03c011e3bd2f2ec102481e72a Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Wed, 8 Feb 2023 10:10:48 -0800 Subject: [PATCH] feat: [anthos-bm-gcp-terraform] set nfs-csi rwx (#568) * feat: [anthos-bm-gcp-terraform] set nfs-csi rwx * Update anthos-bm-gcp-terraform/resources/install_abm.sh Co-authored-by: Shabir Mohamed Abdul Samadh <7249208+Shabirmean@users.noreply.github.com> --------- Co-authored-by: Shabir Mohamed Abdul Samadh <7249208+Shabirmean@users.noreply.github.com> --- anthos-bm-gcp-terraform/resources/install_abm.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/anthos-bm-gcp-terraform/resources/install_abm.sh b/anthos-bm-gcp-terraform/resources/install_abm.sh index 33d3f9d9..c7d55b8b 100644 --- a/anthos-bm-gcp-terraform/resources/install_abm.sh +++ b/anthos-bm-gcp-terraform/resources/install_abm.sh @@ -57,6 +57,8 @@ if [ "$NFS_SERVER" == "true" ]; then echo "" echo "[+] Configuring NFS Container Storage Interface complete!" echo "[+] You may utilize with [storageClassName: nfs-csi]" + echo "[+] If using VM Runtime, after enabling the VM Runtime run the following command:" + echo "[+] [kubectl patch StorageProfile nfs-csi --type=merge -p '{\"spec\":{\"claimPropertySets\":[{\"accessModes\":[\"ReadWriteMany\"]}]}}']" echo "" fi