2d920745a4
This commit consists HAProxy ansible bits including config generation, container deployment and hot reloads. Closes-Bug: #1477915 Co-Authored-By: Sam Yaple <sam@yaple.net> Change-Id: Ie93fa68fdb6b2885889c992ff1267d38b68e0cbc Partially-implements: blueprint ansible-service
12 lines
272 B
Docker
Executable File
12 lines
272 B
Docker
Executable File
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
RUN yum -y install \
|
|
haproxy \
|
|
&& yum clean all
|
|
|
|
COPY start.sh /
|
|
COPY config-external.sh ensure_latest_config.sh /opt/kolla/
|
|
|
|
CMD ["/start.sh"]
|