diff options
author | Yanis Guenane <yanis.guenane@enovance.com> | 2015-04-16 21:16:34 +0200 |
---|---|---|
committer | Yanis Guenane <yanis.guenane@enovance.com> | 2015-04-16 21:16:34 +0200 |
commit | 70cb73ca6e53cbca3a841a67d2bb1644461754c6 (patch) | |
tree | 24fe816873baae3baf4f66a3fb61fe200be58a8a | |
parent | 72e8834efa188ecef879e5ae3141428b6a88f0a5 (diff) |
Do not make RabbitMQ listen on public vip
Currently RabbitMQ is listening on both private vip and public vip.
There is no need for RabbitMQ to listen on the public vip, so we remove
it.
Change-Id: I82ea2e1e18b7710ae391ffe4903439a9330b1461
-rw-r--r-- | manifests/loadbalancer.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/loadbalancer.pp b/manifests/loadbalancer.pp index ccc9d25..f4bb5c5 100644 --- a/manifests/loadbalancer.pp +++ b/manifests/loadbalancer.pp @@ -567,7 +567,7 @@ class tripleo::loadbalancer ( if $rabbitmq { haproxy::listen { 'rabbitmq': - ipaddress => [$controller_virtual_ip, $public_virtual_ip], + ipaddress => [$controller_virtual_ip], ports => 5672, options => { 'timeout' => [ 'client 0', 'server 0' ], |