From 99a601a6c4a075c7c0fedb878354ae851150f6d3 Mon Sep 17 00:00:00 2001 From: Arnau Verdaguer Date: Fri, 12 Dec 2025 13:00:35 +0100 Subject: [PATCH] Enable installing wntp to tempest-all A new variable is defined called tcib_tempest_enable_wntp that if set to true will also install WNTP to tempest-all container image. --- .../tcib/base/os/tempest/tempest-all/tempest-all.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/container-images/tcib/base/os/tempest/tempest-all/tempest-all.yaml b/container-images/tcib/base/os/tempest/tempest-all/tempest-all.yaml index 54d03d89..68db2e0d 100644 --- a/container-images/tcib/base/os/tempest/tempest-all/tempest-all.yaml +++ b/container-images/tcib/base/os/tempest/tempest-all/tempest-all.yaml @@ -4,6 +4,7 @@ tcib_envs: tcib_actions: - run: bash /usr/local/bin/uid_gid_manage {{ tcib_user }} - run: dnf -y install {{ tcib_packages['common'] | join(' ') }} && dnf clean all && rm -rf /var/cache/dnf +- run: if [ -n '{{ tcib_tempest_enable_wntp }}' ] then dnf -y install python-whitebox-neutron-tests-tempest && dnf clean all && rm -rf /var/cache/dnf; fi - run: cp /usr/share/tcib/container-images/tcib/base/os/tempest/tempest_sudoers /etc/sudoers.d/tempest_sudoers - run: chmod 440 /etc/sudoers.d/tempest_sudoers - run: mkdir -p /var/lib/tempest/external_files