From: Matan Breizman Date: Thu, 12 Jun 2025 08:29:29 +0000 (+0000) Subject: container: update crimson flavors X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=425b6dac14d9494d8de96ca7231d0a5fb77d319c;p=ceph.git container: update crimson flavors Signed-off-by: Matan Breizman --- diff --git a/container/Containerfile b/container/Containerfile index de4a82cac384..7eb959236511 100644 --- a/container/Containerfile +++ b/container/Containerfile @@ -144,7 +144,7 @@ rbd-mirror" \ >> packages.txt # Optional crimson package(s) -RUN if [ "${OSD_FLAVOR}" == "crimson" ]; then \ +RUN if [[ "${OSD_FLAVOR}" == "crimson-debug" || "${OSD_FLAVOR}" == "crimson-release" ]]; then \ echo "ceph-crimson-osd" >> packages.txt ; \ fi diff --git a/container/build.sh b/container/build.sh index 00c37682b967..ca0a5604d82b 100755 --- a/container/build.sh +++ b/container/build.sh @@ -174,7 +174,7 @@ if [[ ${CI_CONTAINER} == "true" ]] ; then podman tag ${image_id} ${branch_repo_tag} podman tag ${image_id} ${sha1_repo_tag} - if [[ ${FLAVOR} == "crimson" && ${ARCH} == "x86_64" ]] ; then + if [[ (${FLAVOR} == "crimson-debug" || ${FLAVOR} == "crimson-release") && ${ARCH} == "x86_64" ]] ; then sha1_flavor_repo_tag=${sha1_repo_tag}-${FLAVOR} podman tag ${image_id} ${sha1_flavor_repo_tag} if [[ -z "${NO_PUSH}" ]] ; then