Skip to content

Commit 88aea0d

Browse files
authored
Merge pull request #196 from andyzhangx/rename-driver-name
doc: rename driver as "Azure Blob Storage CSI driver"
2 parents 9a93bc9 + 72ee8ca commit 88aea0d

File tree

16 files changed

+33
-33
lines changed

16 files changed

+33
-33
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Please refer to `blob.csi.azure.com` [driver parameters](./docs/driver-parameter
2626
- This driver also supports [read cloud config from kuberenetes secret](./docs/read-from-secret.md).
2727
- If cluster identity is [Managed Service Identity(MSI)](https://docs.microsoft.com/en-us/azure/aks/use-managed-identity), make sure user assigned identity has `Contributor` role on node resource group
2828
29-
### Install blobfuse CSI driver on a kubernetes cluster
30-
Please refer to [install blobfuse csi driver](https://github.com/kubernetes-sigs/blobfuse-csi-driver/blob/master/docs/install-blobfuse-csi-driver.md)
29+
### Install Azure Blob Storage CSI driver on a kubernetes cluster
30+
Please refer to [install Azure Blob Storage CSI driver](https://github.com/kubernetes-sigs/blobfuse-csi-driver/blob/master/docs/install-blobfuse-csi-driver.md)
3131
3232
### Usage
3333
- [Basic usage](./deploy/example/e2e_usage.md)

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release Process
22

3-
The Blobfuse CSI Driver is released on an as-needed basis. The process is as follows:
3+
The Azure Blob Storage CSI driver is released on an as-needed basis. The process is as follows:
44

55
1. An issue is proposing a new release with a changelog since the last release
66
1. All [OWNERS](OWNERS) must LGTM this release

charts/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Installation with Helm 3
22

3-
Quick start instructions for the setup and configuration of blobfuse CSI driver using Helm.
3+
Quick start instructions for the setup and configuration of Azure Blob Storage CSI driver using Helm.
44

55
## Prerequisites
66

@@ -38,7 +38,7 @@ $ helm uninstall blobfuse-csi-driver -n kube-system
3838
```
3939
## The Latest Helm Chart Configuration
4040

41-
The following table lists the configurable parameters of the latest Blobfuse CSI Driver chart and their default values.
41+
The following table lists the configurable parameters of the latest Azure Blob Storage CSI driver chart and their default values.
4242

4343
| Parameter | Description | Default |
4444
|---------------------------------------------------|------------------------------------------------------------|-------------------------------------------------------------------|
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
The BlobFuse CSI Driver is getting deployed to your cluster.
1+
The Azure Blob Storage CSI driver is getting deployed to your cluster.
22

3-
To check Blobfuse CSI Driver pods status, please run:
3+
To check Azure Blob Storage CSI driver pods status, please run:
44

55
kubectl --namespace={{ .Release.Namespace }} get pods --selector="release={{ .Release.Name }}" --watch

deploy/install-driver.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ if [ $ver != "master" ]; then
3333
repo="$repo/$ver"
3434
fi
3535

36-
echo "Installing Blobfuse CSI driver, version: $ver ..."
36+
echo "Installing Azure Blob Storage CSI driver, version: $ver ..."
3737
kubectl apply -f $repo/rbac-csi-blobfuse-controller.yaml
3838
kubectl apply -f $repo/rbac-csi-blobfuse-node.yaml
3939
kubectl apply -f $repo/csi-blobfuse-driver.yaml
4040
kubectl apply -f $repo/csi-blobfuse-controller.yaml
4141
kubectl apply -f $repo/csi-blobfuse-node.yaml
42-
echo 'Blobfuse CSI driver installed successfully.'
42+
echo 'Azure Blob Storage CSI driver installed successfully.'

deploy/uninstall-driver.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ if [ $ver != "master" ]; then
3333
repo="$repo/$ver"
3434
fi
3535

36-
echo "Uninstalling Blobfuse CSI driver, version: $ver ..."
36+
echo "Uninstalling Azure Blob Storage CSI driver, version: $ver ..."
3737
kubectl delete -f $repo/csi-blobfuse-controller.yaml --ignore-not-found
3838
kubectl delete -f $repo/csi-blobfuse-node.yaml --ignore-not-found
3939
kubectl delete -f $repo/csi-blobfuse-driver.yaml --ignore-not-found
4040
kubectl delete -f $repo/rbac-csi-blobfuse-controller.yaml --ignore-not-found
4141
kubectl delete -f $repo/rbac-csi-blobfuse-node.yaml --ignore-not-found
42-
echo 'Uninstalled Blobfuse CSI driver successfully.'
42+
echo 'Uninstalled Azure Blob Storage CSI driver successfully.'

docs/csi-dev.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Blobfuse CSI driver development guide
1+
# Azure Blob Storage CSI driver development guide
22

33
- Clone repo
44
```console

docs/design.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# blobfuse CSI driver design goals
2-
> blobfuse CSI driver is implemented as compatitable as possible with built-in [blobfuse](https://kubernetes.io/docs/concepts/storage/volumes/#blobfuse) plugin, it has following goals:
1+
# Azure Blob Storage CSI driver design goals
2+
> Azure Blob Storage CSI driver is implemented as compatitable as possible with built-in [blobfuse](https://kubernetes.io/docs/concepts/storage/volumes/#blobfuse) plugin, it has following goals:
33
44
Goal | Status | Notes
55
--- | --- | --- |
@@ -21,4 +21,4 @@ Implement NodeStage/NodeUnstage functions | to-do | two pods on same node could
2121
Implement azure blobfuse.csi driver on Windows | to-do | |
2222

2323
### Implementation details
24-
To prevent possible regression issues, blobfuse 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.
24+
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.

docs/install-blobfuse-csi-driver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Install blobfuse CSI driver on a Kubernetes cluster
1+
## Install Azure Blob Storage CSI driver on a Kubernetes cluster
22

33
- [install CSI driver master version](./install-csi-driver-master.md)
44
- [install v0.6.0 CSI driver](./install-csi-driver-v0.6.0.md)

docs/install-csi-driver-master.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Install blobfuse CSI driver master version on a kubernetes cluster
1+
# Install Azure Blob Storage CSI driver master version on a kubernetes cluster
22

3-
If you have already installed Helm, you can also use it to install blobfuse CSI driver. Please see [Installation with Helm](../charts/README.md).
3+
If you have already installed Helm, you can also use it to install Azure Blob Storage CSI driver. Please see [Installation with Helm](../charts/README.md).
44

55
## Install with kubectl
66
- remote install
@@ -31,7 +31,7 @@ csi-blobfuse-node-cvgbs 3/3 Running 0 35s
3131
csi-blobfuse-node-dr4s4 3/3 Running 0 35s 10.240.0.4 k8s-agentpool-22533604-0
3232
```
3333

34-
- clean up blobfuse CSI driver
34+
- clean up Azure Blob Storage CSI driver
3535
```console
3636
curl -skSL https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/uninstall-driver.sh | bash -s master --
3737
```

0 commit comments

Comments
 (0)