From 643e22552320c4e4ed631fb18bf828c0be100313 Mon Sep 17 00:00:00 2001 From: Michele Baldessari Date: Thu, 27 Nov 2025 08:29:57 +0100 Subject: [PATCH 1/3] Use newer url --- values-group-one.yaml | 2 +- values-hub.yaml | 2 +- values-standalone.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/values-group-one.yaml b/values-group-one.yaml index cd163243f..fd053aa29 100644 --- a/values-group-one.yaml +++ b/values-group-one.yaml @@ -35,7 +35,7 @@ clusterGroup: # Total timeout of all jobs is 1h: imperative.activeDeadlineSeconds # imagePullPolicy is set to always: imperative.imagePullPolicy # For additional overrides that apply to the jobs, please refer to - # https://hybrid-cloud-patterns.io/imperative-actions/#additional-job-customizations + # https://validatedpatterns.io/patterns/multicloud-gitops/mcg-imperative-actions/ jobs: - name: hello-world # ansible playbook to be run diff --git a/values-hub.yaml b/values-hub.yaml index 5df42e5dc..0fa403716 100644 --- a/values-hub.yaml +++ b/values-hub.yaml @@ -74,7 +74,7 @@ clusterGroup: # Total timeout of all jobs is 1h: imperative.activeDeadlineSeconds # imagePullPolicy is set to always: imperative.imagePullPolicy # For additional overrides that apply to the jobs, please refer to - # https://hybrid-cloud-patterns.io/imperative-actions/#additional-job-customizations + # https://validatedpatterns.io/patterns/multicloud-gitops/mcg-imperative-actions/ jobs: - name: hello-world # ansible playbook to be run diff --git a/values-standalone.yaml b/values-standalone.yaml index 41744ed6f..57d74f9f1 100644 --- a/values-standalone.yaml +++ b/values-standalone.yaml @@ -51,7 +51,7 @@ clusterGroup: # Total timeout of all jobs is 1h: imperative.activeDeadlineSeconds # imagePullPolicy is set to always: imperative.imagePullPolicy # For additional overrides that apply to the jobs, please refer to - # https://hybrid-cloud-patterns.io/imperative-actions/#additional-job-customizations + # https://validatedpatterns.io/patterns/multicloud-gitops/mcg-imperative-actions/ jobs: - name: hello-world # ansible playbook to be run From 496c9fc51a63c391bbcec49304e6ccf3fec8b5c4 Mon Sep 17 00:00:00 2001 From: day0hero Date: Thu, 27 Nov 2025 22:37:31 +0000 Subject: [PATCH 2/3] domain update --- overrides/values-AWS.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overrides/values-AWS.yaml b/overrides/values-AWS.yaml index 03fa07758..2de4abcf9 100644 --- a/overrides/values-AWS.yaml +++ b/overrides/values-AWS.yaml @@ -2,7 +2,7 @@ # to enable letsencrypt certificates on API endpoint and default # ingress of the cluster # It is currently very experimental and unsupported. -# PLEASE read https://github.com/hybrid-cloud-patterns/common/tree/main/letsencrypt#readme +# PLEASE read https://github.com/validatedpatterns/common/tree/main/letsencrypt#readme # for all the limitations around it From 319cae25e4fa659c1d249a1643eaf8def1eed77c Mon Sep 17 00:00:00 2001 From: Mark LaBonte Date: Tue, 9 Dec 2025 13:44:57 -0500 Subject: [PATCH 3/3] Add missing project in app check --- tests/interop/test_validate_edge_site_components.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/interop/test_validate_edge_site_components.py b/tests/interop/test_validate_edge_site_components.py index 3f4c91eff..4722ea2b2 100644 --- a/tests/interop/test_validate_edge_site_components.py +++ b/tests/interop/test_validate_edge_site_components.py @@ -60,7 +60,7 @@ def test_check_pod_status(openshift_dyn_client): @pytest.mark.validate_argocd_applications_health_edge_site def test_validate_argocd_applications_health_edge_site(openshift_dyn_client): logger.info("Get all applications deployed by argocd on edge site") - projects = ["openshift-gitops"] + projects = ["openshift-gitops", "multicloud-gitops-group-one"] unhealthy_apps = application.get_argocd_application_status( openshift_dyn_client, projects )