Skip to content

Commit

Permalink
Merge pull request #1139 from andyzhangx/fix-readonly-doc
Browse files Browse the repository at this point in the history
doc: fix readOnly setting doc
  • Loading branch information
andyzhangx authored Nov 28, 2023
2 parents ae4ec07 + efe95f3 commit d8ce9b0
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion deploy/example/e2e_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ spec:
persistentVolumeReclaimPolicy: Retain
csi:
driver: blob.csi.azure.com
readOnly: false
# make sure volumeid is unique for every storage blob container in the cluster
# the # character is reserved for internal use, the / character is not allowed
volumeHandle: account-name_container-name
Expand Down
1 change: 1 addition & 0 deletions deploy/example/nginx-blobfuse-inline-volume.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ spec:
volumeMounts:
- name: persistent-storage
mountPath: "/mnt/blobfuse"
readOnly: false
volumes:
- name: persistent-storage
csi:
Expand Down
1 change: 1 addition & 0 deletions deploy/example/nginx-pod-blob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ spec:
volumeMounts:
- name: blob01
mountPath: "/mnt/blob"
readOnly: false
volumes:
- name: blob01
persistentVolumeClaim:
Expand Down
1 change: 0 additions & 1 deletion deploy/example/pv-blobfuse-auth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ spec:
- --file-cache-timeout-in-seconds=120
csi:
driver: blob.csi.azure.com
readOnly: false
# make sure volumeid is unique for every storage blob container in the cluster
# the # character is reserved for internal use, the / character is not allowed
volumeHandle: account-name_container-name
Expand Down
1 change: 0 additions & 1 deletion deploy/example/pv-blobfuse-csi-keyvault.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ spec:
storageClassName: blob-fuse
csi:
driver: blob.csi.azure.com
readOnly: false
# make sure volumeid is unique for every storage blob container in the cluster
# the # character is reserved for internal use, the / character is not allowed
volumeHandle: account-name_container-name
Expand Down
1 change: 0 additions & 1 deletion deploy/example/pv-blobfuse-csi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ spec:
- --file-cache-timeout-in-seconds=120
csi:
driver: blob.csi.azure.com
readOnly: false
# make sure volumeid is unique for every storage blob container in the cluster
# the # character is reserved for internal use, the / character is not allowed
volumeHandle: account-name_container-name
Expand Down
1 change: 0 additions & 1 deletion deploy/example/pv-blobfuse-nfs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ spec:
- nconnect=4
csi:
driver: blob.csi.azure.com
readOnly: false
# make sure volumeid is unique for every storage blob container in the cluster
# the # character is reserved for internal use, the / character is not allowed
volumeHandle: account-name_container-name
Expand Down
1 change: 1 addition & 0 deletions deploy/example/statefulset-nfs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ spec:
volumeMounts:
- name: persistent-storage
mountPath: /mnt/blob
readOnly: false
updateStrategy:
type: RollingUpdate
selector:
Expand Down
1 change: 1 addition & 0 deletions deploy/example/statefulset-nonroot-nfs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ spec:
volumeMounts:
- name: persistent-storage
mountPath: /mnt/blob
readOnly: false
updateStrategy:
type: RollingUpdate
selector:
Expand Down
1 change: 1 addition & 0 deletions deploy/example/statefulset-nonroot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ spec:
volumeMounts:
- name: persistent-storage
mountPath: /mnt/blob
readOnly: false
updateStrategy:
type: RollingUpdate
selector:
Expand Down
1 change: 1 addition & 0 deletions deploy/example/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ spec:
volumeMounts:
- name: persistent-storage
mountPath: /mnt/blob
readOnly: false
updateStrategy:
type: RollingUpdate
selector:
Expand Down

0 comments on commit d8ce9b0

Please sign in to comment.