a1510870e8
We have one install_type only now so that infra stuff is not needed anymore. Change-Id: I60d50ba7699d46d001eaef365fb84b0ce8e9b262
14 lines
483 B
Django/Jinja
14 lines
483 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}hacluster-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block hacluster_corosync_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% set hacluster_corosync_packages = ['corosync'] %}
|
|
{{ macros.install_packages(hacluster_corosync_packages | customizable("packages")) }}
|
|
|
|
{% block hacluster_corosync_footer %}{% endblock %}
|