mirror of https://github.com/ceph/ceph-ansible.git
osds: allow passing devices by path
ceph-volume didn't work when the devices where passed by path.
Since it now support it, let's allow this feature in ceph-ansible
Closes: #3812
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit 8f2c45dfd3
)
pull/3958/head
parent
addcc1e61a
commit
5053f32c15
|
@ -164,7 +164,6 @@
|
|||
- devices is defined
|
||||
- inventory_hostname in groups.get(osd_group_name, [])
|
||||
- not osd_auto_discovery|default(False)
|
||||
- osd_scenario|default('dummy') != 'lvm'
|
||||
|
||||
- name: set_fact build devices from resolved symlinks
|
||||
set_fact:
|
||||
|
@ -174,7 +173,6 @@
|
|||
- devices is defined
|
||||
- inventory_hostname in groups.get(osd_group_name, [])
|
||||
- not osd_auto_discovery|default(False)
|
||||
- osd_scenario|default('dummy') != 'lvm'
|
||||
|
||||
- name: set_fact build final devices list
|
||||
set_fact:
|
||||
|
@ -183,7 +181,6 @@
|
|||
- devices is defined
|
||||
- inventory_hostname in groups.get(osd_group_name, [])
|
||||
- not osd_auto_discovery|default(False)
|
||||
- osd_scenario|default('dummy') != 'lvm'
|
||||
|
||||
- name: set_fact ceph_uid for debian based system - non container
|
||||
set_fact:
|
||||
|
|
|
@ -19,7 +19,7 @@ osd_scenario: lvm
|
|||
copy_admin_key: true
|
||||
devices:
|
||||
- /dev/sdb
|
||||
- /dev/sdc
|
||||
- /dev/disk/by-id/ata-QEMU_HARDDISK_QM00003
|
||||
os_tuning_params:
|
||||
- { name: fs.file-max, value: 26234859 }
|
||||
ceph_conf_overrides:
|
||||
|
|
|
@ -12,7 +12,7 @@ crush_device_class: test
|
|||
osd_scenario: lvm
|
||||
copy_admin_key: true
|
||||
devices:
|
||||
- /dev/sdb
|
||||
- /dev/disk/by-id/ata-QEMU_HARDDISK_QM00002
|
||||
- /dev/sdc
|
||||
os_tuning_params:
|
||||
- { name: fs.file-max, value: 26234859 }
|
||||
|
|
Loading…
Reference in New Issue