Merge pull request #479 from andyzhangx/external-1.24.0
test: run k8s 1.24 external e2e test
This commit is contained in:
commit
3ca42a3c52
|
|
@ -26,7 +26,7 @@ install_ginkgo () {
|
||||||
|
|
||||||
setup_e2e_binaries() {
|
setup_e2e_binaries() {
|
||||||
# download k8s external e2e binary
|
# download k8s external e2e binary
|
||||||
curl -sL https://storage.googleapis.com/kubernetes-release/release/v1.23.5/kubernetes-test-linux-amd64.tar.gz --output e2e-tests.tar.gz
|
curl -sL https://storage.googleapis.com/kubernetes-release/release/v1.24.0/kubernetes-test-linux-amd64.tar.gz --output e2e-tests.tar.gz
|
||||||
tar -xvf e2e-tests.tar.gz && rm e2e-tests.tar.gz
|
tar -xvf e2e-tests.tar.gz && rm e2e-tests.tar.gz
|
||||||
|
|
||||||
# test on alternative driver name
|
# test on alternative driver name
|
||||||
|
|
@ -52,6 +52,6 @@ trap print_logs EXIT
|
||||||
mkdir -p /tmp/csi
|
mkdir -p /tmp/csi
|
||||||
cp deploy/example/storageclass-smb.yaml /tmp/csi/storageclass.yaml
|
cp deploy/example/storageclass-smb.yaml /tmp/csi/storageclass.yaml
|
||||||
ginkgo -p --progress --v -focus='External.Storage' \
|
ginkgo -p --progress --v -focus='External.Storage' \
|
||||||
-skip='\[Disruptive\]|support two pods which share the same volume' kubernetes/test/bin/e2e.test -- \
|
-skip='\[Disruptive\]||should provision storage with any volume data source|should mount multiple PV pointing to the same storage on the same node' kubernetes/test/bin/e2e.test -- \
|
||||||
-storage.testdriver=$PROJECT_ROOT/test/external-e2e/testdriver.yaml \
|
-storage.testdriver=$PROJECT_ROOT/test/external-e2e/testdriver.yaml \
|
||||||
--kubeconfig=$KUBECONFIG
|
--kubeconfig=$KUBECONFIG
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue