Skip to content

Commit 8639552

Browse files
authored
Update azure-csi-blob-storage-static.md
1 parent 7c6c3ff commit 8639552

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

articles/aks/azure-csi-blob-storage-static.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ For more information on Kubernetes volumes, see [Storage options for application
2828

2929
|Name | Description | Example | Mandatory | Default value|
3030
|--- | --- | --- | --- | ---|
31+
volumeHandle | a value the driver can use to uniquely identify the storage blob container in the cluster. | A recommended way to produce a unique value is to combine the globally unique storage account name and container name: `{account-name}_{container-name}`. Be aware the character `#` is reserved for internal use and cannot be used in a volume handle. | Yes |
3132
|volumeAttributes.resourceGroup | Specify Azure resource group name. | myResourceGroup | No | If empty, driver will use the same resource group name as current cluster.|
3233
|volumeAttributes.storageAccount | Specify existing Azure storage account name. | storageAccountName | Yes ||
3334
|volumeAttributes.containerName | Specify existing container name. | container | Yes ||
@@ -98,8 +99,8 @@ The following example demonstrates how to mount a Blob storage container as a pe
9899
csi:
99100
driver: blob.csi.azure.com
100101
readOnly: false
101-
# make sure this volumeid is unique in the cluster
102-
# `#` is not allowed in self defined volumeHandle
102+
# make sure volumeid is unique for every identical storage blob container in the cluster
103+
# character `#` is reserved for internal use and cannot be used in volumehandle
103104
volumeHandle: unique-volumeid
104105
volumeAttributes:
105106
resourceGroup: resourceGroupName
@@ -182,8 +183,8 @@ Kubernetes needs credentials to access the Blob storage container created earlie
182183
csi:
183184
driver: blob.csi.azure.com
184185
readOnly: false
185-
# make sure this volumeid is unique in the cluster
186-
# `#` is not allowed in self defined volumeHandle
186+
# make sure volumeid is unique for every identical storage blob container in the cluster
187+
# character `#` is reserved for internal use and cannot be used in volumehandle
187188
volumeHandle: unique-volumeid
188189
volumeAttributes:
189190
containerName: containerName

0 commit comments

Comments
 (0)