Skip to content

Commit f0c9dc1

Browse files
authored
Merge pull request #652 from andyzhangx/sc-rename
doc: rename storage class name from blob to blob-fuse
2 parents fce8cb0 + 3353dca commit f0c9dc1

13 files changed

+13
-13
lines changed

deploy/example/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spec:
99
resources:
1010
requests:
1111
storage: 10Gi
12-
storageClassName: blob
12+
storageClassName: blob-fuse
1313
---
1414
apiVersion: apps/v1
1515
kind: Deployment

deploy/example/e2e_usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ blobfuse 14G 41M 13G 1% /mnt/blob
4646
apiVersion: storage.k8s.io/v1
4747
kind: StorageClass
4848
metadata:
49-
name: blob
49+
name: blob-fuse
5050
provisioner: blob.csi.azure.com
5151
parameters:
5252
resourceGroup: EXISTING_RESOURCE_GROUP_NAME

deploy/example/pv-blobfuse-auth.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spec:
99
accessModes:
1010
- ReadWriteMany
1111
persistentVolumeReclaimPolicy: Retain # "Delete" is not supported in static provisioning
12-
storageClassName: blob
12+
storageClassName: blob-fuse
1313
mountOptions:
1414
- -o allow_other
1515
- --file-cache-timeout-in-seconds=120

deploy/example/pv-blobfuse-csi-keyvault.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spec:
99
accessModes:
1010
- ReadWriteMany
1111
persistentVolumeReclaimPolicy: Retain # If set as "Delete" container would be removed after pvc deletion
12-
storageClassName: blob
12+
storageClassName: blob-fuse
1313
csi:
1414
driver: blob.csi.azure.com
1515
readOnly: false

deploy/example/pv-blobfuse-csi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spec:
99
accessModes:
1010
- ReadWriteMany
1111
persistentVolumeReclaimPolicy: Retain # If set as "Delete" container would be removed after pvc deletion
12-
storageClassName: blob
12+
storageClassName: blob-fuse
1313
mountOptions:
1414
- -o allow_other
1515
- --file-cache-timeout-in-seconds=120

deploy/example/pvc-blob-csi-static.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ spec:
1010
requests:
1111
storage: 10Gi
1212
volumeName: pv-blob
13-
storageClassName: blob # set as "blob-nfs" for nfs
13+
storageClassName: blob-fuse # set as "blob-nfs" for nfs

deploy/example/pvc-blob-csi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ spec:
99
resources:
1010
requests:
1111
storage: 10Gi
12-
storageClassName: blob
12+
storageClassName: blob-fuse

deploy/example/statefulset-nonroot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ spec:
3838
- metadata:
3939
name: persistent-storage
4040
annotations:
41-
volume.beta.kubernetes.io/storage-class: blob
41+
volume.beta.kubernetes.io/storage-class: blob-fuse
4242
spec:
4343
accessModes: ["ReadWriteMany"]
4444
resources:

deploy/example/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
- metadata:
3535
name: persistent-storage
3636
annotations:
37-
volume.beta.kubernetes.io/storage-class: blob
37+
volume.beta.kubernetes.io/storage-class: blob-fuse
3838
spec:
3939
accessModes: ["ReadWriteMany"]
4040
resources:

deploy/example/storageclass-blob-secret.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: storage.k8s.io/v1
33
kind: StorageClass
44
metadata:
5-
name: blob
5+
name: blob-fuse
66
provisioner: blob.csi.azure.com
77
allowVolumeExpansion: true
88
parameters:

0 commit comments

Comments
 (0)