Skip to content

Commit cafe443

Browse files
authored
Merge pull request #14 from andyzhangx/repo-rename
chore: repo rename
2 parents 586c360 + 32e26ac commit cafe443

File tree

14 files changed

+25
-25
lines changed

14 files changed

+25
-25
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ before_install:
99
- GO111MODULE=off go get github.com/mattn/goveralls
1010

1111
script:
12-
- go test -covermode=count -coverprofile=profile.cov ./pkg/...
13-
- $GOPATH/bin/goveralls -coverprofile=profile.cov -service=travis-ci
12+
#- go test -covermode=count -coverprofile=profile.cov ./pkg/...
13+
#- $GOPATH/bin/goveralls -coverprofile=profile.cov -service=travis-ci
1414
- make verify
1515
- make smb-windows
1616
- make container

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 = github.com/csi-driver/csi-driver-smb
15+
PKG = github.com/kubernetes-csi/csi-driver-smb
1616
GIT_COMMIT ?= $(shell git rev-parse HEAD)
1717
REGISTRY ?= andyzhangx
1818
REGISTRY_NAME = $(shell echo $(REGISTRY) | sed "s/.azurecr.io//g")

deploy/example/e2e_usage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ kubectl create secret generic smbcreds --from-literal username=USERNAME --from-l
77
```
88
> add `--from-literal domain=DOMAINNAME` for domain support
99
10-
- Create an smb CSI PV, download [`pv-smb-csi.yaml`](https://raw.githubusercontent.com/csi-driver/csi-driver-smb/master/deploy/example/pv-smb-csi.yaml) file and edit `source` in `volumeAttributes`
10+
- Create an smb CSI PV, download [`pv-smb-csi.yaml`](https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/deploy/example/pv-smb-csi.yaml) file and edit `source` in `volumeAttributes`
1111
```yaml
1212
apiVersion: v1
1313
kind: PersistentVolume
@@ -40,7 +40,7 @@ kubectl create -f pv-smb-csi.yaml
4040

4141
- Create a PVC
4242
```console
43-
kubectl create -f https://raw.githubusercontent.com/csi-driver/csi-driver-smb/master/deploy/example/pvc-smb-csi-static.yaml
43+
kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/deploy/example/pvc-smb-csi-static.yaml
4444
```
4545

4646
#### 2. validate PVC status and create an nginx pod
@@ -51,7 +51,7 @@ watch kubectl describe pvc pvc-smb
5151

5252
- create a pod with smb CSI PVC
5353
```console
54-
kubectl create -f https://raw.githubusercontent.com/csi-driver/csi-driver-smb/master/deploy/example/nginx-pod-smb.yaml
54+
kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/deploy/example/nginx-pod-smb.yaml
5555
```
5656

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

deploy/example/windows/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ CSI on Windows support is an alpha feature since Kubernetes v1.18, refer to [Win
1010

1111
## Install CSI Driver
1212
```console
13-
curl -skSL https://raw.githubusercontent.com/csi-driver/csi-driver-smb/master/deploy/install-driver.sh | bash -s master,windows --
13+
curl -skSL https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/deploy/install-driver.sh | bash -s master,windows --
1414
```
1515

1616
## Deploy a Windows pod with PVC mount
1717

1818
### Create Windows pod
1919

2020
```
21-
kubectl apply -f https://raw.githubusercontent.com/csi-driver/csi-driver-smb/master/deploy/example/windows/statefulset.yaml
21+
kubectl apply -f https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/deploy/example/windows/statefulset.yaml
2222
```
2323

2424
### Enter pod container to do validation

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/csi-driver/csi-driver-smb/master/deploy"
24+
repo="https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/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/csi-driver/csi-driver-smb/master/deploy"
24+
repo="https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/deploy"
2525
if [[ "$#" -gt 1 ]]; then
2626
if [[ "$2" == *"local"* ]]; then
2727
echo "use local deploy"

docs/csi-dev.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
- Clone repo
55
```console
66
$ mkdir -p $GOPATH/src/sigs.k8s.io/
7-
$ git clone https://github.com/csi-driver/csi-driver-smb $GOPATH/src/github.com/csi-driver/csi-driver-smb
7+
$ git clone https://github.com/kubernetes-csi/csi-driver-smb $GOPATH/src/github.com/kubernetes-csi/csi-driver-smb
88
```
99

1010
- Build CSI driver
1111
```console
12-
$ cd $GOPATH/src/github.com/csi-driver/csi-driver-smb
12+
$ cd $GOPATH/src/github.com/kubernetes-csi/csi-driver-smb
1313
$ make
1414
```
1515

@@ -31,7 +31,7 @@ $ make build
3131

3232
#### Start CSI driver locally
3333
```console
34-
$ cd $GOPATH/src/github.com/csi-driver/csi-driver-smb
34+
$ cd $GOPATH/src/github.com/kubernetes-csi/csi-driver-smb
3535
$ ./_output/smbplugin --endpoint tcp://127.0.0.1:10000 --nodeid CSINode -v=5 &
3636
```
3737

@@ -83,9 +83,9 @@ make container
8383
make push-latest
8484
```
8585

86-
- Replace `andyzhangx/smb-csi:latest` in [`csi-smb-controller.yaml`](https://github.com/csi-driver/csi-driver-smb/blob/master/deploy/csi-smb-controller.yaml) and [`csi-smb-node.yaml`](https://github.com/csi-driver/csi-driver-smb/blob/master/deploy/csi-smb-node.yaml) with above dockerhub image urls and then follow [install CSI driver master version](https://github.com/csi-driver/csi-driver-smb/blob/master/docs/install-csi-driver-master.md)
86+
- Replace `andyzhangx/smb-csi:latest` in [`csi-smb-controller.yaml`](https://github.com/kubernetes-csi/csi-driver-smb/blob/master/deploy/csi-smb-controller.yaml) and [`csi-smb-node.yaml`](https://github.com/kubernetes-csi/csi-driver-smb/blob/master/deploy/csi-smb-node.yaml) with above dockerhub image urls and then follow [install CSI driver master version](https://github.com/kubernetes-csi/csi-driver-smb/blob/master/docs/install-csi-driver-master.md)
8787
```console
88-
wget -O csi-smb-node.yaml https://raw.githubusercontent.com/csi-driver/csi-driver-smb/master/deploy/csi-smb-node.yaml
88+
wget -O csi-smb-node.yaml https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/deploy/csi-smb-node.yaml
8989
# edit csi-smb-node.yaml
9090
kubectl apply -f csi-smb-node.yaml
9191
```

docs/install-csi-driver-master.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Install by kubectl
44
```console
5-
curl -skSL https://raw.githubusercontent.com/csi-driver/csi-driver-smb/master/deploy/install-driver.sh | bash -s master --
5+
curl -skSL https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/deploy/install-driver.sh | bash -s master --
66
```
77

88
- check pods status:
@@ -21,5 +21,5 @@ csi-smb-node-dr4s4 3/3 Running 0 7m4s 1
2121

2222
### clean up SMB CSI driver
2323
```console
24-
curl -skSL https://raw.githubusercontent.com/csi-driver/csi-driver-smb/master/deploy/uninstall-driver.sh | bash -s --
24+
curl -skSL https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/deploy/uninstall-driver.sh | bash -s --
2525
```

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/csi-driver/csi-driver-smb
1+
module github.com/kubernetes-csi/csi-driver-smb
22

33
go 1.13
44

pkg/smb/smb.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import (
2424
"k8s.io/klog"
2525
"k8s.io/utils/mount"
2626

27-
csicommon "github.com/csi-driver/csi-driver-smb/pkg/csi-common"
28-
"github.com/csi-driver/csi-driver-smb/pkg/mounter"
27+
csicommon "github.com/kubernetes-csi/csi-driver-smb/pkg/csi-common"
28+
"github.com/kubernetes-csi/csi-driver-smb/pkg/mounter"
2929
)
3030

3131
const (

0 commit comments

Comments
 (0)