From 9887a08377be49fe803937b29b5989da4bd52c80 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Tue, 17 Nov 2020 14:14:14 +0100 Subject: [PATCH] ci: the image in the CI registry is called "ceph-csi" The image is named after the project, so "ceph-csi". Signed-off-by: Niels de Vos --- mini-e2e.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mini-e2e.groovy b/mini-e2e.groovy index 82a4987b9..9e7550a34 100644 --- a/mini-e2e.groovy +++ b/mini-e2e.groovy @@ -108,13 +108,13 @@ node('cico-workspace') { // base_image is like ceph/ceph:v15 ssh "podman pull --authfile=~/.podman-auth.json ${ci_registry}/${base_image} && podman tag ${ci_registry}/${base_image} ${base_image}" // cephcsi:devel is used with 'make containerized-build' - ssh "podman pull --authfile=~/.podman-auth.json ${ci_registry}/cephcsi:devel" + ssh "podman pull --authfile=~/.podman-auth.json ${ci_registry}/ceph-csi:devel" } stage('build artifacts') { // build container image ssh 'cd /opt/build/go/src/github.com/ceph/ceph-csi && make image-cephcsi GOARCH=amd64 CONTAINER_CMD=podman' // build e2e.test executable - ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && make containerized-build CONTAINER_CMD=podman TARGET=e2e.test ENV_CSI_IMAGE_NAME=${ci_registry}/cephcsi USE_PULLED_IMAGE=yes" + ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && make containerized-build CONTAINER_CMD=podman TARGET=e2e.test ENV_CSI_IMAGE_NAME=${ci_registry}/ceph-csi USE_PULLED_IMAGE=yes" } stage("deploy k8s-${k8s_version} and rook") { timeout(time: 30, unit: 'MINUTES') {