From 92723634074d2254df985650bfcc3c5deaa2257b Mon Sep 17 00:00:00 2001 From: Gustavo Lira Date: Fri, 29 May 2026 12:16:38 -0300 Subject: [PATCH 1/5] test(ci): pin RHDH 1.10 RC image (1.10-132) in showcase value files [skip-build] Point values_showcase.yaml and values_showcase-rbac.yaml at the RHDH 1.10 RC image quay.io/rhdh/rhdh-hub-rhel9:1.10-132 for release-1.10 e2e testing. Note: CI may override the image via --set upstream.backstage.image.* (IMAGE_REGISTRY/IMAGE_REPO/TAG_NAME) depending on the job. Co-Authored-By: Claude Sonnet 4.6 --- .ci/pipelines/value_files/values_showcase-rbac.yaml | 6 +++++- .ci/pipelines/value_files/values_showcase.yaml | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.ci/pipelines/value_files/values_showcase-rbac.yaml b/.ci/pipelines/value_files/values_showcase-rbac.yaml index 09f0e748ef..f3dc1a14b2 100644 --- a/.ci/pipelines/value_files/values_showcase-rbac.yaml +++ b/.ci/pipelines/value_files/values_showcase-rbac.yaml @@ -149,7 +149,11 @@ upstream: cert: $file: /opt/app-root/src/postgres-crt.pem image: - # Note: registry, repository and tag are set via --set flags in helm upgrade -i commands + # Pinned to RHDH 1.10 RC image for release-1.10 testing. + # Note: CI may still override these via --set upstream.backstage.image.* (IMAGE_REGISTRY/IMAGE_REPO/TAG_NAME). + registry: quay.io + repository: rhdh/rhdh-hub-rhel9 + tag: "1.10-132" pullPolicy: Always startupProbe: diff --git a/.ci/pipelines/value_files/values_showcase.yaml b/.ci/pipelines/value_files/values_showcase.yaml index 5aa5ffc8fc..4aa02df47f 100644 --- a/.ci/pipelines/value_files/values_showcase.yaml +++ b/.ci/pipelines/value_files/values_showcase.yaml @@ -133,7 +133,11 @@ upstream: token: test-token subject: test-subject image: - # Note: registry, repository and tag are set via --set flags in helm upgrade -i commands + # Pinned to RHDH 1.10 RC image for release-1.10 testing. + # Note: CI may still override these via --set upstream.backstage.image.* (IMAGE_REGISTRY/IMAGE_REPO/TAG_NAME). + registry: quay.io + repository: rhdh/rhdh-hub-rhel9 + tag: "1.10-132" pullPolicy: Always extraEnvVars: From 2dd6dc05f16a5bc5315ec187f59ec2bca1319a0c Mon Sep 17 00:00:00 2001 From: Gustavo Lira Date: Fri, 29 May 2026 12:25:11 -0300 Subject: [PATCH 2/5] test(ci): force RHDH 1.10 RC image (1.10-132) via env_variables.sh [skip-build] Override IMAGE_REGISTRY/IMAGE_REPO/TAG_NAME in env_variables.sh to force the release-1.10 e2e jobs to deploy quay.io/rhdh/rhdh-hub-rhel9:1.10-132. helm::get_image_params() (lib/helm.sh) injects these via --set upstream.backstage.image.*, which overrides value files. Revert this block once RC testing is complete. Co-Authored-By: Claude Sonnet 4.6 --- .ci/pipelines/env_variables.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.ci/pipelines/env_variables.sh b/.ci/pipelines/env_variables.sh index f018f4c9b4..67aad32e7a 100755 --- a/.ci/pipelines/env_variables.sh +++ b/.ci/pipelines/env_variables.sh @@ -70,6 +70,16 @@ if [[ -n "${CATALOG_INDEX_IMAGE}" ]]; then unset _CI_WITHOUT_TAG fi +# TEMPORARY (RHDH 1.10 RC validation): force the release-1.10 e2e jobs to deploy the +# RHDH 1.10 RC image quay.io/rhdh/rhdh-hub-rhel9:1.10-132. +# helm::get_image_params() (lib/helm.sh) injects IMAGE_REGISTRY/IMAGE_REPO/TAG_NAME via +# `--set upstream.backstage.image.*`, which overrides the value files, so the image must be +# forced here to take effect. Revert this block once RC testing is complete. +IMAGE_REGISTRY="quay.io" +IMAGE_REPO="rhdh/rhdh-hub-rhel9" +QUAY_REPO="${IMAGE_REPO}" +TAG_NAME="1.10-132" + # ============================================================================= # Release and Namespace Configuration # These can be overridden by CI environment or local configuration From 04a1695d67fc7f1ae5d9722eaa95b77465bb62af Mon Sep 17 00:00:00 2001 From: Gustavo Lira e Silva Date: Thu, 11 Jun 2026 14:57:48 -0300 Subject: [PATCH 3/5] Update values_showcase-rbac.yaml --- .ci/pipelines/value_files/values_showcase-rbac.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/pipelines/value_files/values_showcase-rbac.yaml b/.ci/pipelines/value_files/values_showcase-rbac.yaml index f3dc1a14b2..44c230226c 100644 --- a/.ci/pipelines/value_files/values_showcase-rbac.yaml +++ b/.ci/pipelines/value_files/values_showcase-rbac.yaml @@ -153,7 +153,7 @@ upstream: # Note: CI may still override these via --set upstream.backstage.image.* (IMAGE_REGISTRY/IMAGE_REPO/TAG_NAME). registry: quay.io repository: rhdh/rhdh-hub-rhel9 - tag: "1.10-132" + tag: "1.10-135" pullPolicy: Always startupProbe: From e979ab48b37e5d09bfd437789f4b9887fce073a6 Mon Sep 17 00:00:00 2001 From: Gustavo Lira e Silva Date: Thu, 11 Jun 2026 14:58:15 -0300 Subject: [PATCH 4/5] Update values_showcase.yaml --- .ci/pipelines/value_files/values_showcase.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/pipelines/value_files/values_showcase.yaml b/.ci/pipelines/value_files/values_showcase.yaml index 4aa02df47f..df57fdb296 100644 --- a/.ci/pipelines/value_files/values_showcase.yaml +++ b/.ci/pipelines/value_files/values_showcase.yaml @@ -137,7 +137,7 @@ upstream: # Note: CI may still override these via --set upstream.backstage.image.* (IMAGE_REGISTRY/IMAGE_REPO/TAG_NAME). registry: quay.io repository: rhdh/rhdh-hub-rhel9 - tag: "1.10-132" + tag: "1.10-135" pullPolicy: Always extraEnvVars: From b9466af82616d09eafa9827692afb0006a00920b Mon Sep 17 00:00:00 2001 From: Gustavo Lira e Silva Date: Thu, 11 Jun 2026 14:58:43 -0300 Subject: [PATCH 5/5] Update TAG_NAME to version 1.10-135 --- .ci/pipelines/env_variables.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/pipelines/env_variables.sh b/.ci/pipelines/env_variables.sh index 67aad32e7a..bfe4456850 100755 --- a/.ci/pipelines/env_variables.sh +++ b/.ci/pipelines/env_variables.sh @@ -78,7 +78,7 @@ fi IMAGE_REGISTRY="quay.io" IMAGE_REPO="rhdh/rhdh-hub-rhel9" QUAY_REPO="${IMAGE_REPO}" -TAG_NAME="1.10-132" +TAG_NAME="1.10-135" # ============================================================================= # Release and Namespace Configuration