2015-01-09 01:27:43 +08:00
|
|
|
---
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: get osd path
|
2015-01-09 01:27:43 +08:00
|
|
|
shell: "df | grep {{ item }} | awk '{print $6}'"
|
2016-11-03 17:16:33 +08:00
|
|
|
with_items: "{{ devices }}"
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2015-07-29 00:21:15 +08:00
|
|
|
failed_when: false
|
2016-11-27 05:16:07 +08:00
|
|
|
always_run: true
|
2015-06-26 06:26:03 +08:00
|
|
|
register: osd_path
|
2015-01-09 01:27:43 +08:00
|
|
|
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: get osd id
|
2015-01-09 01:27:43 +08:00
|
|
|
command: cat {{ item.stdout }}/whoami
|
2016-11-03 17:16:33 +08:00
|
|
|
with_items: "{{ osd_path.results }}"
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2015-07-29 00:21:15 +08:00
|
|
|
failed_when: false
|
2016-11-27 05:16:07 +08:00
|
|
|
always_run: true
|
2016-03-08 07:40:50 +08:00
|
|
|
register: osd_id_non_dir_scenario
|
|
|
|
|
|
|
|
# NOTE (leseb): we must do this because of
|
|
|
|
# https://github.com/ansible/ansible/issues/4297
|
|
|
|
- name: combine osd_path results
|
|
|
|
set_fact:
|
2017-04-21 07:47:06 +08:00
|
|
|
combined_osd_id: "{{ osd_id_non_dir_scenario }}"
|
2015-01-09 01:27:43 +08:00
|
|
|
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: create a ceph fragment and assemble directory
|
2015-10-19 09:24:47 +08:00
|
|
|
file:
|
|
|
|
path: "{{ item }}"
|
|
|
|
state: directory
|
2017-01-20 17:14:35 +08:00
|
|
|
owner: "ceph"
|
|
|
|
group: "ceph"
|
|
|
|
mode: "0755"
|
2015-01-09 01:27:43 +08:00
|
|
|
with_items:
|
|
|
|
- /etc/ceph/ceph.d/
|
|
|
|
- /etc/ceph/ceph.d/osd_fragments
|
|
|
|
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: create the osd fragment
|
2015-10-19 09:24:47 +08:00
|
|
|
template:
|
|
|
|
src: osd.conf.j2
|
|
|
|
dest: /etc/ceph/ceph.d/osd_fragments/osd.{{ item.stdout }}.conf
|
2017-01-20 17:14:35 +08:00
|
|
|
owner: "ceph"
|
|
|
|
group: "ceph"
|
|
|
|
mode: "0644"
|
2016-11-03 17:16:33 +08:00
|
|
|
with_items: "{{ combined_osd_id.results }}"
|
2015-01-09 01:27:43 +08:00
|
|
|
|
2016-03-29 21:37:31 +08:00
|
|
|
- name: copy {{ cluster }}.conf for assembling
|
|
|
|
command: cp /etc/ceph/{{ cluster }}.conf /etc/ceph/ceph.d/
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2015-01-09 01:27:43 +08:00
|
|
|
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: assemble osd sections
|
2015-10-19 09:24:47 +08:00
|
|
|
assemble:
|
|
|
|
src: /etc/ceph/ceph.d/osd_fragments/
|
|
|
|
dest: /etc/ceph/ceph.d/osd.conf
|
2017-01-20 17:14:35 +08:00
|
|
|
owner: "ceph"
|
|
|
|
group: "ceph"
|
|
|
|
mode: "0644"
|
2015-01-09 01:27:43 +08:00
|
|
|
|
2016-03-29 21:37:31 +08:00
|
|
|
- name: assemble {{ cluster }}.conf and osd fragments
|
2015-10-19 09:24:47 +08:00
|
|
|
assemble:
|
|
|
|
src: /etc/ceph/ceph.d/
|
2016-03-29 21:37:31 +08:00
|
|
|
dest: /etc/ceph/{{ cluster }}.conf
|
2017-04-11 20:27:19 +08:00
|
|
|
regexp: "^(({{cluster}})|(osd)).conf$"
|
2017-01-20 17:14:35 +08:00
|
|
|
owner: "ceph"
|
|
|
|
group: "ceph"
|
|
|
|
mode: "0644"
|