From e4f8a8b21db317f45bbc1d11ca24fd71882bdaa1 Mon Sep 17 00:00:00 2001 From: Michele Baldessari Date: Thu, 23 Oct 2025 19:13:21 +0200 Subject: [PATCH] Switch to the new quay.io org validatedpatterns --- .github/workflows/pattern-sh-ci.yml | 2 +- Makefile | 4 ++-- scripts/preview.sh | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pattern-sh-ci.yml b/.github/workflows/pattern-sh-ci.yml index a8209013..39f2ca86 100644 --- a/.github/workflows/pattern-sh-ci.yml +++ b/.github/workflows/pattern-sh-ci.yml @@ -42,7 +42,7 @@ jobs: - name: Clone MCG and update common run: | - git clone --depth 1 https://github.com/hybrid-cloud-patterns/multicloud-gitops mcg + git clone --depth 1 https://github.com/validatedpatterns/multicloud-gitops mcg cp -r scripts/ mcg/common/scripts cp Makefile mcg/common diff --git a/Makefile b/Makefile index 96df55a7..4c48a42b 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,7 @@ HELM_OPTS := -f values-global.yaml \ $(EXTRA_HELM_OPTS) # Helm does the right thing and fetches all the tags and detects the newest one -PATTERN_INSTALL_CHART ?= oci://quay.io/hybridcloudpatterns/pattern-install +PATTERN_INSTALL_CHART ?= oci://quay.io/validatedpatterns/pattern-install ##@ Pattern Common Tasks @@ -191,7 +191,7 @@ validate-cluster: ## Do some cluster validations before installing validate-schema: ## validates values files against schema in common/clustergroup $(eval VAL_PARAMS := $(shell for i in ./values-*.yaml; do echo -n "$${i} "; done)) @echo -n "Validating clustergroup schema of: " - @set -e; for i in $(VAL_PARAMS); do echo -n " $$i"; helm template oci://quay.io/hybridcloudpatterns/clustergroup $(HELM_OPTS) -f "$${i}" >/dev/null; done + @set -e; for i in $(VAL_PARAMS); do echo -n " $$i"; helm template oci://quay.io/validatedpatterns/clustergroup $(HELM_OPTS) -f "$${i}" >/dev/null; done @echo .PHONY: validate-prereq diff --git a/scripts/preview.sh b/scripts/preview.sh index 6da45785..337d34e3 100755 --- a/scripts/preview.sh +++ b/scripts/preview.sh @@ -26,7 +26,7 @@ if [ "${APPNAME}" != "clustergroup" ]; then chart=$(yq ".clusterGroup.applications.$APP.path" values-$SITE.yaml) else helmrepo=$(yq ".clusterGroup.applications.$APP.repoURL" values-$SITE.yaml) - helmrepo="${helmrepo:+oci://quay.io/hybridcloudpatterns}" + helmrepo="${helmrepo:+oci://quay.io/validatedpatterns}" chartversion=$(yq ".clusterGroup.applications.$APP.chartVersion" values-$SITE.yaml) chartname=$(yq ".clusterGroup.applications.$APP.chart" values-$SITE.yaml) chart="${helmrepo}/${chartname} --version ${chartversion}" @@ -35,7 +35,7 @@ if [ "${APPNAME}" != "clustergroup" ]; then else APP=$APPNAME clusterGroupChartVersion=$(yq ".main.multiSourceConfig.clusterGroupChartVersion" values-global.yaml) - helmrepo="oci://quay.io/hybridcloudpatterns" + helmrepo="oci://quay.io/validatedpatterns" chart="${helmrepo}/clustergroup --version ${clusterGroupChartVersion}" namespace="openshift-operators" fi