e511db7048
There is no need to install it in other images. Change-Id: I9fdb987533662ee532141b06fc23b64c92788429
29 lines
807 B
Django/Jinja
29 lines
807 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block keepalived_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set keepalived_packages = [
|
|
'keepalived'
|
|
] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set keepalived_packages = [
|
|
'keepalived'
|
|
] %}
|
|
{% endif %}
|
|
{{ macros.install_packages(keepalived_packages | customizable("packages")) }}
|
|
|
|
COPY check_alive.sh /
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
RUN chmod 644 /usr/local/bin/kolla_extend_start \
|
|
&& chmod 755 /check_alive.sh
|
|
|
|
{% block keepalived_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|