Skip to content

Commit 3afbf10

Browse files
committed
doc: refine volumeHandle doc
1 parent 45ba875 commit 3afbf10

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

deploy/example/e2e_usage.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ spec:
9292
csi:
9393
driver: blob.csi.azure.com
9494
readOnly: false
95-
volumeHandle: unique-volumeid # make sure this volumeid is unique in the cluster
95+
# make sure volumeid is unique for every identical storage blob container in the cluster
96+
# character `#` is reserved for internal use and cannot be used in volumehandle
97+
volumeHandle: unique-volumeid
9698
volumeAttributes:
9799
containerName: EXISTING_CONTAINER_NAME
98100
nodeStageSecretRef:

deploy/example/pv-blobfuse-auth.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ spec:
1616
csi:
1717
driver: blob.csi.azure.com
1818
readOnly: false
19-
# make sure this volumeid is unique in the cluster
20-
# `#` is not allowed in self defined volumeHandle
19+
# make sure volumeid is unique for every identical storage blob container in the cluster
20+
# character `#` is reserved for internal use and cannot be used in volumehandle
2121
volumeHandle: unique-volumeid
2222
volumeAttributes:
2323
resourceGroup: EXISTING_RESOURCE_GROUP_NAME

deploy/example/pv-blobfuse-csi-keyvault.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ spec:
1313
csi:
1414
driver: blob.csi.azure.com
1515
readOnly: false
16-
# make sure this volumeid is unique in the cluster
17-
# `#` is not allowed in self defined volumeHandle
16+
# make sure volumeid is unique for every identical storage blob container in the cluster
17+
# character `#` is reserved for internal use and cannot be used in volumehandle
1818
volumeHandle: unique-volumeid
1919
volumeAttributes:
2020
containerName: EXISTING_CONTAINER_NAME

deploy/example/pv-blobfuse-csi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ spec:
1616
csi:
1717
driver: blob.csi.azure.com
1818
readOnly: false
19-
# make sure this volumeid is unique in the cluster
20-
# `#` is not allowed in self defined volumeHandle
19+
# make sure volumeid is unique for every identical storage blob container in the cluster
20+
# character `#` is reserved for internal use and cannot be used in volumehandle
2121
volumeHandle: unique-volumeid
2222
volumeAttributes:
2323
resourceGroup: EXISTING_RESOURCE_GROUP_NAME

deploy/example/pv-blobfuse-nfs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ spec:
1313
csi:
1414
driver: blob.csi.azure.com
1515
readOnly: false
16-
# make sure this volumeid is unique in the cluster
17-
# `#` is not allowed in self defined volumeHandle
16+
# make sure volumeid is unique for every identical storage blob container in the cluster
17+
# character `#` is reserved for internal use and cannot be used in volumehandle
1818
volumeHandle: unique-volumeid
1919
volumeAttributes:
2020
resourceGroup: EXISTING_RESOURCE_GROUP_NAME

docs/driver-parameters.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ pvc-92a4d7f2-f23b-4904-bad4-2cbfcff6e388
6767
6868
Name | Meaning | Available Value | Mandatory | Default value
6969
--- | --- | --- | --- | ---
70+
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 |
7071
volumeAttributes.resourceGroup | Azure resource group name | existing resource group name | No | if empty, driver will use the same resource group name as current k8s cluster
7172
volumeAttributes.storageAccount | existing storage account name | existing storage account name | Yes |
7273
volumeAttributes.containerName | existing container name | existing container name | Yes |

0 commit comments

Comments
 (0)