Add new image for tempest
Note, this image is slightly different to most others in Kolla in that it's not a service designed to be deployed via Ansible. It's more a 'tool' type image that is spun up when needed. Partially-Implements: blueprint tempest-gate Change-Id: I1877c03d0804e57d274044aecb1055f847025bec
This commit is contained in:
parent
3a81572112
commit
f98bd05271
21
docker/tempest/Dockerfile.j2
Normal file
21
docker/tempest/Dockerfile.j2
Normal file
@ -0,0 +1,21 @@
|
||||
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
||||
MAINTAINER {{ maintainer }}
|
||||
|
||||
{% if install_type == 'binary' %}
|
||||
{% if base_distro in ['fedora', 'centos', 'oraclelinux', 'rhel'] %}
|
||||
|
||||
RUN yum -y install \
|
||||
openstack-tempest \
|
||||
&& yum clean all
|
||||
|
||||
{% endif %}
|
||||
{% elif install_type == 'source' %}
|
||||
|
||||
ADD tempest-archive /tempest-source
|
||||
RUN ln -s tempest-source/* tempest \
|
||||
&& pip --no-cache-dir install -c requirements/upper-constraints.txt /tempest \
|
||||
&& mkdir -p /etc/tempest /var/log/tempest /etc/tempest/tempest_lock
|
||||
|
||||
{% endif %}
|
||||
|
||||
{{ include_footer }}
|
@ -142,6 +142,10 @@ location = http://github.com/kanaka/noVNC/tarball/v0.5.1
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/swift/swift-master.tar.gz
|
||||
|
||||
[tempest]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/tempest/tempest-master.tar.gz
|
||||
|
||||
[zaqar]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/zaqar/zaqar-master.tar.gz
|
||||
|
Loading…
Reference in New Issue
Block a user