diff --git a/container-images/tcib/base/os/tempest/tempest.yaml b/container-images/tcib/base/os/tempest/tempest.yaml index 15d21ddbd..64ef6d936 100644 --- a/container-images/tcib/base/os/tempest/tempest.yaml +++ b/container-images/tcib/base/os/tempest/tempest.yaml @@ -1,6 +1,14 @@ 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 [ -e /usr/share/openstack-tripleo-common-containers/container-images/tcib/base/os/tempest/tempest_sudoers ]; then + cp /usr/share/openstack-tripleo-common-containers/container-images/tcib/base/os/tempest/tempest_sudoers /etc/sudoers.d/tempest_sudoers; + else + sed -e 's/cloud-admin/tempest/' /usr/share/openstack-tripleo-common-containers/container-images/kolla/tripleoclient/tripleoclient_sudoers > /etc/sudoers.d/tempest_sudoers; + fi +- run: chmod 440 /etc/sudoers.d/tempest_sudoers + tcib_packages: common: - iputils diff --git a/container-images/tcib/base/os/tempest/tempest_sudoers b/container-images/tcib/base/os/tempest/tempest_sudoers new file mode 100644 index 000000000..0b7b4a873 --- /dev/null +++ b/container-images/tcib/base/os/tempest/tempest_sudoers @@ -0,0 +1 @@ +tempest ALL=(ALL) NOPASSWD: ALL