From 65bf28b4061ff1c4e07050abec8ded6f3b338a70 Mon Sep 17 00:00:00 2001 From: Amartya Sinha Date: Wed, 29 Oct 2025 11:14:35 +0530 Subject: [PATCH] Add default cifmw_installyamls_repos value in ci/playbooks/kuttl/run-kuttl-tests.yml Since zuul ci playbooks won't read group_vars until it is upgraded, add the value of the var using defaults. It was missing only at a single place, so this should help. Signed-off-by: Amartya Sinha --- ci/playbooks/kuttl/run-kuttl-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/playbooks/kuttl/run-kuttl-tests.yml b/ci/playbooks/kuttl/run-kuttl-tests.yml index f2ca594865..b2c9e7cfc7 100644 --- a/ci/playbooks/kuttl/run-kuttl-tests.yml +++ b/ci/playbooks/kuttl/run-kuttl-tests.yml @@ -68,7 +68,7 @@ # name (parsing the KUTTL configuration) may be too cumbersome. - name: Find the generated JUnitXML files ansible.builtin.find: - paths: "{{ cifmw_installyamls_repos }}" + paths: "{{ cifmw_installyamls_repos | default(ansible_user_dir ~ '/src/github.com/openstack-k8s-operators/install_yamls') }}" file_type: file patterns: '*.xml' register: "_cifmw_kuttl_xml_files"