diff --git a/manifests/ceph.pp b/manifests/ceph.pp index 2083ce386..6c0d1bb01 100644 --- a/manifests/ceph.pp +++ b/manifests/ceph.pp @@ -51,12 +51,18 @@ class openstack_integration::ceph { class { '::ceph::profile::mon': } class { '::ceph::profile::osd': } + # Needed until https://review.openstack.org/#/c/283359 lands + $ceph_migration_config = { + 'client/rbd_default_features' => { value => '15' }, + } + ensure_resources(ceph_config, $ceph_migration_config) + # Extra Ceph configuration to increase performances $ceph_extra_config = { - 'client/rbd_default_features' => { value => '15' }, 'global/osd_journal_size' => { value => '100' }, } + class { '::ceph::conf': args => $ceph_extra_config, }