mirror of https://github.com/ceph/ceph-ansible.git
ceph-defaults: exclude md devices from discovery
The md devices (RAID software) aren't excluded from the devices list in the auto discovery scenario. Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1764601 Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>pull/4813/head
parent
89f6cc54a2
commit
014f51c2a4
|
@ -384,7 +384,7 @@ dummy:
|
|||
#osd_objectstore: bluestore
|
||||
|
||||
# Any device containing these patterns in their path will be excluded.
|
||||
#osd_auto_discovery_exclude: "dm-*|loop*"
|
||||
#osd_auto_discovery_exclude: "dm-*|loop*|md*"
|
||||
|
||||
# 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
|
||||
|
|
|
@ -384,7 +384,7 @@ ceph_iscsi_config_dev: false
|
|||
#osd_objectstore: bluestore
|
||||
|
||||
# Any device containing these patterns in their path will be excluded.
|
||||
#osd_auto_discovery_exclude: "dm-*|loop*"
|
||||
#osd_auto_discovery_exclude: "dm-*|loop*|md*"
|
||||
|
||||
# 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
|
||||
|
|
|
@ -376,7 +376,7 @@ osd_mount_options_xfs: noatime,largeio,inode64,swalloc
|
|||
osd_objectstore: bluestore
|
||||
|
||||
# Any device containing these patterns in their path will be excluded.
|
||||
osd_auto_discovery_exclude: "dm-*|loop*"
|
||||
osd_auto_discovery_exclude: "dm-*|loop*|md*"
|
||||
|
||||
# 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
|
||||
|
|
Loading…
Reference in New Issue