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 <ndevos@redhat.com>
This commit is contained in:
Niels de Vos 2020-11-17 14:14:14 +01:00 committed by mergify[bot]
parent e9523b3ace
commit 9887a08377

View File

@ -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') {