Currently we are enabling repos irrespective of rpm/deb statement blocks and not failing in the method used if a repository is missing. Downside is - we might be producing one more layer, but it probably is a more logical approach. This is required for adding rpm support in repos.yaml that will also include failing on missing repositories. Change-Id: I5479c5c935760f00fe4cd307366f261deee3199f Signed-off-by: Michal Nasiadka <mnasiadka@gmail.com>
42 lines
1.2 KiB
Django/Jinja
42 lines
1.2 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block heat_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='heat') }}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
|
|
{{ macros.enable_extra_repos(['openvswitch']) }}
|
|
|
|
{% endif %}
|
|
|
|
{% set heat_base_packages = [
|
|
] %}
|
|
|
|
{{ macros.install_packages(heat_base_packages | customizable("packages")) }}
|
|
|
|
ADD heat-base-archive /heat-base-source
|
|
|
|
{% set heat_base_pip_packages = [
|
|
'/heat'
|
|
] %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN ln -s heat-base-source/* heat \
|
|
&& {{ macros.install_pip(heat_base_pip_packages | customizable("pip_packages")) }} \
|
|
&& mkdir -p /etc/heat \
|
|
&& cp -r /heat/etc/heat/* /etc/heat/ \
|
|
&& cp /var/lib/kolla/venv/etc/pycadf/heat_api_audit_map.conf /etc/heat/ \
|
|
&& touch /usr/local/bin/kolla_heat_extend_start \
|
|
&& chmod 644 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_heat_extend_start
|
|
|
|
{{ macros.kolla_patch_sources() }}
|
|
|
|
{% block heat_base_footer %}{% endblock %}
|