diff options
Diffstat (limited to 'puppet/manifests/overcloud_controller.pp')
-rw-r--r-- | puppet/manifests/overcloud_controller.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/puppet/manifests/overcloud_controller.pp b/puppet/manifests/overcloud_controller.pp index 2e83b8c3..23e8adf0 100644 --- a/puppet/manifests/overcloud_controller.pp +++ b/puppet/manifests/overcloud_controller.pp @@ -150,6 +150,14 @@ if hiera('step') >= 1 { # pre-install swift here so we can build rings include ::swift + # don't install Ceph if FSID is not provided + if hiera('ceph::profile::params::fsid', false) { + class { 'ceph::profile::params': + mon_initial_members => downcase(hiera('ceph_mon_initial_members')) + } + include ::ceph::profile::mon + } + } #END STEP 1 if hiera('step') >= 2 { |