@@ -12,16 +12,16 @@ This driver allows Kubernetes to use [Azure Blob storage](https://github.com/Azu
12
12
Status: Aplha
13
13
14
14
### Container Images & CSI Compatibility:
15
- | Azure File CSI Driver Version | Image | v1.0.0 |
15
+ | Blobfuse CSI Driver Version | Image | v1.0.0 |
16
16
| -------------------------------| ----------------------------------------------------| --------|
17
17
| v0.1.0-alpha | mcr.microsoft.com/k8s/csi/blobfuse-csi: v0 .1.0-alpha | yes |
18
18
| master branch | mcr.microsoft.com/k8s/csi/blobfuse-csi: latest | yes |
19
19
20
20
### Kubernetes Compatibility
21
- | Azure File CSI Driver\Kubernetes Version | 1.12 | 1.13+ |
22
- | ------------------------------------------| ------| ------ -|
23
- | v0.1.0-alpha | yes | yes |
24
- | master branch | no | yes |
21
+ | Blobfuse CSI Driver\Kubernetes Version | 1.13+ |
22
+ | ------------------------------------------| -------|
23
+ | v0.1.0-alpha | yes |
24
+ | master branch | yes |
25
25
26
26
### Driver parameters
27
27
Please refer to [ ` blobfuse.csi.azure.com ` driver parameters] ( ./docs/driver-parameters.md )
@@ -35,7 +35,7 @@ Please refer to [install blobfuse csi driver](https://github.com/csi-driver/blob
35
35
36
36
### E2E Usage example
37
37
#### 1. create a pod with csi blobfuse driver mount on linux
38
- ##### Option #1 : Azurefile Dynamic Provisioning
38
+ ##### Option #1 : Blobfuse Dynamic Provisioning
39
39
- Create an blobfuse CSI storage class
40
40
```
41
41
kubectl create -f https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driver/master/deploy/example/storageclass-blobfuse-csi.yaml
@@ -46,13 +46,13 @@ kubectl create -f https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driv
46
46
kubectl create -f https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driver/master/deploy/example/pvc-blobfuse-csi.yaml
47
47
```
48
48
49
- ##### Option #2 : Azurefile Static Provisioning(use an existing blobfuse share )
49
+ ##### Option #2 : Blobfuse Static Provisioning(use an existing storage container )
50
50
- Use ` kubectl create secret ` to create ` azure-secret ` with existing storage account name and key
51
51
```
52
52
kubectl create secret generic azure-secret --from-literal accountname=NAME --from-literal accountkey="KEY" --type=Opaque
53
53
```
54
54
55
- - Create an blobfuse CSI PV, download ` pv-blobfuse-csi.yaml ` file and edit ` sharename ` in ` volumeAttributes `
55
+ - Create an blobfuse CSI PV, download ` pv-blobfuse-csi.yaml ` file and edit ` containerName ` in ` volumeAttributes `
56
56
```
57
57
wget https://raw.githubusercontent.com/csi-driver/blobfuse-csi-driver/master/deploy/example/pv-blobfuse-csi.yaml
58
58
vi pv-blobfuse-csi.yaml
0 commit comments