Reuse /var/lib/tempest symlink for rpm also
https://review.openstack.org/#/c/605980/ with this review in tripleo, we use /var/lib/tempest path but in kolla tempest dockerfile /usr/share/openstack-tempest is used which is not mounted in tripleo deployment. Let's reuse the same volume with tempest container instead of /usr/share/openstack-tempest. Change-Id: I402f58ce53fdce426582cf2fc31349da6d2f5ae0 Signed-off-by: Chandan Kumar <chkumar@redhat.com>
This commit is contained in:
parent
89b1ee6eba
commit
8b89584598
@ -11,17 +11,14 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
|
||||
{% if base_package_type == 'rpm' %}
|
||||
{% set tempest_packages = ['openstack-tempest-all'] %}
|
||||
|
||||
{{ macros.install_packages(tempest_packages | customizable("packages")) }}
|
||||
RUN ln -sf /usr/share/openstack-tempest /tempest
|
||||
|
||||
{% elif base_package_type == 'deb' %}
|
||||
{% set tempest_packages = ['tempest'] %}
|
||||
|
||||
{% endif %}
|
||||
|
||||
{{ macros.install_packages(tempest_packages | customizable("packages")) }}
|
||||
RUN ln -sf /var/lib/tempest /tempest
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% elif install_type == 'source' %}
|
||||
|
||||
ADD tempest-archive /tempest-source
|
||||
|
Loading…
Reference in New Issue
Block a user