From 5f3b17cf1bc76b046a9a14762b5be21ccb257e6f Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Wed, 8 Jan 2025 13:20:46 +0100 Subject: [PATCH] Add tag for RHEL10 that is 'el10' Signed-off-by: Petr "Stone" Hracek --- README.md | 2 +- test-lib-remote-openshift.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b4888c9..b6196f3 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ Dockerfile for the scripts to know which versions to build. `OS` OS version you want to build the images for. Currently the scripts are able to build for -centos (default), c9s, c10s, rhel8, rhel9, and fedora. +centos (default), c9s, c10s, rhel8, rhel9, rhel10, and fedora. `SKIP_SQUASH` When set to 1 the build script will skip the squash phase of the build. diff --git a/test-lib-remote-openshift.sh b/test-lib-remote-openshift.sh index 8b51cbe..551748b 100644 --- a/test-lib-remote-openshift.sh +++ b/test-lib-remote-openshift.sh @@ -86,6 +86,8 @@ function ct_os_tag_image_for_cvp() { tag="-el8" elif [ "${OS}" == "rhel9" ]; then tag="-el9" + elif [ "${OS}" == "rhel10" ]; then + tag="-el10" else echo "Only RHEL images are supported." return