From ea281737fef12c452a84d47fe8c2fc04522035da Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Tue, 17 Nov 2020 11:19:51 +0100 Subject: [PATCH] ci: ssh into the bare-metal machine Missed the CICO_NODE to ssh into, that has now been added too. Signed-off-by: Niels de Vos --- mini-e2e.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mini-e2e.groovy b/mini-e2e.groovy index f023d74a6..aaf229037 100644 --- a/mini-e2e.groovy +++ b/mini-e2e.groovy @@ -97,7 +97,7 @@ node('cico-workspace') { } stage('pull base container images') { def base_image = sh( - script: 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no "source /opt/build/go/src/github.com/ceph/ceph-csi/build.env && echo ${BASE_IMAGE}"', + script: 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@${CICO_NODE} "source /opt/build/go/src/github.com/ceph/ceph-csi/build.env && echo ${BASE_IMAGE}"', returnStdout: true ).trim()