diff options
author | Dan Mick <dan.mick@redhat.com> | 2025-01-03 04:15:54 +0100 |
---|---|---|
committer | Dan Mick <dan.mick@redhat.com> | 2025-01-06 22:06:35 +0100 |
commit | 3075894aab604ffdfb81d3eb1af675cdbc6aa776 (patch) | |
tree | 9bbd077b07bea04e0f2ce9148094c86685c80c9d | |
parent | Merge pull request #59980 from kchheda3/wip-fix-v1-v2-notification (diff) | |
download | ceph-3075894aab604ffdfb81d3eb1af675cdbc6aa776.tar.xz ceph-3075894aab604ffdfb81d3eb1af675cdbc6aa776.zip |
container/Containerfile: replace CEPH_VERSION var for backward compat
CEPH_VERSION used to be present in the env to hold the ref. Other projects
relied on this. Make life easier for them.
Signed-off-by: Dan Mick <dan.mick@redhat.com>
-rw-r--r-- | container/Containerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/container/Containerfile b/container/Containerfile index c954ebed1be..9a5a88e76a1 100644 --- a/container/Containerfile +++ b/container/Containerfile @@ -212,6 +212,7 @@ RUN rpm -q $(cat packages.txt) && rm -f /var/lib/rpm/__db* && rm -f *packages.tx # Set some envs in the container for quickly inspecting details about the build at runtime ENV CEPH_IS_DEVEL="${CI_CONTAINER}" \ CEPH_REF="${CEPH_REF}" \ + CEPH_VERSION="${CEPH_REF}" \ CEPH_OSD_FLAVOR="${OSD_FLAVOR}" \ FROM_IMAGE="${FROM_IMAGE}" |