From 92b99c0ff2c4c012a1b041447f95cc1367d8602a Mon Sep 17 00:00:00 2001 From: Michele Baldessari Date: Wed, 5 Aug 2026 13:48:28 +0200 Subject: [PATCH 1/2] Switch to using single Argo CD instance Tested and got all apps green on the single argocd instance --- values-global.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/values-global.yaml b/values-global.yaml index 87cfc477..12abd01c 100644 --- a/values-global.yaml +++ b/values-global.yaml @@ -1,5 +1,6 @@ global: pattern: ansible-edge-gitops + singleArgoCD: true secretLoader: disabled: false hub: From 944628b1956886a5a5d25ce661a48f7ac26873ff Mon Sep 17 00:00:00 2001 From: Michele Baldessari Date: Wed, 5 Aug 2026 17:13:47 +0200 Subject: [PATCH 2/2] Adapt tests to new gitops namespace and to new single argo --- tests/interop/test_check_vm_status.py | 2 +- tests/interop/test_validate_hub_site_components.py | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/interop/test_check_vm_status.py b/tests/interop/test_check_vm_status.py index 6c09afa3..144194e3 100644 --- a/tests/interop/test_check_vm_status.py +++ b/tests/interop/test_check_vm_status.py @@ -19,7 +19,7 @@ def test_check_vm_status(openshift_dyn_client): while time.time() < timeout: app = ArgoCD.get( dyn_client=openshift_dyn_client, - namespace="ansible-edge-gitops-hub", + namespace="vp-gitops", name="edge-gitops-vms", ) app = next(app) diff --git a/tests/interop/test_validate_hub_site_components.py b/tests/interop/test_validate_hub_site_components.py index b12164ed..239605cb 100644 --- a/tests/interop/test_validate_hub_site_components.py +++ b/tests/interop/test_validate_hub_site_components.py @@ -43,8 +43,7 @@ def test_check_pod_status(openshift_dyn_client): projects = [ "openshift-operators", "ansible-automation-platform", - "ansible-edge-gitops-hub", - "openshift-gitops", + "vp-gitops", "edge-gitops-vms", "vault", ] @@ -70,7 +69,7 @@ def test_validate_argocd_reachable_hub_site(openshift_dyn_client): @pytest.mark.validate_argocd_applications_health_hub_site def test_validate_argocd_applications_health_hub_site(openshift_dyn_client): logger.info("Get all applications deployed by argocd on hub site") - projects = ["openshift-gitops", "ansible-edge-gitops-hub"] + projects = ["vp-gitops"] unhealthy_apps = application.get_argocd_application_status( openshift_dyn_client, projects )