Skip to content

Commit fa33860

Browse files
authored
Update README.md
1 parent 997a49a commit fa33860

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,27 +36,27 @@ Please refer to [install blobfuse csi driver](https://github.com/csi-driver/blob
3636
## E2E Usage example
3737
### 1. create a pod with csi blobfuse driver mount on linux
3838
#### Dynamic Provisioning (create storage account and container by blobfuse driver)
39-
- Create an blobfuse CSI storage class
39+
- Create a blobfuse CSI storage class
4040
```sh
4141
kubectl create -f https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driver/master/deploy/example/storageclass-blobfuse-csi.yaml
4242
```
4343

44-
- Create an blobfuse CSI PVC
44+
- Create a blobfuse CSI PVC
4545
```sh
4646
kubectl create -f https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driver/master/deploy/example/pvc-blobfuse-csi.yaml
4747
```
4848

4949
#### Static Provisioning(use an existing storage account)
5050
##### Option#1: use existing credentials in k8s cluster
5151
> make sure the existing credentials in k8s cluster(e.g. service principal, msi) could access the specified storage account
52-
- Download an blobfuse CSI storage class, edit `resourceGroup`, `storageAccount`, `containerName` to use existing storage container
52+
- Download a blobfuse CSI storage class, edit `resourceGroup`, `storageAccount`, `containerName` to use existing storage container
5353
```sh
5454
wget -O storageclass-blobfuse-csi-existing-container.yaml https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driver/master/deploy/example/storageclass-blobfuse-csi-existing-container.yaml
5555
vi storageclass-blobfuse-csi-existing-container.yaml
5656
kubectl create -f storageclass-blobfuse-csi-existing-container.yaml
5757
```
5858

59-
- Create an blobfuse CSI PVC
59+
- Create a blobfuse CSI PVC
6060
```sh
6161
kubectl create -f https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driver/master/deploy/example/pvc-blobfuse-csi.yaml
6262
```
@@ -67,14 +67,14 @@ kubectl create -f https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driv
6767
kubectl create secret generic azure-secret --from-literal accountname=NAME --from-literal accountkey="KEY" --type=Opaque
6868
```
6969

70-
- Create an blobfuse CSI PV, download `pv-blobfuse-csi.yaml` file and edit `containerName` in `volumeAttributes`
71-
```
70+
- Create a blobfuse CSI PV, download `pv-blobfuse-csi.yaml` file and edit `containerName` in `volumeAttributes`
71+
```sh
7272
wget https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driver/master/deploy/example/pv-blobfuse-csi.yaml
7373
vi pv-blobfuse-csi.yaml
7474
kubectl create -f pv-blobfuse-csi.yaml
7575
```
7676

77-
- Create an blobfuse CSI PVC which would be bound to the above PV
77+
- Create a blobfuse CSI PVC which would be bound to the above PV
7878
```
7979
kubectl create -f https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driver/master/deploy/example/pvc-blobfuse-csi-static.yaml
8080
```

0 commit comments

Comments
 (0)