Customizations for rally

This patchset contains customization of Dockerfile of rally containers

Change-Id: I8b22525320939dc3235c9fd3af7e04356125c1ca
Partially-implements: blueprint third-party-plugin-support
Signed-off-by: Eduardo Gonzalez <dabarren@gmail.com>
This commit is contained in:
Eduardo Gonzalez 2016-07-24 22:16:51 +02:00
parent 0ff90a6f10
commit c5149a017d
1 changed files with 11 additions and 12 deletions

View File

@ -1,21 +1,18 @@
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% import "macros.j2" as macros with context %}
{% if install_type == 'binary' %}
{% if base_distro in ['fedora', 'centos', 'oraclelinux', 'rhel'] %}
RUN yum -y install \
openstack-rally \
&& yum clean all \
&& useradd --user-group rally
{% if base_distro in ['fedora', 'centos', 'oraclelinux', 'rhel'] %}
{% set rally_packages = ['openstack-rally'] %}
RUN useradd --user-group rally
{% elif base_distro in ['ubuntu'] %}
RUN apt-get -y install --no-install-recommends \
rally \
&& apt-get clean
{% endif %}
{% elif base_distro in ['ubuntu'] %}
{% set rally_packages = ['rally'] %}
{% endif %}
RUN {{ macros.install_packages(rally_packages | customizable("packages")) }}
{% elif install_type == 'source' %}
ADD rally-archive /rally-source
@ -28,6 +25,8 @@ RUN ln -s rally-source/* rally \
RUN usermod -a -G kolla rally
{% block rally_footer %}{% endblock %}
{% block footer %}{% endblock %}
{{ include_footer }}
USER rally