2014-07-03 21:30:49 +08:00
|
|
|
---
|
|
|
|
## SCENARIO 4: USE A DIRECTORY INSTEAD OF A DISK FOR OSD
|
|
|
|
|
|
|
|
# NOTE (leseb): we do not check the filesystem underneath the directory
|
|
|
|
# so it is really up to you to configure this properly.
|
|
|
|
# Declaring more than one directory on the same filesystem will confuse Ceph.
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: create OSD directories
|
2014-11-06 00:57:28 +08:00
|
|
|
file: >
|
|
|
|
path={{ item }}
|
|
|
|
state=directory
|
|
|
|
owner=root
|
2014-09-05 03:14:11 +08:00
|
|
|
group=root
|
2014-07-03 21:30:49 +08:00
|
|
|
with_items: osd_directories
|
|
|
|
|
|
|
|
# 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
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: prepare OSD disk(s)
|
2014-09-05 03:14:11 +08:00
|
|
|
command: "ceph-disk prepare {{ item }}"
|
2014-07-03 21:30:49 +08:00
|
|
|
with_items: osd_directories
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
|
|
|
when: osd_directory
|
2014-07-03 21:30:49 +08:00
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: activate OSD(s)
|
2014-09-05 03:14:11 +08:00
|
|
|
command: "ceph-disk activate {{ item }}"
|
2014-07-03 21:30:49 +08:00
|
|
|
with_items: osd_directories
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2014-07-03 21:30:49 +08:00
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: start and add that the OSD service to the init sequence
|
2014-09-05 03:14:11 +08:00
|
|
|
service: >
|
2014-11-06 00:57:28 +08:00
|
|
|
name=ceph
|
|
|
|
state=started
|
2014-09-05 03:14:11 +08:00
|
|
|
enabled=yes
|