90adc2b851
Defaults to 'image_prefix' for now but shows which images gets their names changed soon. Change-Id: I0608e8f62f28d6667b4c8753c47553e4cbf75503
25 lines
673 B
Django/Jinja
25 lines
673 B
Django/Jinja
FROM {{ namespace }}/{{ infra_image_prefix }}ovn-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block ovn_northd_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set ovn_northd_packages = [
|
|
'openvswitch-ovn-central',
|
|
] %}
|
|
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set ovn_northd_packages = [
|
|
'ovn-central',
|
|
] %}
|
|
|
|
{% endif %}
|
|
{{ macros.install_packages(ovn_northd_packages | customizable("packages")) }}
|
|
|
|
{% block ovn_northd_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|