From 425b6dac14d9494d8de96ca7231d0a5fb77d319c Mon Sep 17 00:00:00 2001 From: Matan Breizman Date: Thu, 12 Jun 2025 08:29:29 +0000 Subject: [PATCH] container: update crimson flavors Signed-off-by: Matan Breizman --- container/Containerfile | 2 +- container/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/container/Containerfile b/container/Containerfile index de4a82cac3846..7eb9592365115 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 00c37682b967d..ca0a5604d82b2 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 -- 2.39.5