90adc2b851
Defaults to 'image_prefix' for now but shows which images gets their names changed soon. Change-Id: I0608e8f62f28d6667b4c8753c47553e4cbf75503
20 lines
642 B
Django/Jinja
20 lines
642 B
Django/Jinja
FROM {{ namespace }}/{{ infra_image_prefix }}base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block multipathd_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set multipathd_packages = ['device-mapper-multipath'] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set multipathd_packages = ['multipath-tools'] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(multipathd_packages | customizable("packages")) }}
|
|
|
|
{% block multipathd_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|