Implement Rally Dockerfile

Partially Implements: blueprint rally-container

Change-Id: If8c4fdb51b8083078dddc68598d48c6e139a615a
This commit is contained in:
Jeffrey Zhang 2016-06-07 20:14:24 +08:00
parent e6c1d41782
commit 3afe149e51
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,33 @@
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-rally \
&& yum clean all \
&& useradd --user-group rally
{% elif base_distro in ['ubuntu'] %}
RUN apt-get -y install --no-install-recommends \
rally \
&& apt-get clean
{% endif %}
{% elif install_type == 'source' %}
ADD rally-archive /rally-source
RUN ln -s rally-source/* rally \
&& /var/lib/kolla/venv/bin/pip --no-cache-dir install --upgrade -c requirements/upper-constraints.txt /rally \
&& mkdir -p /etc/rally /var/log/rally \
&& useradd --user-group rally
{% endif %}
RUN usermod -a -G kolla rally
{{ include_footer }}
USER rally

View File

@ -240,6 +240,10 @@ SOURCES = {
'type': 'url',
'location': ('http://github.com/kanaka/noVNC/tarball/'
'v0.5.1')},
'rally': {
'type': 'url',
'location': ('http://tarballs.openstack.org/rally/'
'rally-master.tar.gz')},
'sahara-base': {
'type': 'url',
'location': ('http://tarballs.openstack.org/sahara/'