mirror of https://github.com/ceph/ceph-ansible.git
22 lines
834 B
YAML
22 lines
834 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
|
|
|
|
- name: copy ceph admin keyring if needed
|
|
copy:
|
|
src: "{{ fetch_directory }}/{{ fsid }}/etc/ceph/{{ cluster }}.client.admin.keyring"
|
|
dest: "/etc/ceph/{{ cluster }}.client.admin.keyring"
|
|
owner: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
group: "{{ ceph_uid if containerized_deployment else 'ceph' }}"
|
|
mode: "{{ ceph_keyring_permissions }}"
|
|
when:
|
|
- cephx | bool
|
|
- copy_admin_key | bool
|