mirror of https://github.com/ceph/ceph-ansible.git
47 lines
1.7 KiB
YAML
47 lines
1.7 KiB
YAML
---
|
|
- name: Create bootstrap-osd and osd directories
|
|
ansible.builtin.file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
owner: "{{ ceph_uid if containerized_deployment | bool else 'ceph' }}"
|
|
group: "{{ ceph_uid if containerized_deployment | bool else 'ceph' }}"
|
|
mode: "{{ ceph_directories_mode }}"
|
|
when: cephx | bool
|
|
with_items:
|
|
- /var/lib/ceph/bootstrap-osd/
|
|
- /var/lib/ceph/osd/
|
|
|
|
- name: Get keys from monitors
|
|
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 }}"
|
|
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] }}"
|
|
run_once: true
|
|
no_log: "{{ no_log_on_ceph_key_tasks }}"
|
|
when:
|
|
- cephx | bool
|
|
- item.copy_key | bool
|
|
|
|
- name: Copy ceph key(s) if needed
|
|
ansible.builtin.copy:
|
|
dest: "{{ item.item.path }}"
|
|
content: "{{ item.stdout + '\n' }}"
|
|
owner: "{{ ceph_uid if containerized_deployment | bool else 'ceph' }}"
|
|
group: "{{ ceph_uid if containerized_deployment | bool else 'ceph' }}"
|
|
mode: "{{ ceph_keyring_permissions }}"
|
|
with_items: "{{ _osd_keys.results }}"
|
|
when:
|
|
- cephx | bool
|
|
- item is not skipped
|
|
- item.item.copy_key | bool
|
|
no_log: "{{ no_log_on_ceph_key_tasks }}"
|