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

+1-1
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

+1-1
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

+4-4
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

+1-1
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

+4-4
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

+7-7
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

+1-1
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

+3-3
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

+1-1
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

+1-1
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"

docs/csi-dev.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
- Clone repo
44
```console
55
$ mkdir -p $GOPATH/src/sigs.k8s.io
6-
$ git clone https://github.com/kubernetes-sigs/blobfuse-csi-driver $GOPATH/src/sigs.k8s.io
6+
$ git clone https://github.com/kubernetes-sigs/blob-csi-driver $GOPATH/src/sigs.k8s.io
77
```
88

99
- Build Blob Storage CSI driver
1010
```console
11-
$ cd $GOPATH/src/sigs.k8s.io/blobfuse-csi-driver
11+
$ cd $GOPATH/src/sigs.k8s.io/blob-csi-driver
1212
$ make blob
1313
```
1414

@@ -35,7 +35,7 @@ $ make build
3535

3636
#### Start CSI driver locally
3737
```console
38-
$ cd $GOPATH/src/sigs.k8s.io/blobfuse-csi-driver
38+
$ cd $GOPATH/src/sigs.k8s.io/blob-csi-driver
3939
$ ./_output/blobplugin --endpoint tcp://127.0.0.1:10000 --nodeid CSINode -v=5 &
4040
```
4141
> Before running CSI driver, create "/etc/kubernetes/azure.json" file under testing server(it's better copy `azure.json` file from a k8s cluster with service principle configured correctly) and set `AZURE_CREDENTIAL_FILE` as following:

docs/install-csi-driver-master.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ If you have already installed Helm, you can also use it to install Azure Blob St
55
## Install with kubectl
66
- remote install
77
```console
8-
curl -skSL https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/install-driver.sh | bash -s master --
8+
curl -skSL https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/install-driver.sh | bash -s master --
99
```
1010

1111
- local install
1212
```console
13-
git clone https://github.com/kubernetes-sigs/blobfuse-csi-driver.git
14-
cd blobfuse-csi-driver
13+
git clone https://github.com/kubernetes-sigs/blob-csi-driver.git
14+
cd blob-csi-driver
1515
./deploy/install-driver.sh master local
1616
```
1717

@@ -33,5 +33,5 @@ csi-blob-node-dr4s4 3/3 Running 0 35s
3333

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

docs/read-from-keyvault.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@
2121
```
2222

2323
## Install Azure Blob Storage CSI driver on a kubernetes cluster
24-
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)
24+
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)
2525

2626
## Create PV
2727
1. Download a `pv-blobfuse-csi-keyvault.yaml`, edit `keyVaultURL`, `keyVaultSecretName`, `containerName` in PV
2828
> `keyVaultSecretVersion` is the optional parameter. If not specified, it will be *current version*.
2929
```console
30-
wget https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/pv-blobfuse-csi-keyvault.yaml
30+
wget https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/pv-blobfuse-csi-keyvault.yaml
3131
vi pv-blobfuse-csi-keyvault.yaml
3232
kubectl apply -f pv-blobfuse-csi-keyvault.yaml
3333
```
3434

3535
## Create PVC
3636

3737
```console
38-
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/blobfuse-csi-driver/master/deploy/example/pvc-blob-csi-static.yaml
38+
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/blob-csi-driver/master/deploy/example/pvc-blob-csi-static.yaml
3939
```

go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module sigs.k8s.io/blobfuse-csi-driver
1+
module sigs.k8s.io/blob-csi-driver
22

33
go 1.13
44

@@ -24,6 +24,7 @@ require (
2424
k8s.io/kubernetes v1.18.5
2525
k8s.io/legacy-cloud-providers v0.0.0
2626
k8s.io/utils v0.0.0-20200729134348-d5654de09c73
27+
sigs.k8s.io/blob-csi-driver v0.6.0
2728
sigs.k8s.io/yaml v1.2.0
2829
)
2930

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -891,6 +891,8 @@ rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8
891891
rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4=
892892
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.7 h1:uuHDyjllyzRyCIvvn0OBjiRB0SgBZGqHNYAmjR7fO50=
893893
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.7/go.mod h1:PHgbrJT7lCHcxMU+mDHEm+nx46H4zuuHZkDP6icnhu0=
894+
sigs.k8s.io/blobfuse-csi-driver v0.6.0 h1:HFFQa33WLNff9l4dGGn8xNIofDZf6pUR8zAFTP5Mqe4=
895+
sigs.k8s.io/blobfuse-csi-driver v0.6.0/go.mod h1:INyyzJdwBwQqrRof1qHlT/dmc1a3lX1smErgFAiIfVc=
894896
sigs.k8s.io/kustomize v2.0.3+incompatible/go.mod h1:MkjgH3RdOWrievjo6c9T245dYlB5QeXV4WCbnt/PEpU=
895897
sigs.k8s.io/structured-merge-diff/v3 v3.0.0-20200116222232-67a7b8c61874/go.mod h1:PlARxl6Hbt/+BC80dRLi1qAmnMqwqDg62YvvVkZjemw=
896898
sigs.k8s.io/structured-merge-diff/v3 v3.0.0 h1:dOmIZBMfhcHS09XZkMyUgkq5trg3/jRyJYFZUiaOp8E=

hack/boilerplate/boilerplate.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
parser.add_argument(
3939
"--rootdir", default=rootdir, help="root directory to examine")
4040

41-
default_boilerplate_dir = os.path.join(rootdir, "blobfuse-csi-driver/hack/boilerplate")
41+
default_boilerplate_dir = os.path.join(rootdir, "blob-csi-driver/hack/boilerplate")
4242

4343
parser.add_argument(
4444
"--boilerplate-dir", default=default_boilerplate_dir)

pkg/blob/blob.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"fmt"
2121
"strings"
2222

23-
csicommon "sigs.k8s.io/blobfuse-csi-driver/pkg/csi-common"
23+
csicommon "sigs.k8s.io/blob-csi-driver/pkg/csi-common"
2424

2525
"github.com/container-storage-interface/spec/lib/go/csi"
2626
"github.com/pborman/uuid"

pkg/blob/controllerserver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"fmt"
2222
"strings"
2323

24-
"sigs.k8s.io/blobfuse-csi-driver/pkg/util"
24+
"sigs.k8s.io/blob-csi-driver/pkg/util"
2525

2626
"github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2019-06-01/storage"
2727
azstorage "github.com/Azure/azure-sdk-for-go/storage"

pkg/blob/nodeserver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"strings"
2525
"time"
2626

27-
volumehelper "sigs.k8s.io/blobfuse-csi-driver/pkg/util"
27+
volumehelper "sigs.k8s.io/blob-csi-driver/pkg/util"
2828

2929
"github.com/container-storage-interface/spec/lib/go/csi"
3030

pkg/blobplugin/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
# limitations under the License.
1414

1515
FROM golang:1.13.10-alpine3.10 as builder
16-
WORKDIR /go/src/sigs.k8s.io/blobfuse-csi-driver
16+
WORKDIR /go/src/sigs.k8s.io/blob-csi-driver
1717
ADD . .
1818
ARG TARGETARCH
1919
ARG TARGETOS
2020
ARG LDFLAGS
21-
RUN CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -a -ldflags "${LDFLAGS:--X sigs.k8s.io/blobfuse-csi-driver/pkg/blob.driverVersion=latest}" -o _output/blobplugin ./pkg/blobplugin
21+
RUN CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -a -ldflags "${LDFLAGS:--X sigs.k8s.io/blob-csi-driver/pkg/blob.driverVersion=latest}" -o _output/blobplugin ./pkg/blobplugin
2222

2323
FROM us.gcr.io/k8s-artifacts-prod/build-image/debian-base-amd64:v2.1.0
24-
COPY --from=builder /go/src/sigs.k8s.io/blobfuse-csi-driver/_output/blobplugin /blobplugin
24+
COPY --from=builder /go/src/sigs.k8s.io/blob-csi-driver/_output/blobplugin /blobplugin
2525
RUN apt-get update && clean-install ca-certificates pkg-config libfuse-dev cmake libcurl4-gnutls-dev libgnutls28-dev uuid-dev libgcrypt20-dev wget
2626
RUN wget -O /tmp/packages-microsoft-prod.deb https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb && dpkg -i /tmp/packages-microsoft-prod.deb && apt-get update && apt install blobfuse fuse -y && rm -f /tmp/packages-microsoft-prod.deb
2727
RUN apt remove wget -y

pkg/blobplugin/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"os"
2626
"strings"
2727

28-
"sigs.k8s.io/blobfuse-csi-driver/pkg/blob"
28+
"sigs.k8s.io/blob-csi-driver/pkg/blob"
2929

3030
"k8s.io/component-base/metrics/legacyregistry"
3131
"k8s.io/klog/v2"

test/e2e/driver/blob_csi_driver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package driver
1919
import (
2020
"fmt"
2121

22-
"sigs.k8s.io/blobfuse-csi-driver/pkg/blob"
22+
"sigs.k8s.io/blob-csi-driver/pkg/blob"
2323

2424
v1 "k8s.io/api/core/v1"
2525
storagev1 "k8s.io/api/storage/v1"

test/e2e/dynamic_provisioning_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package e2e
1919
import (
2020
"fmt"
2121

22-
"sigs.k8s.io/blobfuse-csi-driver/test/e2e/driver"
23-
"sigs.k8s.io/blobfuse-csi-driver/test/e2e/testsuites"
22+
"sigs.k8s.io/blob-csi-driver/test/e2e/driver"
23+
"sigs.k8s.io/blob-csi-driver/test/e2e/testsuites"
2424

2525
"github.com/onsi/ginkgo"
2626
v1 "k8s.io/api/core/v1"

test/e2e/pre_provisioning_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
"context"
2121
"fmt"
2222

23-
"sigs.k8s.io/blobfuse-csi-driver/test/e2e/driver"
24-
"sigs.k8s.io/blobfuse-csi-driver/test/e2e/testsuites"
23+
"sigs.k8s.io/blob-csi-driver/test/e2e/driver"
24+
"sigs.k8s.io/blob-csi-driver/test/e2e/testsuites"
2525

2626
"github.com/container-storage-interface/spec/lib/go/csi"
2727
"github.com/onsi/ginkgo"

test/e2e/suite_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ import (
3434
"github.com/pborman/uuid"
3535
"k8s.io/kubernetes/test/e2e/framework"
3636
"k8s.io/kubernetes/test/e2e/framework/config"
37-
"sigs.k8s.io/blobfuse-csi-driver/pkg/blob"
38-
"sigs.k8s.io/blobfuse-csi-driver/test/utils/azure"
39-
"sigs.k8s.io/blobfuse-csi-driver/test/utils/credentials"
40-
"sigs.k8s.io/blobfuse-csi-driver/test/utils/testutil"
37+
"sigs.k8s.io/blob-csi-driver/pkg/blob"
38+
"sigs.k8s.io/blob-csi-driver/test/utils/azure"
39+
"sigs.k8s.io/blob-csi-driver/test/utils/credentials"
40+
"sigs.k8s.io/blob-csi-driver/test/utils/testutil"
4141
)
4242

4343
const (
@@ -159,7 +159,7 @@ func execTestCmd(cmds []testCmd) {
159159

160160
projectRoot, err := os.Getwd()
161161
gomega.Expect(err).NotTo(gomega.HaveOccurred())
162-
gomega.Expect(strings.HasSuffix(projectRoot, "blobfuse-csi-driver")).To(gomega.Equal(true))
162+
gomega.Expect(strings.HasSuffix(projectRoot, "blob-csi-driver")).To(gomega.Equal(true))
163163

164164
for _, cmd := range cmds {
165165
log.Println(cmd.startLog)

test/e2e/testsuites/dynamically_provisioned_cmd_volume_tester.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package testsuites
1818

1919
import (
20-
"sigs.k8s.io/blobfuse-csi-driver/test/e2e/driver"
20+
"sigs.k8s.io/blob-csi-driver/test/e2e/driver"
2121

2222
"github.com/onsi/ginkgo"
2323
v1 "k8s.io/api/core/v1"

0 commit comments

Comments
 (0)