Skip to content

Commit 9bd423c

Browse files
committed
chore: rename driver name "blob.csi.azure.com"
1 parent 47327da commit 9bd423c

15 files changed

+21
-22
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fkubernetes-sigs%2Fblobfuse-csi-driver.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fkubernetes-sigs%2Fblobfuse-csi-driver?ref=badge_shield)
55

66
### About
7-
This driver allows Kubernetes to use [azure-storage-fuse](https://github.com/Azure/azure-storage-fuse), csi plugin name: `blobfuse.csi.azure.com`
7+
This driver allows Kubernetes to use [azure-storage-fuse](https://github.com/Azure/azure-storage-fuse), csi plugin name: `blob.csi.azure.com`
88

99
### Container Images & Kubernetes Compatibility:
1010
|Blobfuse CSI Driver Version | Image | 1.14+ |
@@ -15,8 +15,7 @@ This driver allows Kubernetes to use [azure-storage-fuse](https://github.com/Azu
1515
|v0.4.0 |mcr.microsoft.com/k8s/csi/blobfuse-csi:v0.4.0 | yes |
1616

1717
### Driver parameters
18-
Please refer to `blobfuse.csi.azure.com` [driver parameters](./docs/driver-parameters.md)
19-
> storage class `blobfuse.csi.azure.com` parameters are compatible with built-in [blobfuse](https://kubernetes.io/docs/concepts/storage/volumes/#blobfuse) plugin
18+
Please refer to `blob.csi.azure.com` [driver parameters](./docs/driver-parameters.md)
2019

2120
### Prerequisite
2221
- The driver depends on [cloud provider config file](https://github.com/kubernetes/cloud-provider-azure/blob/master/docs/cloud-provider-config.md), usually it's `/etc/kubernetes/azure.json` on all kubernetes nodes deployed by [AKS](https://docs.microsoft.com/en-us/azure/aks/) or [aks-engine](https://github.com/Azure/aks-engine), here is [azure.json example](./deploy/example/azure.json).

charts/latest/blobfuse-csi-driver/templates/csi-blobfuse-driver.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: storage.k8s.io/v1beta1
33
kind: CSIDriver
44
metadata:
5-
name: blobfuse.csi.azure.com
5+
name: blob.csi.azure.com
66
spec:
77
attachRequired: false
88
podInfoOnMount: true

charts/latest/blobfuse-csi-driver/templates/csi-blobfuse-node.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ spec:
4848
lifecycle:
4949
preStop:
5050
exec:
51-
command: ["/bin/sh", "-c", "rm -rf /registration/blobfuse.csi.azure.com-reg.sock /csi/csi.sock"]
51+
command: ["/bin/sh", "-c", "rm -rf /registration/blob.csi.azure.com-reg.sock /csi/csi.sock"]
5252
env:
5353
- name: ADDRESS
5454
value: /csi/csi.sock
5555
- name: DRIVER_REG_SOCK_PATH
56-
value: /var/lib/kubelet/plugins/blobfuse.csi.azure.com/csi.sock
56+
value: /var/lib/kubelet/plugins/blob.csi.azure.com/csi.sock
5757
volumeMounts:
5858
- name: socket-dir
5959
mountPath: /csi
@@ -127,7 +127,7 @@ spec:
127127
memory: 20Mi
128128
volumes:
129129
- hostPath:
130-
path: /var/lib/kubelet/plugins/blobfuse.csi.azure.com
130+
path: /var/lib/kubelet/plugins/blob.csi.azure.com
131131
type: DirectoryOrCreate
132132
name: socket-dir
133133
- hostPath:

deploy/csi-blobfuse-driver.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: storage.k8s.io/v1beta1
33
kind: CSIDriver
44
metadata:
5-
name: blobfuse.csi.azure.com
5+
name: blob.csi.azure.com
66
spec:
77
attachRequired: false
88
podInfoOnMount: true

deploy/csi-blobfuse-node.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ spec:
4747
lifecycle:
4848
preStop:
4949
exec:
50-
command: ["/bin/sh", "-c", "rm -rf /registration/blobfuse.csi.azure.com-reg.sock /csi/csi.sock"]
50+
command: ["/bin/sh", "-c", "rm -rf /registration/blob.csi.azure.com-reg.sock /csi/csi.sock"]
5151
env:
5252
- name: ADDRESS
5353
value: /csi/csi.sock
5454
- name: DRIVER_REG_SOCK_PATH
55-
value: /var/lib/kubelet/plugins/blobfuse.csi.azure.com/csi.sock
55+
value: /var/lib/kubelet/plugins/blob.csi.azure.com/csi.sock
5656
volumeMounts:
5757
- name: socket-dir
5858
mountPath: /csi
@@ -126,7 +126,7 @@ spec:
126126
memory: 20Mi
127127
volumes:
128128
- hostPath:
129-
path: /var/lib/kubelet/plugins/blobfuse.csi.azure.com
129+
path: /var/lib/kubelet/plugins/blob.csi.azure.com
130130
type: DirectoryOrCreate
131131
name: socket-dir
132132
- hostPath:

deploy/example/e2e_usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ apiVersion: storage.k8s.io/v1
2020
kind: StorageClass
2121
metadata:
2222
name: blob
23-
provisioner: blobfuse.csi.azure.com
23+
provisioner: blob.csi.azure.com
2424
parameters:
2525
skuName: Standard_LRS # available values: Standard_LRS, Standard_GRS, Standard_RAGRS
2626
resourceGroup: EXISTING_RESOURCE_GROUP
@@ -61,7 +61,7 @@ spec:
6161
- ReadWriteMany
6262
persistentVolumeReclaimPolicy: Retain # "Delete" is not supported in static provisioning
6363
csi:
64-
driver: blobfuse.csi.azure.com
64+
driver: blob.csi.azure.com
6565
readOnly: false
6666
volumeHandle: arbitrary-volumeid
6767
volumeAttributes:

deploy/example/nfs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ apiVersion: storage.k8s.io/v1
3333
kind: StorageClass
3434
metadata:
3535
name: blob
36-
provisioner: blobfuse.csi.azure.com
36+
provisioner: blob.csi.azure.com
3737
parameters:
3838
resourceGroup: EXISTING_RESOURCE_GROUP_NAME # optional, only set this when storage account is not in the same resource group as agent node
3939
storageAccount: EXISTING_STORAGE_ACCOUNT_NAME

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
- ReadWriteMany
1111
persistentVolumeReclaimPolicy: Retain # If set as "Delete" container would be removed after pvc deletion
1212
csi:
13-
driver: blobfuse.csi.azure.com
13+
driver: blob.csi.azure.com
1414
readOnly: false
1515
volumeHandle: arbitrary-volumeid
1616
volumeAttributes:

deploy/example/pv-blobfuse-csi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
- -o allow_other
1414
- --file-cache-timeout-in-seconds=120
1515
csi:
16-
driver: blobfuse.csi.azure.com
16+
driver: blob.csi.azure.com
1717
readOnly: false
1818
volumeHandle: uniqe-volumeid # make sure this volumeid is unique in the cluster
1919
volumeAttributes:

deploy/example/storageclass-blob-nfs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: storage.k8s.io/v1
33
kind: StorageClass
44
metadata:
55
name: blob
6-
provisioner: blobfuse.csi.azure.com
6+
provisioner: blob.csi.azure.com
77
parameters:
88
storageAccount: EXISTING_STORAGE_ACCOUNT_NAME
99
protocol: nfs

0 commit comments

Comments
 (0)