From: Sébastien Han Date: Thu, 27 Sep 2018 07:57:26 +0000 (+0200) Subject: default: use bluestore as default object store X-Git-Tag: v3.2.0beta3~8 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=dc3319c3c4e2fb58cb1b5e6c60f165ed28260dc8;p=ceph-ansible.git default: use bluestore as default object store All tooling in Ceph is defaulting to use the bluestore objectstore for provisioning OSDs, there is no good reason for ceph-ansible to continue to default to filestore. Closes: https://github.com/ceph/ceph-ansible/issues/3149 Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1633508 Signed-off-by: Sébastien Han --- diff --git a/group_vars/all.yml.sample b/group_vars/all.yml.sample index 1eaade9b9..43fdddf5c 100644 --- a/group_vars/all.yml.sample +++ b/group_vars/all.yml.sample @@ -370,7 +370,7 @@ dummy: #osd_mkfs_type: xfs #osd_mkfs_options_xfs: -f -i size=2048 #osd_mount_options_xfs: noatime,largeio,inode64,swalloc -#osd_objectstore: filestore +#osd_objectstore: bluestore # xattrs. by default, 'filestore xattr use omap' is set to 'true' if # 'osd_mkfs_type' is set to 'ext4'; otherwise it isn't set. This can diff --git a/group_vars/rhcs.yml.sample b/group_vars/rhcs.yml.sample index d7696123c..86aa44839 100644 --- a/group_vars/rhcs.yml.sample +++ b/group_vars/rhcs.yml.sample @@ -370,7 +370,7 @@ ceph_rhcs_version: 3 #osd_mkfs_type: xfs #osd_mkfs_options_xfs: -f -i size=2048 #osd_mount_options_xfs: noatime,largeio,inode64,swalloc -#osd_objectstore: filestore +#osd_objectstore: bluestore # xattrs. by default, 'filestore xattr use omap' is set to 'true' if # 'osd_mkfs_type' is set to 'ext4'; otherwise it isn't set. This can diff --git a/roles/ceph-defaults/defaults/main.yml b/roles/ceph-defaults/defaults/main.yml index a935b7d52..6f117c9bd 100644 --- a/roles/ceph-defaults/defaults/main.yml +++ b/roles/ceph-defaults/defaults/main.yml @@ -362,7 +362,7 @@ cluster_network: "{{ public_network | regex_replace(' ', '') }}" osd_mkfs_type: xfs osd_mkfs_options_xfs: -f -i size=2048 osd_mount_options_xfs: noatime,largeio,inode64,swalloc -osd_objectstore: filestore +osd_objectstore: bluestore # xattrs. by default, 'filestore xattr use omap' is set to 'true' if # 'osd_mkfs_type' is set to 'ext4'; otherwise it isn't set. This can