Skip to content

Commit dd7bc52

Browse files
authored
Merge pull request #674 from andyzhangx/external-1.24.0
test: run k8s 1.24 external e2e test
2 parents 827f159 + 960b084 commit dd7bc52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/external-e2e/run.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ install_ginkgo () {
2626

2727
setup_e2e_binaries() {
2828
# download k8s external e2e binary
29-
curl -sL https://storage.googleapis.com/kubernetes-release/release/v1.23.0/kubernetes-test-linux-amd64.tar.gz --output e2e-tests.tar.gz
29+
curl -sL https://storage.googleapis.com/kubernetes-release/release/v1.24.0/kubernetes-test-linux-amd64.tar.gz --output e2e-tests.tar.gz
3030
tar -xvf e2e-tests.tar.gz && rm e2e-tests.tar.gz
3131

3232
export EXTRA_HELM_OPTIONS="--set driver.name=$DRIVER.csi.azure.com --set controller.name=csi-$DRIVER-controller --set node.name=csi-$DRIVER-node --set driver.azureGoSDKLogLevel=INFO"
@@ -61,7 +61,7 @@ if [ ! -z ${EXTERNAL_E2E_TEST_BLOBFUSE} ]; then
6161
# achieve close-to-open cache consistency like in NFSv3
6262
sed -i 's/file-cache-timeout-in-seconds=120/file-cache-timeout-in-seconds=0/g' /tmp/csi/storageclass.yaml
6363
ginkgo -p --progress --v -focus="External.Storage.*$DRIVER.csi.azure.com" \
64-
-skip='\[Disruptive\]|allow exec of files on the volume|unmount after the subpath directory is deleted|should concurrently access the single volume from pods on different node' kubernetes/test/bin/e2e.test -- \
64+
-skip='\[Disruptive\]|allow exec of files on the volume|unmount after the subpath directory is deleted|should concurrently access the single volume from pods on different node|pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents|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 -- \
6565
-storage.testdriver=$PROJECT_ROOT/test/external-e2e/testdriver-blobfuse.yaml \
6666
--kubeconfig=$KUBECONFIG
6767
fi
@@ -70,7 +70,7 @@ if [ ! -z ${EXTERNAL_E2E_TEST_NFS} ]; then
7070
echo "begin to run NFSv3 tests ...."
7171
cp deploy/example/storageclass-blob-nfs.yaml /tmp/csi/storageclass.yaml
7272
ginkgo -p --progress --v -focus="External.Storage.*$DRIVER.csi.azure.com" \
73-
-skip='\[Disruptive\]|pod created with an initial fsgroup, volume contents ownership changed in first pod, new pod with same fsgroup skips ownership changes to the volume contents' kubernetes/test/bin/e2e.test -- \
73+
-skip='\[Disruptive\]|should concurrently access the single volume from pods on different node|pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents|should provision storage with any volume data source|should mount multiple PV pointing to the same storage on the same node|should access to two volumes with the same volume mode and retain data across pod recreation on different node' kubernetes/test/bin/e2e.test -- \
7474
-storage.testdriver=$PROJECT_ROOT/test/external-e2e/testdriver-nfs.yaml \
7575
--kubeconfig=$KUBECONFIG
7676
fi

0 commit comments

Comments
 (0)