a1510870e8
We have one install_type only now so that infra stuff is not needed anymore. Change-Id: I60d50ba7699d46d001eaef365fb84b0ce8e9b262
20 lines
700 B
Django/Jinja
20 lines
700 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_pacemaker_remote_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% set hacluster_pacemaker_remote_packages = ['pacemaker-remote'] %}
|
|
{% if base_package_type == 'deb' %}
|
|
{% set hacluster_pacemaker_remote_packages = hacluster_pacemaker_remote_packages + [
|
|
'pacemaker-cli-utils'
|
|
] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(hacluster_pacemaker_remote_packages | customizable("packages")) }}
|
|
|
|
{% block hacluster_pacemaker_remote_footer %}{% endblock %}
|