Move rbd_default_features to ensure_resources

We are working to land I477640c5db2cc84622da7734fb54cfe7740bd137
which creates a duplicate declration, we should be able to move from create
to ensure resource to minimize this until it lands.

Related_bug: 1633552

Change-Id: I95cafec9160f5c3b1610a0408f2f80d567fcaa89
This commit is contained in:
Andrew Woodward 2016-10-17 08:53:07 -07:00 committed by Andrew Woodward
parent d7d1321081
commit 7a95d66faf

@ -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,
}