69fef5cd59
Debian support is not maintained in Kolla so it got a bit behind Ubuntu one. This changeset enables Debian for all images. Jessie (even with backports) may be too old for some images though. Also unify distro check to ['debian', 'ubuntu'] to keep alphabetical order like it is done for RPM distributions. Partially-Implements: blueprint multiarch-and-arm64-containers Change-Id: I056233fbfa277e0e2360c07c3f80d9558c554357
39 lines
1.0 KiB
Django/Jinja
39 lines
1.0 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block rally_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='rally') }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
|
{% set rally_packages = ['openstack-rally'] %}
|
|
{% elif base_distro in ['debian', 'ubuntu'] %}
|
|
{% set rally_packages = ['rally'] %}
|
|
{% endif %}
|
|
{{ macros.install_packages(rally_packages | customizable("packages")) }}
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD rally-archive /rally-source
|
|
|
|
{% set rally_pip_packages = [
|
|
'/rally'
|
|
] %}
|
|
|
|
RUN ln -s rally-source/* rally \
|
|
&& {{ macros.install_pip(rally_pip_packages | customizable("pip_packages")) }} \
|
|
&& mkdir -p /etc/rally \
|
|
&& chown -R rally: /etc/rally
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start
|
|
|
|
{% block rally_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER rally
|