mirror of https://github.com/ceph/ceph-ansible.git
27 lines
746 B
YAML
27 lines
746 B
YAML
---
|
|
## SCENARIO 3: N JOURNAL DEVICES FOR N OSDS
|
|
|
|
- include: ../check_devices.yml
|
|
|
|
# NOTE (leseb): the prepare process must be parallelized somehow...
|
|
# if you have 64 disks with 4TB each, this will take a while
|
|
# since Ansible will sequential process the loop
|
|
|
|
# NOTE (alahouze): if the device is a partition, the parted command below has
|
|
# failed, this is why we check if the device is a partition too.
|
|
- name: prepare osd disk(s)
|
|
command: "ceph-disk prepare {{ item.2 }} {{ item.3 }}"
|
|
with_together:
|
|
- parted.results
|
|
- ispartition.results
|
|
- devices
|
|
- raw_journal_devices
|
|
changed_when: false
|
|
ignore_errors: true
|
|
when:
|
|
item.0.rc != 0 and
|
|
item.1.rc != 0 and
|
|
raw_multi_journal
|
|
|
|
- include: ../activate_osds.yml
|