From e614cd8a2a86284ce6f94aca90a039ac0bc0f9f7 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 5 Jun 2024 14:15:29 +0200 Subject: [PATCH] update push_ceph_imgs() function `stream8` is hardcoded, let's use the same logic as in `build_ceph_imgs()`. Also, do not try to push `daemon` images as we no longer build them by default. Signed-off-by: Guillaume Abrioux --- contrib/build-push-ceph-container-imgs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/build-push-ceph-container-imgs.sh b/contrib/build-push-ceph-container-imgs.sh index 2b5496833..f6acb3427 100644 --- a/contrib/build-push-ceph-container-imgs.sh +++ b/contrib/build-push-ceph-container-imgs.sh @@ -267,7 +267,7 @@ function build_ceph_imgs { declare -F push_ceph_imgs || function push_ceph_imgs { echo "Push Ceph container image(s) to the registry" - make BASEOS_TAG=stream8 RELEASE="$RELEASE" BASEOS_REGISTRY="${CONTAINER_REPO_HOSTNAME}/centos" BASEOS_REPO=centos TAG_REGISTRY="${CONTAINER_REPO_ORGANIZATION}" push.parallel + make BASEOS_TAG=stream"${CENTOS_RELEASE}" RELEASE="$RELEASE" BASEOS_REGISTRY="${CONTAINER_REPO_HOSTNAME}/centos" BASEOS_REPO=centos TAG_REGISTRY="${CONTAINER_REPO_ORGANIZATION}" IMAGES_TO_BUILD="daemon-base demo" push.parallel } declare -F push_ceph_imgs_latest ||