Merge "Add Dockerfile template for keepalived"

This commit is contained in:
Jenkins 2015-08-17 19:16:49 +00:00 committed by Gerrit Code Review
commit a6fcb5d02d
4 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,22 @@
FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-base:{{ tag }}
MAINTAINER Kolla Project (https://launchpad.net/kolla)
{% if base_distro in ['fedora', 'centos', 'oraclelinux'] %}
RUN yum -y install \
hostname \
keepalived \
socat \
&& yum clean all
{% elif base_distro in ['ubuntu', 'debian'] %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
{% endif %}
COPY start.sh check_alive.sh /
COPY config-external.sh /opt/kolla/
CMD ["/start.sh"]

View File

@ -0,0 +1 @@
../../docker/common/keepalived/check_alive.sh

View File

@ -0,0 +1 @@
../../docker/common/keepalived/config-external.sh

View File

@ -0,0 +1 @@
../../docker/common/keepalived/start.sh