From 432ff087585a03f99a39d3e7f1b7ad94c2eb6d6b Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Wed, 30 Jun 2021 14:20:44 +0200 Subject: [PATCH] ci: skip Ephemeral-volume kubernetes external-storage tests Ceph-CSI does not suport (inline) Ephemeral-volumes. Testing this will continue to fail. The driver configuration can not be used to disable testing of this feature, so it is done by skipping the tests by pattern matching. Updates: #2017 Signed-off-by: Niels de Vos --- run-k8s-external-storage-e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-k8s-external-storage-e2e.sh b/run-k8s-external-storage-e2e.sh index fe4a834f6..accf8bf5b 100755 --- a/run-k8s-external-storage-e2e.sh +++ b/run-k8s-external-storage-e2e.sh @@ -23,7 +23,7 @@ for driver in /opt/build/go/src/github.com/ceph/ceph-csi/scripts/k8s-storage/dri do kubernetes/test/bin/ginkgo \ -focus="External.Storage.*.csi.ceph.com" \ - -skip='\[Feature:|\[Disruptive\]' \ + -skip='\[Feature:|\[Disruptive\]|Generic Ephemeral-volume' \ kubernetes/test/bin/e2e.test \ -- \ -storage.testdriver="${driver}"