In order to migrate to the latest release of rabbitmq (3.7), we need to first remove this deprecated plugin which is no longer supported (the problems it solved are now addressed in rabbitmq itself). This avoids a circular dependency in CI where the new images depend on the new clustering and the new clustering depends on the new images. Change-Id: I921459f3e40b9e0d4af9497384e49aabf0abe79b
15 lines
711 B
Django/Jinja
15 lines
711 B
Django/Jinja
RABBITMQ_NODENAME=rabbit@{{ ansible_hostname }}
|
|
RABBITMQ_LOG_BASE=/var/log/kolla/{{ project_name }}
|
|
|
|
# TODO(sdake, vhosakot)
|
|
# erlang by default binds to wildcard (all interfaces) and can potentially
|
|
# interfere with the neutron external or tenant networks. We should in theory
|
|
# bind epmd to the host's IPv4 address to address the issue however this also
|
|
# has issues and can crash erlang when it is compiled with IPv6 support.
|
|
# See bugs:
|
|
# https://bugs.launchpad.net/ubuntu/+source/erlang/+bug/1374109
|
|
# https://bugs.launchpad.net/kolla/+bug/1562701
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1324922
|
|
#export ERL_EPMD_ADDRESS={{ api_interface_address }}
|
|
export ERL_EPMD_PORT={{ role_rabbitmq_epmd_port }}
|