Skip to content

Commit e7b3a4c

Browse files
authored
Update README.md
1 parent fa33860 commit e7b3a4c

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
**WARNING**: This driver is in ALPHA currently. Do NOT use this driver in a production environment in its current state.
77

88
### About
9-
This driver allows Kubernetes to use [Azure Blob storage](https://github.com/Azure/azure-storage-fuse), csi plugin name: `blobfuse.csi.azure.com`
9+
This driver allows Kubernetes to use [azure-storage-fuse](https://github.com/Azure/azure-storage-fuse), csi plugin name: `blobfuse.csi.azure.com`
1010

1111
### Project Status
1212
Status: Aplha
@@ -34,8 +34,8 @@ Please refer to [`blobfuse.csi.azure.com` driver parameters](./docs/driver-param
3434
Please refer to [install blobfuse csi driver](https://github.com/csi-driver/blobfuse-csi-driver/blob/master/docs/install-blobfuse-csi-driver.md)
3535

3636
## E2E Usage example
37-
### 1. create a pod with csi blobfuse driver mount on linux
38-
#### Dynamic Provisioning (create storage account and container by blobfuse driver)
37+
create a pod with blobfuse mount on linux
38+
### Dynamic Provisioning (create storage account and container automatically by blobfuse driver)
3939
- 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
@@ -46,8 +46,8 @@ kubectl create -f https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driv
4646
kubectl create -f https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driver/master/deploy/example/pvc-blobfuse-csi.yaml
4747
```
4848

49-
#### Static Provisioning(use an existing storage account)
50-
##### Option#1: use existing credentials in k8s cluster
49+
### Static Provisioning(use an existing storage account)
50+
#### 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
5252
- Download a blobfuse CSI storage class, edit `resourceGroup`, `storageAccount`, `containerName` to use existing storage container
5353
```sh
@@ -61,7 +61,7 @@ kubectl create -f storageclass-blobfuse-csi-existing-container.yaml
6161
kubectl create -f https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driver/master/deploy/example/pvc-blobfuse-csi.yaml
6262
```
6363

64-
##### Option#2: provide storage account name and key
64+
#### Option#2: provide storage account name and key
6565
- Use `kubectl create secret` to create `azure-secret` with existing storage account name and key
6666
```
6767
kubectl create secret generic azure-secret --from-literal accountname=NAME --from-literal accountkey="KEY" --type=Opaque
@@ -108,6 +108,7 @@ Please refer to [development guide](./docs/csi-dev.md)
108108

109109

110110
### Links
111+
- [azure-storage-fuse](https://github.com/Azure/azure-storage-fuse)
111112
- [Kubernetes CSI Documentation](https://kubernetes-csi.github.io/docs/Home.html)
112113
- [Analysis of the CSI Spec](https://blog.thecodeteam.com/2017/11/03/analysis-csi-spec/)
113114
- [CSI Drivers](https://github.com/kubernetes-csi/drivers)

0 commit comments

Comments
 (0)