2015-01-21 01:43:47 +08:00
|
|
|
---
|
2017-01-27 18:10:21 +08:00
|
|
|
- name: create bootstrap-osd and osd directories
|
2015-11-17 23:10:02 +08:00
|
|
|
file:
|
2017-01-27 18:10:21 +08:00
|
|
|
path: "{{ item }}"
|
2015-11-17 23:10:02 +08:00
|
|
|
state: directory
|
2018-04-11 23:15:29 +08:00
|
|
|
owner: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
|
|
group: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
2018-08-01 20:37:40 +08:00
|
|
|
mode: "{{ ceph_directories_mode | default('0755') }}"
|
2019-05-22 16:02:42 +08:00
|
|
|
when: cephx | bool
|
2017-01-27 18:10:21 +08:00
|
|
|
with_items:
|
|
|
|
- /var/lib/ceph/bootstrap-osd/
|
|
|
|
- /var/lib/ceph/osd/
|
2015-11-17 23:10:02 +08:00
|
|
|
|
2019-09-23 19:30:05 +08:00
|
|
|
- name: get keys from monitors
|
2020-01-27 20:31:29 +08:00
|
|
|
command: "{{ hostvars[groups[mon_group_name][0]]['container_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} auth get {{ item.name }}"
|
2019-09-23 19:30:05 +08:00
|
|
|
register: _osd_keys
|
|
|
|
with_items:
|
|
|
|
- { name: "client.bootstrap-osd", path: "/var/lib/ceph/bootstrap-osd/{{ cluster }}.keyring", copy_key: true }
|
|
|
|
- { name: "client.admin", path: "/etc/ceph/{{ cluster }}.client.admin.keyring", copy_key: "{{ copy_admin_key }}" }
|
|
|
|
delegate_to: "{{ groups.get(mon_group_name)[0] }}"
|
2019-10-02 15:57:50 +08:00
|
|
|
run_once: true
|
2019-09-23 19:30:05 +08:00
|
|
|
when:
|
|
|
|
- cephx | bool
|
|
|
|
- item.copy_key | bool
|
|
|
|
|
2018-04-11 23:15:29 +08:00
|
|
|
- name: copy ceph key(s) if needed
|
2015-10-19 09:24:47 +08:00
|
|
|
copy:
|
2019-09-23 19:30:05 +08:00
|
|
|
dest: "{{ item.item.path }}"
|
|
|
|
content: "{{ item.stdout + '\n' }}"
|
2018-04-11 23:15:29 +08:00
|
|
|
owner: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
|
|
group: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
2018-06-25 21:12:56 +08:00
|
|
|
mode: "{{ ceph_keyring_permissions }}"
|
2019-09-23 19:30:05 +08:00
|
|
|
with_items: "{{ _osd_keys.results }}"
|
2015-11-20 22:09:34 +08:00
|
|
|
when:
|
2019-05-22 16:02:42 +08:00
|
|
|
- cephx | bool
|
2019-09-23 19:30:05 +08:00
|
|
|
- item.item.copy_key | bool
|