From e561ba0854023da8172c45791723f1e3a9b08a93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hozza?= Date: Fri, 2 Feb 2024 17:40:55 +0100 Subject: [PATCH] templates/composer: set DISTRO_ALIASES for composer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set the RHEL release names without the minor version to point to the latest GA release. Set the 'rhel-10.0' to the latest RHEL-9 minor release in development, so that one can start building RHEL-10 images without referencing RHEL-9. Signed-off-by: Tomáš Hozza --- templates/composer.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/templates/composer.yml b/templates/composer.yml index e80de18ca..9adc69ba4 100644 --- a/templates/composer.yml +++ b/templates/composer.yml @@ -124,6 +124,8 @@ objects: key: dsn name: "${GLITCHTIP_DSN_NAME}" optional: true + - name: DISTRO_ALIASES + value: ${DISTRO_ALIASES} ports: - name: composer-api protocol: TCP @@ -495,3 +497,6 @@ parameters: - name: GLITCHTIP_DSN_NAME value: "composer-stage-dsn" description: Name of the secret for connecting to sentry/glitchtip + - description: Distro name aliases + name: DISTRO_ALIASES + value: "rhel-7=rhel-7.9,rhel-8=rhel-8.9,rhel-9=rhel-9.3,rhel-10.0=rhel-9.4"