6e58742153
This makes it consistent with the rest of the images and lets kolla users disable external repo in a clean fashion. Co-Authored-By: Martin André <m.andre@redhat.com> Change-Id: If6d03d2168a14181b7a32d7810b8fe4b1d798585
31 lines
1016 B
Django/Jinja
31 lines
1016 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block opendaylight_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='odl') }}
|
|
|
|
{% block opendaylight_install %}
|
|
|
|
{% set opendaylight_packages = ['opendaylight'] %}
|
|
{% if base_distro in ['debian', 'ubuntu'] %}
|
|
# NOTE(egonzalez): ODL fails to install in debian family images with
|
|
# existing odl user. First install odl and then allow usage of
|
|
# install_packages macro for custom configs.
|
|
{% block debian_opendaylight_install_fix_block %}
|
|
{{ macros.debian_opendaylight_existing_user_fix() }}
|
|
{% endblock %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(opendaylight_packages | customizable("packages")) }}
|
|
|
|
{% endblock %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start
|
|
|
|
{% block opendaylight_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|