diff options
author | Giulio Fidente <gfidente@redhat.com> | 2015-05-07 13:05:13 -0400 |
---|---|---|
committer | Giulio Fidente <gfidente@redhat.com> | 2015-05-19 07:09:28 -0400 |
commit | 7e96bb748561cfd13bae9f048ebbbf7a0f631fd1 (patch) | |
tree | 211d5b51e6b5edd3a3d23158b51fb3c0ff91fa3c /puppet/manifests | |
parent | e4165af938510ff1352b9657e1e3942f1803e0a7 (diff) |
Provide RabbitMQ clients with a list of servers instead of VIP
This will change the way how RabbitMQ clients get to the servers,
they will not go through HAProxy anymore.
Change-Id: I522d7520b383a280505e0e7c8fecba9ac02d2c9b
Diffstat (limited to 'puppet/manifests')
-rw-r--r-- | puppet/manifests/overcloud_controller.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/manifests/overcloud_controller.pp b/puppet/manifests/overcloud_controller.pp index 2b4e2052..a11df054 100644 --- a/puppet/manifests/overcloud_controller.pp +++ b/puppet/manifests/overcloud_controller.pp @@ -160,7 +160,7 @@ if hiera('step') >= 2 { } } - $rabbit_nodes = split(hiera('rabbit_node_ips'), ',') + $rabbit_nodes = hiera('rabbit_node_ips') if count($rabbit_nodes) > 1 { class { '::rabbitmq': config_cluster => true, |