From daea1fab4e1501a992c530e1b15accd7b0a84cad Mon Sep 17 00:00:00 2001 From: Amartya Sinha Date: Fri, 9 Jan 2026 12:15:43 +0530 Subject: [PATCH] [multiple] Consolidate cifmw_architecture_repo_url to group_vars Move the definition of cifmw_architecture_repo_url to group_vars so that it can be easily changes and managed at a single place. Signed-off-by: Amartya Sinha --- group_vars/all.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/group_vars/all.yml b/group_vars/all.yml index baaf49a5e0..6df648a01a 100644 --- a/group_vars/all.yml +++ b/group_vars/all.yml @@ -13,3 +13,7 @@ cifmw_architecture_repo: "{{ ansible_user_dir }}/{{ cifmw_architecture_repo_rela cifmw_openstack_namespace: "{{ cifmw_install_yamls_defaults['NAMESPACE'] | default('openstack') }}" operator_namespace: "{{ cifmw_install_yamls_defaults['OPERATOR_NAMESPACE'] | default('openstack-operators') }}" + +# group_vars related to github repo URLs +openstack_k8s_operators_org_url: "https://github.com/openstack-k8s-operators" +cifmw_architecture_repo_url: "{{ openstack_k8s_operators_org_url }}/architecture"