From 83635a52a279a9c020a00743d446b9b1ae305575 Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Sat, 7 May 2022 14:13:57 +0000 Subject: [PATCH 1/3] test: run k8s 1.24 external e2e test --- test/external-e2e/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/external-e2e/run.sh b/test/external-e2e/run.sh index 68a92c08f..6fa676a18 100755 --- a/test/external-e2e/run.sh +++ b/test/external-e2e/run.sh @@ -26,7 +26,7 @@ install_ginkgo () { setup_e2e_binaries() { # 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 # test on alternative driver name From 86358ae25153d09312a89209bcf71641425edb28 Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Sat, 7 May 2022 15:02:40 +0000 Subject: [PATCH 2/3] test: skip two external e2e tests --- test/external-e2e/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/external-e2e/run.sh b/test/external-e2e/run.sh index 6fa676a18..b79a474fa 100755 --- a/test/external-e2e/run.sh +++ b/test/external-e2e/run.sh @@ -52,6 +52,6 @@ trap print_logs EXIT mkdir -p /tmp/csi cp deploy/example/storageclass-smb.yaml /tmp/csi/storageclass.yaml ginkgo -p --progress --v -focus='External.Storage' \ - -skip='\[Disruptive\]|support two pods which share the same volume' kubernetes/test/bin/e2e.test -- \ + -skip='\[Disruptive\]|support two pods which share the same volume||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 \ --kubeconfig=$KUBECONFIG From a2828245ddb71dcda97d664a6509ed9ce9dda128 Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Sun, 8 May 2022 01:08:43 +0000 Subject: [PATCH 3/3] test: enable one external e2e test --- test/external-e2e/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/external-e2e/run.sh b/test/external-e2e/run.sh index b79a474fa..032da0920 100755 --- a/test/external-e2e/run.sh +++ b/test/external-e2e/run.sh @@ -52,6 +52,6 @@ trap print_logs EXIT mkdir -p /tmp/csi cp deploy/example/storageclass-smb.yaml /tmp/csi/storageclass.yaml ginkgo -p --progress --v -focus='External.Storage' \ - -skip='\[Disruptive\]|support two pods which share the same volume||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 -- \ + -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 \ --kubeconfig=$KUBECONFIG