mirror of https://github.com/ceph/ceph-ansible.git
10 lines
403 B
YAML
10 lines
403 B
YAML
---
|
|
- name: copy rbd-mirror bootstrap key
|
|
copy:
|
|
src: "{{ fetch_directory }}/{{ fsid }}/var/lib/ceph/bootstrap-rbd/{{ cluster }}.keyring"
|
|
dest: "/var/lib/ceph/bootstrap-rbd/{{ cluster }}.keyring"
|
|
owner: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
group: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
mode: "{{ ceph_keyring_permissions }}"
|
|
when:
|
|
- cephx |