8b3f0d0857
The rabbitmq-server package is upgraded to 3.5.7 in cloud-archive so we update centos to match The xen-utils package now needs an explict version, xen-utils-4.6 is what is provided by cloud-archive mitaka Libvirt 1.3 is in the ubuntu cloud-archive. This has a new daemon for logging that needs further implementation in newton. For now, it has been disabled within the qemu.conf Co-Authored-By: Jeffrey Zhang <jeffrey.zhang@99cloud.net> TrivialFix Change-Id: I84217824817c484b6800a64cbd7767b127a3098e
39 lines
1.3 KiB
Django/Jinja
39 lines
1.3 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
hostname \
|
|
https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_5_7/rabbitmq-server-3.5.7-1.noarch.rpm \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
rabbitmq-server \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
|
|
# NOTE(sdake): the /bin/true unblocks the rabbitmq-plugins tool. Not sure how
|
|
# or why. My suspicion is it sends a signal to the parent
|
|
# process.
|
|
RUN rm -rf /var/lib/rabbitmq/* \
|
|
&& curl -o /usr/lib/rabbitmq/lib/rabbitmq_server-3.5.7/plugins/rabbitmq_clusterer-3.5.x-189b3a81.ez http://www.rabbitmq.com/community-plugins/v3.5.x/rabbitmq_clusterer-3.5.x-189b3a81.ez \
|
|
&& /usr/lib/rabbitmq/bin/rabbitmq-plugins enable --offline \
|
|
rabbitmq_management \
|
|
rabbitmq_clusterer \
|
|
&& /bin/true
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
COPY rabbitmq_sudoers /etc/sudoers.d/rabbitmq_sudoers
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start \
|
|
&& chmod 750 /etc/sudoers.d \
|
|
&& chmod 440 /etc/sudoers.d/rabbitmq_sudoers \
|
|
&& usermod -a -G kolla rabbitmq
|
|
|
|
{{ include_footer }}
|
|
|
|
USER rabbitmq
|