ceph-fetch-keys role currently works only if cluster name is 'ceph'.
This commit allows to set custom cluster name in 'defaults' in the same
fashion as other roles do.
---
fetch_directory: fetch/
+cluster: ceph
run_once: true
with_items:
- "{{ ceph_keys.stdout_lines }}"
- - /var/lib/ceph/bootstrap-osd/ceph.keyring
- - /var/lib/ceph/bootstrap-rgw/ceph.keyring
- - /var/lib/ceph/bootstrap-mds/ceph.keyring
+ - "/var/lib/ceph/bootstrap-osd/{{ cluster }}.keyring"
+ - "/var/lib/ceph/bootstrap-rgw/{{ cluster }}.keyring"
+ - "/var/lib/ceph/bootstrap-mds/{{ cluster }}.keyring"