File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,13 @@ install_ginkgo () {
2424}
2525
2626setup_e2e_binaries () {
27- # download k8s external e2e binary for kubernetes v1.19
28- curl -sL https://storage.googleapis.com/kubernetes-release/release/v1.19 .0/kubernetes-test-linux-amd64.tar.gz --output e2e-tests.tar.gz
27+ # download k8s external e2e binary
28+ curl -sL https://storage.googleapis.com/kubernetes-release/release/v1.21 .0/kubernetes-test-linux-amd64.tar.gz --output e2e-tests.tar.gz
2929 tar -xvf e2e-tests.tar.gz && rm e2e-tests.tar.gz
3030
31- # install the csi driver smb
32- mkdir -p /tmp/csi-smb && cp deploy/example/storageclass-smb.yaml /tmp/csi-smb/storageclass.yaml
31+ # install csi driver smb
32+ mkdir -p /tmp/csi && cp deploy/example/storageclass-smb.yaml /tmp/csi/storageclass.yaml
33+ sed -i ' s/Retain/Delete/g' /tmp/csi/storageclass.yaml
3334 make e2e-bootstrap
3435 make install-smb-provisioner
3536 make create-metrics-svc
Original file line number Diff line number Diff line change 33
44ShortName : smb
55StorageClass :
6- FromFile : /tmp/csi-smb /storageclass.yaml
6+ FromFile : /tmp/csi/storageclass.yaml
77DriverInfo :
88 Name : smb.csi.k8s.io
99 Capabilities :
You can’t perform that action at this time.
0 commit comments