aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/pacemaker/neutron.pp
diff options
context:
space:
mode:
authorEmilien Macchi <emilien@redhat.com>2016-07-02 14:37:27 -0400
committerEmilien Macchi <emilien@redhat.com>2016-07-02 14:37:27 -0400
commit476ee9b1a1de80101c29b09ea4ddff916e2f721e (patch)
tree1dd5bbc59e891d665fefc15403edd309f73d783b /manifests/profile/pacemaker/neutron.pp
parent389e7b42c0c1d9e81de928c6cc6763c294a9db6b (diff)
Set bootstrap_nodeid to undef by default
bootstrap_nodeid is a parameter looked-up with Hiera but only set on controllers. With the transition to composable roles, we don't need to set this parameter on compute nodes, so let's just default this value by undef so we can deploy Neutron classes on compute nodes. Change-Id: I94034f696c163969a7489d9cb0a20423210d3b84
Diffstat (limited to 'manifests/profile/pacemaker/neutron.pp')
-rw-r--r--manifests/profile/pacemaker/neutron.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/profile/pacemaker/neutron.pp b/manifests/profile/pacemaker/neutron.pp
index 2af53dc..fff731d 100644
--- a/manifests/profile/pacemaker/neutron.pp
+++ b/manifests/profile/pacemaker/neutron.pp
@@ -24,7 +24,7 @@
#
# [*pacemaker_master*]
# (Optional) The hostname of the pacemaker master
-# Defaults to hiera('bootstrap_nodeid')
+# Defaults to hiera('bootstrap_nodeid', undef)
#
# [*enable_l3*]
# (Optional) Whether to include the Neutron L3 agent pacemaker profile
@@ -44,7 +44,7 @@
#
class tripleo::profile::pacemaker::neutron (
$step = hiera('step'),
- $pacemaker_master = hiera('bootstrap_nodeid'),
+ $pacemaker_master = hiera('bootstrap_nodeid', undef),
# We can drop the hiera defaults once the neutron roles are decomposed
$enable_l3 = hiera('neutron::enable_l3_agent', false),
$enable_dhcp = hiera('neutron::enable_dhcp_agent', false),