diff --git a/mini-e2e-helm.groovy b/mini-e2e-helm.groovy index 67c23b205..3e6383806 100644 --- a/mini-e2e-helm.groovy +++ b/mini-e2e-helm.groovy @@ -172,7 +172,7 @@ node('cico-workspace') { timeout(time: 30, unit: 'MINUTES') { 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}'" + ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && ./scripts/install-helm.sh install-cephcsi --namespace '${namespace}'" } } stage('run e2e') { @@ -182,7 +182,7 @@ node('cico-workspace') { } stage('cleanup ceph-csi deployment') { timeout(time: 30, unit: 'MINUTES') { - ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && ./scripts/install-helm.sh cleanup-cephcsi '${namespace}'" + ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && ./scripts/install-helm.sh cleanup-cephcsi --namespace '${namespace}'" ssh 'cd /opt/build/go/src/github.com/ceph/ceph-csi && ./scripts/install-helm.sh clean' ssh "kubectl delete namespace '${namespace}'" }