Include iputils package to tempest container

In TripleO side, tempest is consumed from container and it is
built using Red Hat ubi image which does not have iputils
installed and ping operation is common while running scenario
tests.

Adding iputils will install the ping command.

Closes-Bug: #1840645

Change-Id: I5df5329bd7ee1e77556214be7ed264b9c00445e9
Signed-off-by: Chandan kumar <chkumar@redhat.com>
This commit is contained in:
Chandan kumar 2019-08-19 17:33:15 +05:30
parent 6320b05f71
commit 8b49f20a60
1 changed files with 4 additions and 2 deletions

View File

@ -9,10 +9,12 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% if install_type == 'binary' %}
{% if base_package_type == 'rpm' %}
{% set tempest_packages = ['openstack-tempest-all'] %}
{% set tempest_packages = ['openstack-tempest-all',
'iputils'] %}
{% elif base_package_type == 'deb' %}
{% set tempest_packages = ['tempest'] %}
{% set tempest_packages = ['tempest',
'iputils-ping'] %}
{% endif %}