
The previous method of using the API image for a data container worked, but resulted in more data being bindmounted and copied into the system. This patch resolves that by essentially using a distro-type as a FROM in a Dockerfile to generate distro-type-data. Further all of the data containers used throughout ansible are modified to use this new data container. Change-Id: I8846573d4f2d4b98d4f46c770bfefc6d4c5cd0b5 Partially-Implements: blueprint one-data-container
28 lines
686 B
Django/Jinja
28 lines
686 B
Django/Jinja
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 \
|
|
rabbitmq-server \
|
|
&& yum clean all \
|
|
&& rm -rf /var/lib/rabbitmq/*
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
hostname \
|
|
rabbitmq-server \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/rabbitmq/*
|
|
|
|
{% endif %}
|
|
|
|
RUN /usr/lib/rabbitmq/bin/rabbitmq-plugins enable rabbitmq_management
|
|
|
|
COPY start.sh /
|
|
COPY config-rabbit.sh config-external.sh /opt/kolla/
|
|
|
|
CMD ["/start.sh"]
|