e5788a06e4
This patchset contains customization of Dockerfile of heat containers Change-Id: I3c2bae909ec6e8c3b0e460115ded3cc2456a212f Partially-implements: blueprint third-party-plugin-support
32 lines
1.1 KiB
Django/Jinja
32 lines
1.1 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set heat_base_packages = ['openstack-heat-common'] %}
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set heat_base_packages = ['heat-common'] %}
|
|
{% endif %}
|
|
RUN {{ macros.install_packages(heat_base_packages | customizable("packages")) }}
|
|
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD heat-base-archive /heat-base-source
|
|
RUN ln -s heat-base-source/* heat \
|
|
&& useradd --user-group heat \
|
|
&& /var/lib/kolla/venv/bin/pip --no-cache-dir install --upgrade -c requirements/upper-constraints.txt /heat \
|
|
&& mkdir -p /etc/heat /home/heat \
|
|
&& cp -r /heat/etc/heat/* /etc/heat/ \
|
|
&& chown -R heat: /etc/heat /home/heat
|
|
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN usermod -a -G kolla heat \
|
|
&& touch /usr/local/bin/kolla_heat_extend_start \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_heat_extend_start
|