diff options
author | Giulio Fidente <gfidente@redhat.com> | 2015-04-14 20:36:12 +0200 |
---|---|---|
committer | Giulio Fidente <gfidente@redhat.com> | 2015-04-14 20:36:12 +0200 |
commit | 48a8e52105fa0ff546407790f3cb7928ad423ae1 (patch) | |
tree | 8ffbeb7359548389a124a3986d64d5fc50c44c8a /puppet/manifests | |
parent | 42113f6b91e27068e8b9ae4944877562371f33d0 (diff) |
Do not downcase IP addresses
Change-Id: I0655b7cae2c436944833894bf9837877b3a69878
Diffstat (limited to 'puppet/manifests')
-rw-r--r-- | puppet/manifests/overcloud_controller.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/puppet/manifests/overcloud_controller.pp b/puppet/manifests/overcloud_controller.pp index 0541fa4e..f26d82a1 100644 --- a/puppet/manifests/overcloud_controller.pp +++ b/puppet/manifests/overcloud_controller.pp @@ -26,7 +26,7 @@ if !str2bool(hiera('enable_package_install', 'false')) { if hiera('step') >= 1 { - $controller_node_ips = split(downcase(hiera('controller_node_ips')), ',') + $controller_node_ips = split(hiera('controller_node_ips'), ',') class { '::tripleo::loadbalancer' : controller_hosts => $controller_node_ips, } @@ -42,7 +42,7 @@ if hiera('step') >= 2 { # MongoDB include ::mongodb::globals include ::mongodb::server - $mongo_node_ips = split(downcase(hiera('mongo_node_ips')), ',') + $mongo_node_ips = split(hiera('mongo_node_ips'), ',') $mongo_node_ips_with_port = suffix($mongo_node_ips, ':27017') if count($mongo_node_ips) > 1 { |