Skip to content

Commit fce8466

Browse files
authored
Merge pull request #208 from andyzhangx/doc-rename
doc: renaming in doc
2 parents 9bc1b4f + f6057df commit fce8466

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

deploy/example/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ spec:
3636
- "-c"
3737
- while true; do echo $(date) >> /mnt/blob/outfile; sleep 1; done
3838
volumeMounts:
39-
- name: blobfuse
39+
- name: blob
4040
mountPath: "/mnt/blob"
4141
readOnly: false
4242
volumes:
43-
- name: blobfuse
43+
- name: blob
4444
persistentVolumeClaim:
4545
claimName: pvc-blob
4646
strategy:

deploy/example/e2e_usage.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
## CSI driver E2E usage example
2-
create a pod with blobfuse mount on linux
2+
create a pod with blob mount on linux
33
### Dynamic Provisioning (create storage account and container by Blob Storage CSI driver)
4-
- Create a blobfuse CSI storage class
4+
- Create a blob storage CSI storage class
55
```console
66
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/storageclass-blobfuse-csi.yaml
77
```
88

9-
- Create a blobfuse CSI PVC
9+
- Create a blob storage CSI PVC
1010
```console
1111
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/pvc-blob-csi.yaml
1212
```
1313

1414
### Static Provisioning(use an existing storage account)
1515
#### Option#1: use existing credentials in k8s cluster
1616
> make sure the existing credentials in k8s cluster(e.g. service principal, msi) could access the specified storage account
17-
- Download [blobfuse CSI storage class](https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/storageclass-blobfuse-csi-existing-container.yaml), edit `resourceGroup`, `storageAccount`, `containerName` in storage class
17+
- Download [blob storage CSI storage class](https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/storageclass-blobfuse-csi-existing-container.yaml), edit `resourceGroup`, `storageAccount`, `containerName` in storage class
1818
```yaml
1919
apiVersion: storage.k8s.io/v1
2020
kind: StorageClass
@@ -33,7 +33,7 @@ volumeBindingMode: Immediate
3333
kubectl create -f storageclass-blobfuse-csi-existing-container.yaml
3434
```
3535

36-
- Create a blobfuse CSI PVC
36+
- Create a blob storage CSI PVC
3737
```console
3838
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/pvc-blob-csi.yaml
3939
```
@@ -48,7 +48,7 @@ kubectl create secret generic azure-secret --from-literal azurestorageaccountnam
4848

4949
> storage account key(or sastoken) could also be stored in Azure Key Vault, check example here: [read-from-keyvault](../../docs/read-from-keyvault.md)
5050
51-
- Create a blobfuse CSI PV: download [`pv-blobfuse-csi.yaml` file](https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/pv-blobfuse-csi.yaml) and edit `containerName` in `volumeAttributes`
51+
- Create a blob storage CSI PV: download [`pv-blobfuse-csi.yaml` file](https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/pv-blobfuse-csi.yaml) and edit `containerName` in `volumeAttributes`
5252
```yaml
5353
apiVersion: v1
5454
kind: PersistentVolume
@@ -74,7 +74,7 @@ spec:
7474
kubectl create -f pv-blobfuse-csi.yaml
7575
```
7676

77-
- Create a blobfuse CSI PVC which would be bound to the above PV
77+
- Create a blob storage CSI PVC which would be bound to the above PV
7878
```console
7979
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/pvc-blob-csi-static.yaml
8080
```
@@ -85,7 +85,7 @@ kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi
8585
watch kubectl describe pvc pvc-blob
8686
```
8787

88-
- create a pod with blobfuse CSI PVC
88+
- create a pod with blob storage CSI PVC
8989
```console
9090
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/nginx-pod-blob.yaml
9191
```

docs/design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Enable CI on Windows | Completed | |
1818
Complete all unit tests | Completed | |
1919
Set up E2E test | to-do | |
2020
Implement NodeStage/NodeUnstage functions | to-do | two pods on same node could share same mount |
21-
Implement azure blobfuse.csi driver on Windows | to-do | |
21+
Implement Blob Storage CSI driver on Windows | to-do | |
2222

2323
### Implementation details
2424
To prevent possible regression issues, Azure Blob Storage CSI driver use [azure cloud provider](https://github.com/kubernetes/kubernetes/tree/v1.13.0/pkg/cloudprovider/providers/azure) library. Thus, all bug fixes in the built-in blobfuse plugin would be incorporated into this driver.

0 commit comments

Comments
 (0)