aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/heat.pp
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-11-08 18:00:24 +0000
committerGerrit Code Review <review@openstack.org>2016-11-08 18:00:24 +0000
commit570aa806acff2a863b476828fc943882635eb41d (patch)
tree73c5113510fe472d4778c11a53f7e267481b8990 /manifests/profile/base/heat.pp
parentc326036cfc3945a410d1f16d005d1b84f28ac83a (diff)
parent274156e5bab7a6c252d9c13015a1d4d14801e770 (diff)
Merge "Add proper handling of IPv6 addresses for rabbit host/port handling"
Diffstat (limited to 'manifests/profile/base/heat.pp')
-rw-r--r--manifests/profile/base/heat.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/profile/base/heat.pp b/manifests/profile/base/heat.pp
index 2babf4c..00a9809 100644
--- a/manifests/profile/base/heat.pp
+++ b/manifests/profile/base/heat.pp
@@ -62,9 +62,10 @@ class tripleo::profile::base::heat (
}
if $step >= 4 {
+ $rabbit_endpoints = suffix(any2array(normalize_ip_for_uri($rabbit_hosts)), ":${rabbit_port}")
class { '::heat' :
notification_driver => $notification_driver,
- rabbit_hosts => suffix($rabbit_hosts, ":${rabbit_port}")
+ rabbit_hosts => $rabbit_endpoints,
}
include ::heat::config
include ::heat::cors