Skip to content

doc: remove obsolete doc about volumeID format #1642

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion deploy/example/e2e_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ spec:
csi:
driver: blob.csi.azure.com
# make sure volumeid is unique for every storage blob container in the cluster
# the # character is reserved for internal use, the / character is not allowed
volumeHandle: account-name_container-name
volumeAttributes:
containerName: EXISTING_CONTAINER_NAME
Expand Down
1 change: 0 additions & 1 deletion deploy/example/pv-blobfuse-auth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ spec:
csi:
driver: blob.csi.azure.com
# make sure volumeid is unique for every storage blob container in the cluster
# the # character is reserved for internal use, the / character is not allowed
volumeHandle: account-name_container-name
volumeAttributes:
resourceGroup: EXISTING_RESOURCE_GROUP_NAME
Expand Down
1 change: 0 additions & 1 deletion deploy/example/pv-blobfuse-csi-keyvault.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ spec:
csi:
driver: blob.csi.azure.com
# make sure volumeid is unique for every storage blob container in the cluster
# the # character is reserved for internal use, the / character is not allowed
volumeHandle: account-name_container-name
volumeAttributes:
containerName: EXISTING_CONTAINER_NAME
Expand Down
1 change: 0 additions & 1 deletion deploy/example/pv-blobfuse-csi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ spec:
csi:
driver: blob.csi.azure.com
# make sure volumeid is unique for every storage blob container in the cluster
# the # character is reserved for internal use, the / character is not allowed
volumeHandle: account-name_container-name
volumeAttributes:
resourceGroup: EXISTING_RESOURCE_GROUP_NAME
Expand Down
1 change: 0 additions & 1 deletion deploy/example/pv-blobfuse-nfs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ spec:
csi:
driver: blob.csi.azure.com
# make sure volumeid is unique for every storage blob container in the cluster
# the # character is reserved for internal use, the / character is not allowed
volumeHandle: account-name_container-name
volumeAttributes:
resourceGroup: EXISTING_RESOURCE_GROUP_NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/driver-parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ pvc-92a4d7f2-f23b-4904-bad4-2cbfcff6e388

Name | Meaning | Available Value | Mandatory | Default value
--- | --- | --- | --- | ---
volumeHandle | Specify 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}. Note: the # character is reserved for internal use, the / character is not allowed. | Yes |
volumeHandle | Specify 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}.| Yes |
volumeAttributes.subscriptionID | specify Azure subscription ID where blob storage directory is located | Azure subscription ID | No | if not empty, `resourceGroup` must be provided
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
volumeAttributes.storageAccount | existing storage account name | existing storage account name | Yes |
Expand Down
3 changes: 1 addition & 2 deletions docs/workload-identity-static-pv-mount.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ spec:
csi:
driver: blob.csi.azure.com
# make sure volumeid is unique for every storage blob container in the cluster
# the # character is reserved for internal use, the / character is not allowed
volumeHandle: unique_volume_id
volumeHandle: account-name_container-name
volumeAttributes:
storageaccount: $ACCOUNT # required
containerName: $CONTAINER # required
Expand Down
Loading