---
-- name: find ceph keys
+- name: lookup keys in /etc/ceph
shell: ls -1 /etc/ceph/*.keyring
changed_when: false
register: ceph_keys
- check_mode: no
-- name: set keys permissions
- file:
- path: "{{ item }}"
- mode: "{{ ceph_keyring_permissions }}"
- owner: root
- group: root
- with_items:
- - "{{ ceph_keys.stdout_lines }}"
-- name: copy keys to the ansible server
+- name: "copy ceph user and bootstrap keys to the ansible server in {{ fetch_directory }}/{{ fsid }}/"
fetch:
src: "{{ item }}"
dest: "{{ fetch_directory }}/{{ fsid }}/{{ item }}"
flat: yes
+ fail_on_missing: false
run_once: true
with_items:
- "{{ ceph_keys.stdout_lines }}"
- "/var/lib/ceph/bootstrap-rgw/{{ cluster }}.keyring"
- "/var/lib/ceph/bootstrap-mds/{{ cluster }}.keyring"
- "/var/lib/ceph/bootstrap-rbd/{{ cluster }}.keyring"
+ - "/var/lib/ceph/bootstrap-mgr/{{ cluster }}.keyring"
\ No newline at end of file