2018-04-11 23:15:29 +08:00
|
|
|
---
|
|
|
|
- name: create bootstrap-mds and mds directories
|
|
|
|
file:
|
|
|
|
path: "{{ item }}"
|
|
|
|
state: directory
|
2020-09-26 00:15:02 +08:00
|
|
|
owner: "{{ ceph_uid if containerized_deployment | bool else 'ceph' }}"
|
|
|
|
group: "{{ ceph_uid if containerized_deployment | bool else 'ceph' }}"
|
2020-01-21 22:30:16 +08:00
|
|
|
mode: "{{ ceph_directories_mode }}"
|
2018-04-11 23:15:29 +08:00
|
|
|
with_items:
|
|
|
|
- /var/lib/ceph/bootstrap-mds/
|
2021-03-03 22:43:50 +08:00
|
|
|
- /var/lib/ceph/mds/{{ cluster }}-{{ ansible_facts['hostname'] }}
|
2018-04-11 23:15:29 +08:00
|
|
|
|
2019-09-23 19:30:05 +08:00
|
|
|
- name: get keys from monitors
|
2020-10-24 03:19:53 +08:00
|
|
|
ceph_key:
|
|
|
|
name: "{{ item.name }}"
|
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
output_format: plain
|
|
|
|
state: info
|
|
|
|
environment:
|
|
|
|
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
|
|
|
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
2019-09-23 19:30:05 +08:00
|
|
|
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] }}"
|
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
|
|
|
|
|
|
|
|
- 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' }}"
|
2020-09-26 00:15:02 +08:00
|
|
|
owner: "{{ ceph_uid if containerized_deployment | bool else 'ceph' }}"
|
|
|
|
group: "{{ ceph_uid if containerized_deployment | bool 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
|
2019-11-18 17:49:17 +08:00
|
|
|
- item.item.copy_key | bool
|