From fd235198243bf59d8a425a73c62b7b5e144fc156 Mon Sep 17 00:00:00 2001 From: Emma Foley Date: Wed, 12 Nov 2025 14:24:27 -0500 Subject: [PATCH] [ci] Add ansible.cfg to top-level dir This ensures that same config is used when running the ci playbooks from the top-level of the repo as when running from the ci/ directory This is useful for test-operator, for example, which runs the playbooks from teh top level of the directory --- ansible.cfg | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ansible.cfg diff --git a/ansible.cfg b/ansible.cfg new file mode 100644 index 00000000..a980bb27 --- /dev/null +++ b/ansible.cfg @@ -0,0 +1,9 @@ +[defaults] +callbacks_enabled = custom_junit, custom_logger +callback_plugins = callback_plugins +# additional paths to search for roles +roles_path = /usr/share/ansible/roles:/etc/ansible/roles:~/.ansible/roles:../ci-framework/roles:roles + +[custom_logger] +output_dir = /$HOME/ci-framework-data/tests/feature-verification-tests/ +