Skip to content
Snippets Groups Projects
Commit e230c075 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Pin rabbitmq to 3.5.5"

parents 43284d56 c6947eeb
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ MAINTAINER Kolla Project (https://launchpad.net/kolla) ...@@ -5,7 +5,7 @@ MAINTAINER Kolla Project (https://launchpad.net/kolla)
RUN yum -y install \ RUN yum -y install \
hostname \ hostname \
rabbitmq-server \ https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_5_5/rabbitmq-server-3.5.5-3.noarch.rpm \
&& yum clean all \ && yum clean all \
&& rm -rf /var/lib/rabbitmq/* && rm -rf /var/lib/rabbitmq/*
...@@ -17,7 +17,11 @@ RUN apt-get install -y --no-install-recommends rabbitmq-server \ ...@@ -17,7 +17,11 @@ RUN apt-get install -y --no-install-recommends rabbitmq-server \
{% endif %} {% endif %}
RUN /usr/lib/rabbitmq/bin/rabbitmq-plugins enable rabbitmq_management # NOTE(sdake): the /bin/true unblocks th rabbitmq-plugins tool. Not sure how
# or why. My suspicion is it sends a signal to the parent
# process.
RUN /usr/lib/rabbitmq/bin/rabbitmq-plugins enable --offline rabbitmq_management \
&& /bin/true
COPY extend_start.sh /usr/local/bin/kolla_extend_start COPY extend_start.sh /usr/local/bin/kolla_extend_start
RUN chmod 755 /usr/local/bin/kolla_extend_start RUN chmod 755 /usr/local/bin/kolla_extend_start
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment