Skip to content

Commit 15bafb5

Browse files
authored
Merge pull request #227 from rhummelmose/e2e-usage-improvements
Clarify scope of parameters
2 parents 4f55888 + 551b24e commit 15bafb5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

deploy/example/e2e_usage.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-dri
1313

1414
### Static Provisioning(use an existing storage account)
1515
#### Option#1: use existing credentials in k8s cluster
16-
> make sure the existing credentials in k8s cluster(e.g. service principal, msi) could access the specified storage account
16+
> Make sure the existing credentials in k8s cluster(e.g. service principal, msi) could access the specified storage account
1717
- Download [blob storage CSI storage class](https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/storageclass-blobfuse-existing-container.yaml), edit `resourceGroup`, `storageAccount`, `containerName` in storage class
1818
```yaml
1919
apiVersion: storage.k8s.io/v1
@@ -22,12 +22,13 @@ metadata:
2222
name: blob
2323
provisioner: blob.csi.azure.com
2424
parameters:
25-
resourceGroup: EXISTING_RESOURCE_GROUP
26-
storageAccount: EXISTING_STORAGE_ACCOUNT
25+
resourceGroup: EXISTING_RESOURCE_GROUP_NAME
26+
storageAccount: EXISTING_STORAGE_ACCOUNT_NAME
2727
containerName: EXISTING_CONTAINER_NAME
28-
reclaimPolicy: Retain # if set as "Delete" container would be removed after pvc deletion
28+
reclaimPolicy: Retain # If set as "Delete" container would be removed after pvc deletion
2929
volumeBindingMode: Immediate
3030
```
31+
> As of this writing blob-csi-driver doesn't support storage accounts outside the cluster's subscription
3132
```console
3233
kubectl create -f storageclass-blobfuse-existing-container.yaml
3334
```

0 commit comments

Comments
 (0)