diff options
author | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2016-11-28 09:46:39 +0200 |
---|---|---|
committer | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2016-11-28 15:45:07 +0200 |
commit | e93508fe6ee277516d2a616e6dd5cd6ca890f0ae (patch) | |
tree | 0d83f2220079b8837b5bd9a3d8cf318878e518fb /manifests/profile | |
parent | 91597fc56983ee20d77985e97ad7563fcd30f1bc (diff) |
Use FQDNs for RabbitMQ's cluster configuration
This sets the cluster_nodes configuration in RabbitMQ to use FQDNs
instead of IP addresses. Note that in HA, RabbitMQ is already
configured using FQDNs.
Change-Id: I2b1cec25ff25f4afd72a28246c2cda9c58d7b61e
Diffstat (limited to 'manifests/profile')
-rw-r--r-- | manifests/profile/base/rabbitmq.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/profile/base/rabbitmq.pp b/manifests/profile/base/rabbitmq.pp index d90805a..15bab44 100644 --- a/manifests/profile/base/rabbitmq.pp +++ b/manifests/profile/base/rabbitmq.pp @@ -36,7 +36,7 @@ # # [*nodes*] # (Optional) Array of host(s) for RabbitMQ nodes. -# Defaults to hiera('rabbitmq_node_ips', []). +# Defaults to hiera('rabbitmq_node_names', []). # # [*step*] # (Optional) The current step in deployment. See tripleo-heat-templates @@ -48,7 +48,7 @@ class tripleo::profile::base::rabbitmq ( $environment = hiera('rabbitmq_environment'), $ipv6 = str2bool(hiera('rabbit_ipv6', false)), $kernel_variables = hiera('rabbitmq_kernel_variables'), - $nodes = hiera('rabbitmq_node_ips', []), + $nodes = hiera('rabbitmq_node_names', []), $step = hiera('step'), ) { # IPv6 environment, necessary for RabbitMQ. |