![Steven Dake](/assets/img/avatar_default.png)
This prepares for the RHEL OSP implementation by making the build tool convert all binary-* into an install_type of binary and * into an install_metatype variable substitution inside the Dockerfiles. Further binary-* is substituted as install_name to enable proper building only. Change-Id: Ib681b29176eb79a3cab12ec824313fdecb6e7a5f Partially-Implements: blueprint rhel-based-image-support
27 lines
913 B
Django/Jinja
27 lines
913 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
# TODO(SamYaple): until packaging is fixed, all of this is required
|
|
# http://pkgs.fedoraproject.org/cgit/openstack-ironic.git/tree/openstack-ironic.spec#n78
|
|
RUN yum -y install \
|
|
python-oslo-log \
|
|
python-oslo-concurrency \
|
|
python-oslo-policy \
|
|
&& yum clean all
|
|
|
|
{% endif %}
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD ironic-base-archive /ironic-base-source
|
|
RUN ln -s ironic-base-source/* ironic \
|
|
&& useradd --user-group ironic \
|
|
&& pip --no-cache-dir install /ironic \
|
|
&& mkdir -p /etc/ironic /var/log/ironic /home/ironic \
|
|
&& cp -r /ironic/etc/* /etc/ironic/ \
|
|
&& chown -R ironic: /etc/ironic /var/log/ironic /home/ironic
|
|
|
|
{% endif %}
|