ab9f652113
Adds the needed ansible bits to support keepalived Closes-Bug: #1479934 Change-Id: Iace29b23a0e923b1f5dc9a4f5bc0f88afce3ae62 Partially-Implements: blueprint ansible-service
15 lines
358 B
Docker
Executable File
15 lines
358 B
Docker
Executable File
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
RUN yum -y install \
|
|
hostname \
|
|
keepalived \
|
|
socat \
|
|
&& yum clean all
|
|
|
|
COPY keepalived.conf /etc/keepalived/
|
|
COPY start.sh check_alive.sh /
|
|
COPY config-internal.sh config-external.sh /opt/kolla/
|
|
|
|
CMD ["/start.sh"]
|