Skip to content

Commit fd12225

Browse files
authored
doc: Simplify statefulset and PV creation instructions
Updated README to simplify instructions for creating statefulset and PV.
1 parent 0bbf9f3 commit fd12225

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

deploy/example/blobfuse-mi/README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,16 @@ AzureStorageIdentityClientID=`az identity list -g "$resourcegroup" --query "[?na
5555
- --cache-size-mb=1000 # Default will be 80% of available memory, eviction will happen beyond that.
5656
```
5757
58-
1. create a statefulset with blobfuse volume mount
58+
1. create a statefulset with volume mount
5959
```bash
6060
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/statefulset.yaml
6161
```
6262

6363
## Static Provisioning
6464

65-
> bring your own storage account and blob container
65+
> bring your own storage account
6666
67-
1. create PV with specified account name, blob container and AzureStorageIdentityClientID
67+
1. create PV with specified account name and AzureStorageIdentityClientID
6868
```yml
6969
apiVersion: v1
7070
kind: PersistentVolume
@@ -88,12 +88,11 @@ kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-dri
8888
protocol: fuse
8989
resourceGroup: EXISTING_RESOURCE_GROUP_NAME # optional, node resource group if it's not provided
9090
storageAccount: EXISTING_STORAGE_ACCOUNT_NAME
91-
containerName: EXISTING_CONTAINER_NAME
9291
AzureStorageAuthType: MSI
9392
AzureStorageIdentityClientID: "xxxxx-xxxx-xxx-xxx-xxxxxxx"
9493
```
9594
96-
1. create a pvc and a deployment with blobfuse volume mount
95+
1. create a pvc and a deployment with volume mount
9796
```console
9897
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/deployment.yaml
9998
```

0 commit comments

Comments
 (0)