aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/neutron.pp
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-01-27 19:23:24 +0000
committerGerrit Code Review <review@openstack.org>2017-01-27 19:23:24 +0000
commit6cd0b39b403d73684793bce80e36c3103d10e99a (patch)
treee52f522bf0b2e7742cdb4e6b246d3a47519618e5 /manifests/profile/base/neutron.pp
parentecc4c4d10c4e885b18080d9a601cc558096b5e45 (diff)
parente089cc6fbbd89c83bb6e4ba86295702f50d0f4a3 (diff)
Merge "Clean TLS proxy-related setup for neutron-server profile"
Diffstat (limited to 'manifests/profile/base/neutron.pp')
-rw-r--r--manifests/profile/base/neutron.pp13
1 files changed, 0 insertions, 13 deletions
diff --git a/manifests/profile/base/neutron.pp b/manifests/profile/base/neutron.pp
index 3de50c2..e6a32db 100644
--- a/manifests/profile/base/neutron.pp
+++ b/manifests/profile/base/neutron.pp
@@ -35,22 +35,9 @@ class tripleo::profile::base::neutron (
$rabbit_hosts = hiera('rabbitmq_node_names', undef),
$rabbit_port = hiera('neutron::rabbit_port', 5672),
) {
-
- # TODO(jaosorior): Remove this when we pass it via t-h-t
- if hiera('enable_internal_tls', false) {
- $bind_host = 'localhost'
- } else {
- # This is executed in all of the nodes that use something neutron-related,
- # so we set the defalut, since the bind_host is only available in the
- # controllers. Either way, this will be removed and set properly via t-h-t
- # in a subsequent commit.
- $bind_host = hiera('neutron::bind_host', $::os_service_default)
- }
-
if $step >= 3 {
$rabbit_endpoints = suffix(any2array($rabbit_hosts), ":${rabbit_port}")
class { '::neutron' :
- bind_host => $bind_host,
rabbit_hosts => $rabbit_endpoints,
}
include ::neutron::config