From a2f44dc1eb6da53a21952a1d9668b1a972ab42a3 Mon Sep 17 00:00:00 2001 From: Piotr Godowski Date: Mon, 24 Aug 2026 15:21:39 +0200 Subject: [PATCH 01/10] Bootstrap v1.2.0-patch1 content --- .../patches/v120-patch1/apply-v120-patch1.sh | 176 ++++++++++++++++++ .../v120-patch1-image-manifest.yaml | 6 + 2 files changed, 182 insertions(+) create mode 100644 scripts/patches/v120-patch1/apply-v120-patch1.sh create mode 100644 scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml diff --git a/scripts/patches/v120-patch1/apply-v120-patch1.sh b/scripts/patches/v120-patch1/apply-v120-patch1.sh new file mode 100644 index 0000000..c158714 --- /dev/null +++ b/scripts/patches/v120-patch1/apply-v120-patch1.sh @@ -0,0 +1,176 @@ +#!/usr/bin/env bash + +set -e + +INSTALL_FOLDER=$1 +MANIFEST=$2 +export WORKSPACE_DIR="./v120-patch1-mirror-workspace" +export VALUES_FILE_DYNAMIC="${INSTALL_FOLDER}/partner-install/mcsp/resources/charts/bootstrap-cd-pipeline/values-dynamic.yaml" +export SECRETS_FILE="${INSTALL_FOLDER}/partner-install/mcsp/resources/charts/bootstrap-cd-pipeline/secrets.yaml" + +# Color codes for output +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +NC='\033[0m' # No Color + +function main() { + + # need to validate parameters + if [ -z "$INSTALL_FOLDER" ]; then + log_error "Install folder not specified. Please rerun script in format: ./apply-v120-patch1.sh " + exit 1 + fi + if [ ! -d "$INSTALL_FOLDER" ]; then + log_error "Error: Install folder $INSTALL_FOLDER does not exist." + exit 1 + fi + + if [ -z "$MANIFEST" ]; then + log_error "Manifest file not specified. Please rerun script in format: ./apply-v120-patch1.sh " + exit 1 + fi + if [ ! -f "$MANIFEST" ]; then + log_error "Error: Manifest file $MANIFEST does not exist." + exit 1 + fi + if [ ! -f "$INSTALL_FOLDER/partner-install/mcsp/resources/charts/bootstrap-cd-pipeline/template.env" ]; then + log_error "Make sure the install folder path points to the SovereignCore directory and re-run" + exit 1 + fi + log_info "Validations passed" + + #source necessary template.env values + source ${INSTALL_FOLDER}/partner-install/mcsp/resources/charts/bootstrap-cd-pipeline/template.env + + # extract variables from values.yaml and secrets.yaml + QUAY_REGISTRY=$(yq -r '.registry.domain // ""' "$VALUES_FILE_DYNAMIC") + QUAY_ORGANIZATION="sovcloud" + CLUSTER_NAME=$(yq -r '.clusterName // ""' "${INSTALL_FOLDER}/config/global.yaml") + + ROOT_DIR=$(yq '.workingDir' "${INSTALL_FOLDER}/config/global.yaml") + export KUBECONFIG="${ROOT_DIR}/ocp-cluster/auth/kubeconfig" + + # need to mirror images based on image manifest file + # call the mirror.sh mirror_images function, directly point it to the manifest file + if mirror_images "$MANIFEST"; then + log_info "Successfully mirrored images from $MANIFEST" + else + log_error "Failed to mirror images from $MANIFEST" + exit 1 + fi + log_info "done mirroring images" + + sync_argo ${CLUSTER_NAME} + + # run cuga argo refresh commands + refresh_argo ${CLUSTER_NAME} +} + +refresh_argo() { + local cluster_name=$1 + + APPS=( + sovereign-ui-${cluster_name} + ) + + NS="openshift-gitops" + + local failed=0 + for app in "${APPS[@]}"; do + log_info "Refreshing $app" + if ! oc patch application.argoproj.io "$app" -n "$NS" \ + --type merge \ + -p '{"metadata":{"annotations":{"argocd.argoproj.io/refresh":"hard"}}}'; then + log_error "Failed to refresh $app" + failed=1 + continue + fi + oc annotate application.argoproj.io "$app" -n "$NS" \ + cache-buster="$(date +%s)" --overwrite + done + return $failed +} + +sync_argo() { + local cluster_name=$1 + + APPS=( + sovereign-ui-${cluster_name} + ) + + NS="openshift-gitops" + + local failed=0 + for app in "${APPS[@]}"; do + log_info "Syncing $app" + if ! oc patch application.argoproj.io "$app" -n "$NS" \ + --type merge \ + -p '{"operation":{"initiatedBy":{"username":"v120-patch1"},"sync":{"syncStrategy":{"hook":{}}}}}'; then + log_error "Failed to sync $app" + failed=1 + fi + done + return $failed +} + +mirror_images() { + local manifest_file=$1 + local manifest_name=$(basename "$manifest_file" .yaml) + + log_info "==========================================" + log_info "Mirroring images from: $manifest_file" + log_info "==========================================" + + if [ ! -f "$manifest_file" ]; then + log_error "Manifest file not found: $manifest_file" + return 1 + fi + + # Set workspace directory + local workspace_dir="${WORKSPACE_DIR:-./mirror-workspace}" + mkdir -p "$workspace_dir" + + # Get oc-mirror auth file directory + local auth_file_dir="${AUTH_FILE_DIR}" + + # Build the oc-mirror command + local target_registry="docker://${QUAY_REGISTRY}/${QUAY_ORGANIZATION}" + local workspace_path="file://$(realpath $workspace_dir)" + + log_info "Target registry: $target_registry" + log_info "Workspace: $workspace_path" + log_info "" + log_info "Running oc-mirror..." + + # Run oc-mirror + if oc-mirror --v2 --dest-tls-verify=false \ + --authfile "$auth_file_dir" \ + --config "$manifest_file" \ + --retry-times 5 \ + --retry-delay 10s \ + --workspace "$workspace_path" \ + "$target_registry"; then + log_info "✓ Successfully mirrored images from $manifest_name" + + return 0 + else + log_error "✗ Failed to mirror images from $manifest_name" + return 1 + fi +} + +# Function to print colored messages +log_info() { + echo -e "${GREEN}[INFO]${NC} $1" +} + +log_error() { + echo -e "${RED}[ERROR]${NC} $1" +} + +log_warning() { + echo -e "${YELLOW}[WARNING]${NC} $1" +} + +main "$@" diff --git a/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml new file mode 100644 index 0000000..870704b --- /dev/null +++ b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml @@ -0,0 +1,6 @@ +apiVersion: mirror.openshift.io/v2alpha1 +kind: ImageSetConfiguration +mirror: + additionalImages: + - name: icr.io/automation-saas-platform/tekton-baseimage:v0.1.7 + - name: tbd-ui-images From 162840de50ecd8fbfe3111d99e122d6b49b7ca4e Mon Sep 17 00:00:00 2001 From: Piotr Godowski Date: Mon, 24 Aug 2026 15:25:45 +0200 Subject: [PATCH 02/10] Update the UI image references Signed-off-by: Piotr Godowski --- scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml index 870704b..c1e10c1 100644 --- a/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml +++ b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml @@ -3,4 +3,6 @@ kind: ImageSetConfiguration mirror: additionalImages: - name: icr.io/automation-saas-platform/tekton-baseimage:v0.1.7 - - name: tbd-ui-images + - name: icr.io/automation-saas-platform-dev/gori-experience-apps/mspui:main-1787365235 + - name: icr.io/automation-saas-platform-dev/gori-experience-apps/accountui:main-1787365235 + - name: icr.io/automation-saas-platform-dev/gori-experience-apps/xpm:main-1787365235 From 2531b23e3dcdf18f46128caa130854f32298814e Mon Sep 17 00:00:00 2001 From: Piotr Godowski Date: Mon, 24 Aug 2026 16:36:36 +0200 Subject: [PATCH 03/10] Changing the order of the argo sync/refresh operations When we sync first and then refresh, the new image isn't detected. As a workaround, we've found that doing refresh first and then sync consistently picks up the latest image from the image registry. Signed-off-by: Piotr Godowski --- scripts/patches/v120-patch1/apply-v120-patch1.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/patches/v120-patch1/apply-v120-patch1.sh b/scripts/patches/v120-patch1/apply-v120-patch1.sh index c158714..1cd9c47 100644 --- a/scripts/patches/v120-patch1/apply-v120-patch1.sh +++ b/scripts/patches/v120-patch1/apply-v120-patch1.sh @@ -61,10 +61,11 @@ function main() { fi log_info "done mirroring images" - sync_argo ${CLUSTER_NAME} - - # run cuga argo refresh commands + # run argo refresh commands refresh_argo ${CLUSTER_NAME} + sleep 30 + + sync_argo ${CLUSTER_NAME} } refresh_argo() { From e58a426e81610cb7b672c46d8c14f83e1c95fd4d Mon Sep 17 00:00:00 2001 From: Henry Li Date: Tue, 25 Aug 2026 00:08:28 -0400 Subject: [PATCH 04/10] added acm-cuga-system, app-of-apps, and upgrade-pipelines for tekton-baseimage fix Signed-off-by: Henry Li --- scripts/patches/v120-patch1/apply-v120-patch1.sh | 4 ++++ scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml | 3 +++ 2 files changed, 7 insertions(+) diff --git a/scripts/patches/v120-patch1/apply-v120-patch1.sh b/scripts/patches/v120-patch1/apply-v120-patch1.sh index 1cd9c47..765ccdc 100644 --- a/scripts/patches/v120-patch1/apply-v120-patch1.sh +++ b/scripts/patches/v120-patch1/apply-v120-patch1.sh @@ -72,7 +72,9 @@ refresh_argo() { local cluster_name=$1 APPS=( + app-of-apps-parent-app sovereign-ui-${cluster_name} + acm-cuga-system-${cluster_name} ) NS="openshift-gitops" @@ -97,7 +99,9 @@ sync_argo() { local cluster_name=$1 APPS=( + app-of-apps-parent-app sovereign-ui-${cluster_name} + acm-cuga-system-${cluster_name} ) NS="openshift-gitops" diff --git a/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml index c1e10c1..cd08e9f 100644 --- a/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml +++ b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml @@ -6,3 +6,6 @@ mirror: - name: icr.io/automation-saas-platform-dev/gori-experience-apps/mspui:main-1787365235 - name: icr.io/automation-saas-platform-dev/gori-experience-apps/accountui:main-1787365235 - name: icr.io/automation-saas-platform-dev/gori-experience-apps/xpm:main-1787365235 + - name: icr.io/automation-saas-platform-dev/acm-cuga-system:0.3.0 + - name: icr.io/automation-saas-platform-dev/main:0.3.0 + - name: icr.io/automation-saas-platform-dev/sovereign-core-upgrade-pipelines:0.3.0 From 63576a48c4041f03319ff26896fad04b8d61b7fe Mon Sep 17 00:00:00 2001 From: Henry Li Date: Tue, 25 Aug 2026 00:26:49 -0400 Subject: [PATCH 05/10] updated to patch vault unsealer watcher deployments with new tekton-baseimage Signed-off-by: Henry Li --- scripts/patches/v120-patch1/apply-v120-patch1.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/scripts/patches/v120-patch1/apply-v120-patch1.sh b/scripts/patches/v120-patch1/apply-v120-patch1.sh index 765ccdc..1af7db4 100644 --- a/scripts/patches/v120-patch1/apply-v120-patch1.sh +++ b/scripts/patches/v120-patch1/apply-v120-patch1.sh @@ -66,6 +66,8 @@ function main() { sleep 30 sync_argo ${CLUSTER_NAME} + + update_vault_watcher } refresh_argo() { @@ -119,6 +121,20 @@ sync_argo() { return $failed } +update_vault_watcher() { + local target_registry="${QUAY_REGISTRY}/${QUAY_ORGANIZATION}" + local image_base="${target_registry}/automation-saas-platform/tekton-baseimage:v0.1.7" + local patch="{\"spec\":{\"template\":{\"spec\":{\"containers\":[{\"name\":\"watcher\",\"image\":\"${image_base}\"}]}}}}" + + log_info "Patching vault-unsealer-watcher in namespace vault-unsealer" + oc patch deployment vault-unsealer-watcher -n vault-unsealer \ + --type strategic -p "$patch" + + log_info "Patching vaultaas-unsealer-watcher in namespace vault-aas-unsealer" + oc patch deployment vaultaas-unsealer-watcher -n vault-aas-unsealer \ + --type strategic -p "$patch" +} + mirror_images() { local manifest_file=$1 local manifest_name=$(basename "$manifest_file" .yaml) From 846901635f2edf192e676f81d202b915dbf84de7 Mon Sep 17 00:00:00 2001 From: Henry Li Date: Tue, 25 Aug 2026 13:00:00 -0400 Subject: [PATCH 06/10] added aiiaas fix Signed-off-by: Henry Li --- scripts/patches/v120-patch1/apply-v120-patch1.sh | 2 ++ .../patches/v120-patch1/v120-patch1-image-manifest.yaml | 7 ++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/scripts/patches/v120-patch1/apply-v120-patch1.sh b/scripts/patches/v120-patch1/apply-v120-patch1.sh index 1af7db4..148c6c6 100644 --- a/scripts/patches/v120-patch1/apply-v120-patch1.sh +++ b/scripts/patches/v120-patch1/apply-v120-patch1.sh @@ -77,6 +77,7 @@ refresh_argo() { app-of-apps-parent-app sovereign-ui-${cluster_name} acm-cuga-system-${cluster_name} + aiiaas-${cluster_name} ) NS="openshift-gitops" @@ -104,6 +105,7 @@ sync_argo() { app-of-apps-parent-app sovereign-ui-${cluster_name} acm-cuga-system-${cluster_name} + aiiaas-${cluster_name} ) NS="openshift-gitops" diff --git a/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml index cd08e9f..d7205ca 100644 --- a/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml +++ b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml @@ -6,6 +6,7 @@ mirror: - name: icr.io/automation-saas-platform-dev/gori-experience-apps/mspui:main-1787365235 - name: icr.io/automation-saas-platform-dev/gori-experience-apps/accountui:main-1787365235 - name: icr.io/automation-saas-platform-dev/gori-experience-apps/xpm:main-1787365235 - - name: icr.io/automation-saas-platform-dev/acm-cuga-system:0.3.0 - - name: icr.io/automation-saas-platform-dev/main:0.3.0 - - name: icr.io/automation-saas-platform-dev/sovereign-core-upgrade-pipelines:0.3.0 + - name: icr.io/automation-saas-platform-dev/release-v1.2.0/acm-cuga-system:0.3.0 + - name: icr.io/automation-saas-platform-dev/release-v1.2.0/main:0.3.0 + - name: icr.io/automation-saas-platform-dev/release-v1.2.0/sovereign-core-upgrade-pipelines:0.3.0 + - name: icr.io/automation-saas-platform-dev/release-v1.2.0/aiiaas:0.3.0 From d3bcebeba58240a342859cd3cdb4e8cf465d1b11 Mon Sep 17 00:00:00 2001 From: Henry Li Date: Tue, 25 Aug 2026 17:17:49 -0400 Subject: [PATCH 07/10] added sovereign-ui helm chart to mirror manifest Signed-off-by: Henry Li --- scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml index d7205ca..76b5e69 100644 --- a/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml +++ b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml @@ -10,3 +10,4 @@ mirror: - name: icr.io/automation-saas-platform-dev/release-v1.2.0/main:0.3.0 - name: icr.io/automation-saas-platform-dev/release-v1.2.0/sovereign-core-upgrade-pipelines:0.3.0 - name: icr.io/automation-saas-platform-dev/release-v1.2.0/aiiaas:0.3.0 + - name: icr.io/automation-saas-platform-dev/release-v1.2.0/sovereign-ui:0.3.0 From 4f09a41c992aa6c123609a019a508662ab95926b Mon Sep 17 00:00:00 2001 From: Piotr Godowski Date: Wed, 26 Aug 2026 20:28:06 +0200 Subject: [PATCH 08/10] Update mirror manifest with the production images Signed-off-by: Piotr Godowski --- .../v120-patch1-image-manifest.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml index 76b5e69..330b4f0 100644 --- a/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml +++ b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml @@ -2,12 +2,12 @@ apiVersion: mirror.openshift.io/v2alpha1 kind: ImageSetConfiguration mirror: additionalImages: - - name: icr.io/automation-saas-platform/tekton-baseimage:v0.1.7 - - name: icr.io/automation-saas-platform-dev/gori-experience-apps/mspui:main-1787365235 - - name: icr.io/automation-saas-platform-dev/gori-experience-apps/accountui:main-1787365235 - - name: icr.io/automation-saas-platform-dev/gori-experience-apps/xpm:main-1787365235 - - name: icr.io/automation-saas-platform-dev/release-v1.2.0/acm-cuga-system:0.3.0 - - name: icr.io/automation-saas-platform-dev/release-v1.2.0/main:0.3.0 - - name: icr.io/automation-saas-platform-dev/release-v1.2.0/sovereign-core-upgrade-pipelines:0.3.0 - - name: icr.io/automation-saas-platform-dev/release-v1.2.0/aiiaas:0.3.0 - - name: icr.io/automation-saas-platform-dev/release-v1.2.0/sovereign-ui:0.3.0 + - name: cp.icr.io/cp/sovereign-cloud-platform/automation-saas-platform/tekton-baseimage:v0.1.7@sha256:10c922db4ea86364905883f381963570774d3666ed7eb5a7445c5c5cc74a70c9 + - name: cp.icr.io/cp/sovereign-cloud-platform/automation-saas-platform-dev/gori-experience-apps/mspui:main-1787365235@sha256:e2231e6680ca48a35fa7ab90b6f8d86860fcb903002b0d7dcb054d312228c2da + - name: cp.icr.io/cp/sovereign-cloud-platform/automation-saas-platform-dev/gori-experience-apps/accountui:main-1787365235@sha256:c3529464284a1075eab9217ca934279f25426691494550ae01e4ac83a628ad35 + - name: cp.icr.io/cp/sovereign-cloud-platform/automation-saas-platform-dev/gori-experience-apps/xpm:main-1787365235@sha256:a676b7f6097558b095c64685a127ba5a1ab305dce88bd4b1041998308673f4d6 + - name: cp.icr.io/cp/sovereign-cloud-platform/automation-saas-platform-dev/release-v1.2.0/acm-cuga-system:0.3.0@sha256:b451aa1b9691cc37cfe59f778abc447fb4d688ab6c742497bdbabea950249959 + - name: cp.icr.io/cp/sovereign-cloud-platform/automation-saas-platform-dev/release-v1.2.0/main:0.3.0@sha256:4dea9e0cd4d9ccce7a34cb5f0fffbb368968c7d5806d88d8a868c27198db1fa5 + - name: cp.icr.io/cp/sovereign-cloud-platform/automation-saas-platform-dev/release-v1.2.0/sovereign-core-upgrade-pipelines:0.3.0@sha256:6db62d71b3a659af9a38302b65e1cab91e448dbb3527b95dc0307f4ab5b903d0 + - name: cp.icr.io/cp/sovereign-cloud-platform/automation-saas-platform-dev/release-v1.2.0/aiiaas:0.3.0@sha256:45ff6d72c23069fa8c95c096526f46c2eb5f8e9dd954e739209454ed900b82fc + - name: cp.icr.io/cp/sovereign-cloud-platform/automation-saas-platform-dev/release-v1.2.0/sovereign-ui:0.3.0@sha256:9f41f3303109fffab7f1fe1416cdcc766cb0f4d2ae7d0b91b11af598c7167310 From 6e8f7f3bdc4a76f11bda96a3817e9389b2f9f2c8 Mon Sep 17 00:00:00 2001 From: Henry Li Date: Wed, 26 Aug 2026 23:13:36 -0400 Subject: [PATCH 09/10] fixed vault patch failing due to incorrect registry namespace Signed-off-by: Henry Li --- scripts/patches/v120-patch1/apply-v120-patch1.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/patches/v120-patch1/apply-v120-patch1.sh b/scripts/patches/v120-patch1/apply-v120-patch1.sh index 148c6c6..e7e9c0c 100644 --- a/scripts/patches/v120-patch1/apply-v120-patch1.sh +++ b/scripts/patches/v120-patch1/apply-v120-patch1.sh @@ -45,6 +45,7 @@ function main() { # extract variables from values.yaml and secrets.yaml QUAY_REGISTRY=$(yq -r '.registry.domain // ""' "$VALUES_FILE_DYNAMIC") + IMAGE_REGISTRY=$(yq -r '.imageRegistry // ""' "$VALUES_FILE_DYNAMIC") QUAY_ORGANIZATION="sovcloud" CLUSTER_NAME=$(yq -r '.clusterName // ""' "${INSTALL_FOLDER}/config/global.yaml") @@ -124,7 +125,7 @@ sync_argo() { } update_vault_watcher() { - local target_registry="${QUAY_REGISTRY}/${QUAY_ORGANIZATION}" + local target_registry="${IMAGE_REGISTRY}" local image_base="${target_registry}/automation-saas-platform/tekton-baseimage:v0.1.7" local patch="{\"spec\":{\"template\":{\"spec\":{\"containers\":[{\"name\":\"watcher\",\"image\":\"${image_base}\"}]}}}}" From 26917e222eb641ea4b93415cbc5d96e460be6591 Mon Sep 17 00:00:00 2001 From: Henry Li Date: Thu, 27 Aug 2026 13:26:24 -0400 Subject: [PATCH 10/10] updated to include acm-observability app Signed-off-by: Henry Li --- scripts/patches/v120-patch1/apply-v120-patch1.sh | 2 ++ scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml | 1 + 2 files changed, 3 insertions(+) diff --git a/scripts/patches/v120-patch1/apply-v120-patch1.sh b/scripts/patches/v120-patch1/apply-v120-patch1.sh index e7e9c0c..d6dfbf1 100644 --- a/scripts/patches/v120-patch1/apply-v120-patch1.sh +++ b/scripts/patches/v120-patch1/apply-v120-patch1.sh @@ -79,6 +79,7 @@ refresh_argo() { sovereign-ui-${cluster_name} acm-cuga-system-${cluster_name} aiiaas-${cluster_name} + acm-observability-${cluster_name} ) NS="openshift-gitops" @@ -107,6 +108,7 @@ sync_argo() { sovereign-ui-${cluster_name} acm-cuga-system-${cluster_name} aiiaas-${cluster_name} + acm-observability-${cluster_name} ) NS="openshift-gitops" diff --git a/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml index 330b4f0..fea152b 100644 --- a/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml +++ b/scripts/patches/v120-patch1/v120-patch1-image-manifest.yaml @@ -11,3 +11,4 @@ mirror: - name: cp.icr.io/cp/sovereign-cloud-platform/automation-saas-platform-dev/release-v1.2.0/sovereign-core-upgrade-pipelines:0.3.0@sha256:6db62d71b3a659af9a38302b65e1cab91e448dbb3527b95dc0307f4ab5b903d0 - name: cp.icr.io/cp/sovereign-cloud-platform/automation-saas-platform-dev/release-v1.2.0/aiiaas:0.3.0@sha256:45ff6d72c23069fa8c95c096526f46c2eb5f8e9dd954e739209454ed900b82fc - name: cp.icr.io/cp/sovereign-cloud-platform/automation-saas-platform-dev/release-v1.2.0/sovereign-ui:0.3.0@sha256:9f41f3303109fffab7f1fe1416cdcc766cb0f4d2ae7d0b91b11af598c7167310 + - name: cp.icr.io/cp/sovereign-cloud-platform/automation-saas-platform-dev/release-v1.2.0/acm-observability:0.3.0@sha256:62cbb724903d73744e5edd4f631614d6a670619e1d110a274c7c7dcce857dd99