From b4fcd2b585667436575996412aa8ae90cc3e5da7 Mon Sep 17 00:00:00 2001 From: Yug Date: Tue, 6 Jul 2021 14:30:00 +0530 Subject: [PATCH] ci: fix helm job failure Due to the quotes, the job is accepting both --deploy-sc and --deploy-secret as as single parameter. Removing quotes to help it consider them as diferent. 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 143831f54..5b5d60623 100644 --- a/mini-e2e-helm.groovy +++ b/mini-e2e-helm.groovy @@ -176,7 +176,7 @@ node('cico-workspace') { } ssh 'cd /opt/build/go/src/github.com/ceph/ceph-csi && ./scripts/install-helm.sh up' ssh "kubectl create namespace '${namespace}'" - ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && ./scripts/install-helm.sh install-cephcsi --namespace '${namespace}' '${deploy_param}'" + ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && ./scripts/install-helm.sh install-cephcsi --namespace '${namespace}' ${deploy_param}" } } stage('run e2e') {