Skip to content

Commit 20a2202

Browse files
committed
chor: repository rename
1 parent fce8466 commit 20a2202

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+81
-78
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: go
2-
go_import_path: sigs.k8s.io/blobfuse-csi-driver
2+
go_import_path: sigs.k8s.io/blob-csi-driver
33
dist: bionic
44

55
go:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
PKG = sigs.k8s.io/blobfuse-csi-driver
15+
PKG = sigs.k8s.io/blob-csi-driver
1616
GIT_COMMIT ?= $(shell git rev-parse HEAD)
1717
REGISTRY ?= andyzhangx
1818
REGISTRY_NAME ?= $(shell echo $(REGISTRY) | sed "s/.azurecr.io//g")

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Azure Blob Storage CSI driver for Kubernetes
2-
[![Travis](https://travis-ci.org/kubernetes-sigs/blobfuse-csi-driver.svg)](https://travis-ci.org/kubernetes-sigs/blobfuse-csi-driver)
3-
[![Coverage Status](https://coveralls.io/repos/github/kubernetes-sigs/blobfuse-csi-driver/badge.svg?branch=master)](https://coveralls.io/github/kubernetes-sigs/blobfuse-csi-driver?branch=master)
4-
[![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)
2+
[![Travis](https://travis-ci.org/kubernetes-sigs/blob-csi-driver.svg)](https://travis-ci.org/kubernetes-sigs/blob-csi-driver)
3+
[![Coverage Status](https://coveralls.io/repos/github/kubernetes-sigs/blob-csi-driver/badge.svg?branch=master)](https://coveralls.io/github/kubernetes-sigs/blob-csi-driver?branch=master)
4+
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fkubernetes-sigs%2Fblob-csi-driver.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fkubernetes-sigs%2Fblob-csi-driver?ref=badge_shield)
55

66
### About
77
This driver allows Kubernetes to access Azure Storage through one of following methods:
@@ -31,7 +31,7 @@ Please refer to `blob.csi.azure.com` [driver parameters](./docs/driver-parameter
3131
- 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
3232
3333
### Install Azure Blob Storage CSI driver on a kubernetes cluster
34-
Please refer to [install Azure Blob Storage CSI driver](https://github.com/kubernetes-sigs/blobfuse-csi-driver/blob/master/docs/install-blob-csi-driver.md)
34+
Please refer to [install Azure Blob Storage CSI driver](https://github.com/kubernetes-sigs/blob-csi-driver/blob/master/docs/install-blob-csi-driver.md)
3535
3636
### Usage
3737
- [Basic usage](./deploy/example/e2e_usage.md)

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ The Azure Blob Storage CSI driver is released on an as-needed basis. The process
66
1. All [OWNERS](OWNERS) must LGTM this release
77
1. An OWNER runs `git tag -s $VERSION` and inserts the changelog and pushes the tag with `git push $VERSION`
88
1. The release issue is closed
9-
1. An announcement email is sent to `[email protected]` with the subject `[ANNOUNCE] blobfuse-csi-driver $VERSION is released`
9+
1. An announcement email is sent to `[email protected]` with the subject `[ANNOUNCE] blob-csi-driver $VERSION is released`

charts/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ $ helm install blob-csi-driver blob-csi-driver-latest.tgz --namespace kube-syste
1717
## Install CSI Driver released version using Helm repository
1818

1919
```console
20-
$ helm repo add blob-csi-driver https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/charts
21-
$ helm install blob-csi-driver blobfuse-csi-driver/blobfuse-csi-driver --namespace kube-system
20+
$ helm repo add blob-csi-driver https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/charts
21+
$ helm install blob-csi-driver blob-csi-driver/blob-csi-driver --namespace kube-system
2222
```
2323

2424
### Search for different versions of charts available
2525
```console
26-
$ helm search repo -l blobfuse-csi-driver/
26+
$ helm search repo -l blob-csi-driver/
2727
```
2828
### Install a specific version of Helm chart
2929
Specify the version of the chart to be installed using the `--version` parameter.
3030
```console
31-
helm install blob-csi-driver blobfuse-csi-driver/blob-csi-driver --namespace kube-system --version v0.6.0
31+
helm install blob-csi-driver blob-csi-driver/blob-csi-driver --namespace kube-system --version v0.6.0
3232
```
3333

3434
## Uninstall

deploy/example/e2e_usage.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ create a pod with blob mount on linux
33
### Dynamic Provisioning (create storage account and container by Blob Storage CSI driver)
44
- Create a blob storage CSI storage class
55
```console
6-
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/storageclass-blobfuse-csi.yaml
6+
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/storageclass-blobfuse-csi.yaml
77
```
88

99
- Create a blob storage CSI PVC
1010
```console
11-
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/pvc-blob-csi.yaml
11+
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/pvc-blob-csi.yaml
1212
```
1313

1414
### Static Provisioning(use an existing storage account)
1515
#### Option#1: use existing credentials in k8s cluster
1616
> make sure the existing credentials in k8s cluster(e.g. service principal, msi) could access the specified storage account
17-
- Download [blob storage CSI storage class](https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/storageclass-blobfuse-csi-existing-container.yaml), edit `resourceGroup`, `storageAccount`, `containerName` in storage class
17+
- Download [blob storage CSI storage class](https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/storageclass-blobfuse-csi-existing-container.yaml), edit `resourceGroup`, `storageAccount`, `containerName` in storage class
1818
```yaml
1919
apiVersion: storage.k8s.io/v1
2020
kind: StorageClass
@@ -35,7 +35,7 @@ kubectl create -f storageclass-blobfuse-csi-existing-container.yaml
3535

3636
- Create a blob storage CSI PVC
3737
```console
38-
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/pvc-blob-csi.yaml
38+
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/pvc-blob-csi.yaml
3939
```
4040

4141
#### Option#2: provide storage account name and key(or sastoken)
@@ -48,7 +48,7 @@ kubectl create secret generic azure-secret --from-literal azurestorageaccountnam
4848

4949
> storage account key(or sastoken) could also be stored in Azure Key Vault, check example here: [read-from-keyvault](../../docs/read-from-keyvault.md)
5050
51-
- Create a blob storage CSI PV: download [`pv-blobfuse-csi.yaml` file](https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/pv-blobfuse-csi.yaml) and edit `containerName` in `volumeAttributes`
51+
- Create a blob storage CSI PV: download [`pv-blobfuse-csi.yaml` file](https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/pv-blobfuse-csi.yaml) and edit `containerName` in `volumeAttributes`
5252
```yaml
5353
apiVersion: v1
5454
kind: PersistentVolume
@@ -76,7 +76,7 @@ kubectl create -f pv-blobfuse-csi.yaml
7676

7777
- Create a blob storage CSI PVC which would be bound to the above PV
7878
```console
79-
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/pvc-blob-csi-static.yaml
79+
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/pvc-blob-csi-static.yaml
8080
```
8181

8282
#### 2. Validate PVC status and create an nginx pod
@@ -87,7 +87,7 @@ watch kubectl describe pvc pvc-blob
8787

8888
- create a pod with blob storage CSI PVC
8989
```console
90-
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/nginx-pod-blob.yaml
90+
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/nginx-pod-blob.yaml
9191
```
9292

9393
#### 3. enter the pod container to do validation

deploy/example/metrics/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
1. Create `csi-blob-controller` service with targetPort `29624`
44
```console
5-
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/metrics/csi-blob-controller-svc.yaml
5+
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/metrics/csi-blob-controller-svc.yaml
66
```
77

88
2. Get ClusterIP of service `csi-blob-controller`

deploy/example/nfs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ az feature register --name PremiumHns --namespace Microsoft.Storage
1515
az provider register --namespace Microsoft.Storage
1616
```
1717

18-
- [install CSI driver](https://github.com/kubernetes-sigs/blobfuse-csi-driver/blob/master/docs/install-csi-driver-master.md) (only master version supported now)
18+
- [install CSI driver](https://github.com/kubernetes-sigs/blob-csi-driver/blob/master/docs/install-csi-driver-master.md) (only master version supported now)
1919
- Create a `Premium_LRS` Azure storage account with following configurations to support NFS 3.0
2020
- account kind: `BlockBlobStorage`
2121
- Replication: `Locally-redundant storage (LRS)`
@@ -42,15 +42,15 @@ parameters:
4242
4343
run following command to create a storage class:
4444
```console
45-
wget https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/storageclass-blob-nfs.yaml
45+
wget https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/storageclass-blob-nfs.yaml
4646
# set `storageAccount` in storageclass-blob-nfs.yaml
4747
kubectl create -f storageclass-blob-nfs.yaml
4848
```
4949

5050
### Example
5151
- Create a deployment with NFSv3 on Azure storage
5252
```console
53-
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/statefulset.yaml
53+
kubectl create -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/statefulset.yaml
5454
```
5555

5656
- enter pod to check

deploy/install-driver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if [[ "$#" -gt 0 ]]; then
2121
ver="$1"
2222
fi
2323

24-
repo="https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/$ver/deploy"
24+
repo="https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/$ver/deploy"
2525
if [[ "$#" -gt 1 ]]; then
2626
if [[ "$2" == *"local"* ]]; then
2727
echo "use local deploy"

deploy/uninstall-driver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if [[ "$#" -gt 0 ]]; then
2121
ver="$1"
2222
fi
2323

24-
repo="https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/$ver/deploy"
24+
repo="https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/$ver/deploy"
2525
if [[ "$#" -gt 1 ]]; then
2626
if [[ "$2" == *"local"* ]]; then
2727
echo "use local deploy"

0 commit comments

Comments
 (0)