From 0786d159518286a87fe96d1bcc45f99871dd0ce6 Mon Sep 17 00:00:00 2001 From: Yug Date: Thu, 22 Apr 2021 15:11:23 +0530 Subject: [PATCH] ci: pass --helm-test argument for helm tests To identify if a test runs on ceph-csi deployed via helm charts, pass --helm-test parameter with the E2E args. Signed-off-by: Yug --- mini-e2e-helm.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mini-e2e-helm.groovy b/mini-e2e-helm.groovy index 3e6383806..55f2b4c22 100644 --- a/mini-e2e-helm.groovy +++ b/mini-e2e-helm.groovy @@ -177,7 +177,7 @@ node('cico-workspace') { } stage('run e2e') { timeout(time: 120, unit: 'MINUTES') { - ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && make run-e2e NAMESPACE='${namespace}' E2E_ARGS='--deploy-cephfs=false --deploy-rbd=false'" + ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && make run-e2e NAMESPACE='${namespace}' E2E_ARGS='--deploy-cephfs=false --deploy-rbd=false --helm-test=true'" } } stage('cleanup ceph-csi deployment') {