2018-04-11 23:15:29 +08:00
|
|
|
---
|
|
|
|
- name: create bootstrap-mds and mds directories
|
|
|
|
file:
|
|
|
|
path: "{{ item }}"
|
|
|
|
state: directory
|
|
|
|
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') }}"
|
2018-04-11 23:15:29 +08:00
|
|
|
with_items:
|
|
|
|
- /var/lib/ceph/bootstrap-mds/
|
|
|
|
- /var/lib/ceph/mds/{{ cluster }}-{{ mds_name }}
|
|
|
|
|
2019-09-23 19:30:05 +08:00
|
|
|
- name: get keys from monitors
|
|
|
|
command: "{{ hostvars[groups.get(mon_group_name)[0]]['container_exec_cmd'] | default('') }} ceph --cluster {{ cluster }} auth get {{ item.name }}"
|
|
|
|
register: _mds_keys
|
|
|
|
with_items:
|
|
|
|
- { name: "client.bootstrap-mds", path: "/var/lib/ceph/bootstrap-mds/{{ 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] }}"
|
|
|
|
when:
|
|
|
|
- cephx | bool
|
|
|
|
- item.copy_key | bool
|
|
|
|
|
|
|
|
- name: copy ceph key(s) if needed
|
2018-04-11 23:15:29 +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: "{{ _mds_keys.results }}"
|
2018-04-11 23:15:29 +08:00
|
|
|
when:
|
2019-09-23 19:30:05 +08:00
|
|
|
- cephx | bool
|
|
|
|
- item.item.copy_key | bool
|