90adc2b851
Defaults to 'image_prefix' for now but shows which images gets their names changed soon. Change-Id: I0608e8f62f28d6667b4c8753c47553e4cbf75503
25 lines
740 B
Django/Jinja
25 lines
740 B
Django/Jinja
FROM {{ namespace }}/{{ infra_image_prefix }}base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block haproxy_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='haproxy') }}
|
|
|
|
{% set haproxy_packages = [
|
|
'haproxy'
|
|
] %}
|
|
{{ macros.install_packages(haproxy_packages | customizable("packages")) }}
|
|
|
|
RUN mkdir -p /var/lib/kolla/haproxy \
|
|
&& chown -R haproxy: /var/lib /run
|
|
|
|
COPY ensure_latest_config.sh /usr/local/bin/kolla_ensure_haproxy_latest_config
|
|
RUN chmod 755 /usr/local/bin/kolla_ensure_haproxy_latest_config
|
|
|
|
{% block haproxy_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|