Skip to content

Commit d2fc2d3

Browse files
authored
Update README.md
1 parent 1eceff9 commit d2fc2d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

deploy/example/blobfuse-mi/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ This article demonstrates the process of utilizing blobfuse mount with either a
44
> make sure the managed identity used by CSI driver is bound to the agent node pool.
55
66
## Before you begin
7-
- Make sure the managed identity has `Storage Blob Data Owner` role to the storage account
8-
> here is an example that uses Azure CLI commands to assign the `Storage Blob Data Owner` role to the managed identity for the storage account. If the storage account is created by the driver(dynamic provisioning), then you need to grant `Storage Blob Data Owner` role to the resource group where the storage account is located
7+
- Make sure the managed identity has `Storage Blob Data Contributor` role to the storage account
8+
> here is an example that uses Azure CLI commands to assign the `Storage Blob Data Contributor` role to the managed identity for the storage account. If the storage account is created by the driver(dynamic provisioning), then you need to grant `Storage Blob Data Contributor` role to the resource group where the storage account is located
99
1010
```bash
1111
mid="$(az identity list -g "$resourcegroup" --query "[?name == 'managedIdentityName'].principalId" -o tsv)"
1212
said="$(az storage account list -g "$resourcegroup" --query "[?name == '$storageaccountname'].id" -o tsv)"
13-
az role assignment create --assignee-object-id "$mid" --role "Storage Blob Data Owner" --scope "$said"
13+
az role assignment create --assignee-object-id "$mid" --role "Storage Blob Data Contributor" --scope "$said"
1414
```
1515

1616
- Retrieve the clientID for `AzureStorageIdentityClientID`. If you are using kubelet identity, the identity will be named {aks-cluster-name}-agentpool and located in the node resource group.

0 commit comments

Comments
 (0)