0d03fc2789
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
25 lines
699 B
Django/Jinja
25 lines
699 B
Django/Jinja
[
|
|
{kernel, [
|
|
{inet_dist_use_interface, {% raw %}{{% endraw %}{{ api_interface_address | regex_replace('\.', ',') }}}},
|
|
{inet_dist_listen_min, {{ role_rabbitmq_cluster_port }}},
|
|
{inet_dist_listen_max, {{ role_rabbitmq_cluster_port }}}
|
|
]},
|
|
{rabbit, [
|
|
{% if rabbitmq_hipe_compile|bool %}
|
|
{hipe_compile, true},
|
|
{% endif %}
|
|
{tcp_listeners, [
|
|
{"{{ api_interface_address }}", {{ role_rabbitmq_port }}}
|
|
]},
|
|
{cluster_partition_handling, autoheal}
|
|
]},
|
|
{rabbitmq_management, [
|
|
{listener, [
|
|
{ip, "{{ api_interface_address }}"},
|
|
{port, {{ role_rabbitmq_management_port }}}
|
|
]},
|
|
{load_definitions, "/etc/rabbitmq/definitions.json"}
|
|
]}
|
|
].
|
|
% EOF
|