diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-09-05 13:47:06 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-09-05 13:47:06 +0000 |
commit | e0702c336eb1775b22e75bea807629f4da71918f (patch) | |
tree | 080ba75d3ec3f02ac96be7befdb2a1e0f0552e11 /manifests/profile/base/ironic/conductor.pp | |
parent | 0a865a74685429b3175de9647510a27c40d9ea00 (diff) | |
parent | 2f06663fa20ed52ae43b0d3dbf77f7068771b622 (diff) |
Merge "Ironic: manage PXE environment for conductors"
Diffstat (limited to 'manifests/profile/base/ironic/conductor.pp')
-rw-r--r-- | manifests/profile/base/ironic/conductor.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/profile/base/ironic/conductor.pp b/manifests/profile/base/ironic/conductor.pp index 2cb61fb..d8a6e7d 100644 --- a/manifests/profile/base/ironic/conductor.pp +++ b/manifests/profile/base/ironic/conductor.pp @@ -22,8 +22,13 @@ # (Optional) The current step of the deployment # Defaults to hiera('step') # +# [*manage_pxe*] +# (Optional) Whether to manage the PXE/iPXE environment for the conductor. +# Defaults to true +# class tripleo::profile::base::ironic::conductor ( $step = hiera('step'), + $manage_pxe = true, ) { include ::tripleo::profile::base::ironic @@ -32,5 +37,8 @@ class tripleo::profile::base::ironic::conductor ( include ::ironic::drivers::ipmi include ::ironic::drivers::pxe include ::ironic::conductor + if $manage_pxe { + include ::ironic::pxe + } } } |