3eb82949c2
This patchset contains customization of Dockerfile of haproxy containers Change-Id: I67790816766641ebc3138d6b3726f0bbd9c68038 Partially-implements: blueprint third-party-plugin-support Signed-off-by: Eduardo Gonzalez <dabarren@gmail.com>
19 lines
607 B
Django/Jinja
19 lines
607 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% set haproxy_packages = ['haproxy'] %}
|
|
RUN {{ macros.install_packages(haproxy_packages | customizable("packages")) }}
|
|
|
|
RUN usermod -a -G kolla haproxy \
|
|
&& 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 %}
|
|
{{ include_footer }}
|