From 7d57387aa5ee55ea99d33281c9ca1011d8da349b Mon Sep 17 00:00:00 2001 From: Rena Shah Date: Sat, 20 Mar 2021 12:07:00 -0700 Subject: [PATCH] Fixing a minor bug in the example and adding the MSI pre-requisite --- deploy/example/nfs/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy/example/nfs/README.md b/deploy/example/nfs/README.md index 554ce53e3a..2713e2d55a 100644 --- a/deploy/example/nfs/README.md +++ b/deploy/example/nfs/README.md @@ -23,6 +23,7 @@ az provider register --namespace Microsoft.Storage - secure transfer required(enable HTTPS traffic only): `false` - select virtual network of agent nodes in `Firewalls and virtual networks` - specify `storageAccount` in below storage class `parameters` + - [Optional] If cluster identity is Managed Service Identity(MSI), make sure user assigned identity has Contributor role on node resource group #### How to use NFS feature - Create an Azure File storage class @@ -66,7 +67,7 @@ accountname.file.core.windows.net:/accountname/pvc-fa72ec43-ae64-42e4-a8a2-55660 - Create a [Wordpress](https://github.com/bitnami/charts/tree/master/bitnami/wordpress) application with NFS volume ```console helm repo add bitnami https://charts.bitnami.com/bitnami -helm install --set persistence.storageClass="azurefile-csi" --set persistence.size=100Gi --generate-name bitnami/wordpress +helm install --set persistence.storageClass="azurefile-csi-nfs" --set persistence.size=100Gi --generate-name bitnami/wordpress ``` #### Links