diff options
author | Emilien Macchi <emilien@redhat.com> | 2016-07-02 14:37:27 -0400 |
---|---|---|
committer | Emilien Macchi <emilien@redhat.com> | 2016-07-02 14:37:27 -0400 |
commit | 476ee9b1a1de80101c29b09ea4ddff916e2f721e (patch) | |
tree | 1dd5bbc59e891d665fefc15403edd309f73d783b /manifests/profile/pacemaker/neutron/dhcp.pp | |
parent | 389e7b42c0c1d9e81de928c6cc6763c294a9db6b (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/dhcp.pp')
-rw-r--r-- | manifests/profile/pacemaker/neutron/dhcp.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/profile/pacemaker/neutron/dhcp.pp b/manifests/profile/pacemaker/neutron/dhcp.pp index 1f3b178..d738f21 100644 --- a/manifests/profile/pacemaker/neutron/dhcp.pp +++ b/manifests/profile/pacemaker/neutron/dhcp.pp @@ -25,11 +25,11 @@ # # [*pacemaker_master*] # (Optional) The hostname of the pacemaker master -# Defaults to hiera('bootstrap_nodeid') +# Defaults to hiera('bootstrap_nodeid', undef) # class tripleo::profile::pacemaker::neutron::dhcp ( $step = hiera('step'), - $pacemaker_master = hiera('bootstrap_nodeid'), + $pacemaker_master = hiera('bootstrap_nodeid', undef), ) { include ::neutron::params |