mirror of https://github.com/ceph/ceph-ansible.git
30 lines
778 B
YAML
30 lines
778 B
YAML
|
---
|
||
|
# NOTE (leseb): the mds container needs the admin key
|
||
|
# so it can create the mds pools for cephfs
|
||
|
- name: set config and keys paths
|
||
|
set_fact:
|
||
|
ceph_config_keys:
|
||
|
- /etc/ceph/ceph.conf
|
||
|
- /etc/ceph/ceph.client.admin.keyring
|
||
|
|
||
|
- name: stat for ceph config and keys
|
||
|
local_action: stat path={{ fetch_directory }}/docker_mon_files/{{ item }}
|
||
|
with_items: ceph_config_keys
|
||
|
changed_when: false
|
||
|
become: false
|
||
|
failed_when: false
|
||
|
register: statconfig
|
||
|
|
||
|
- name: try to fetch ceph config and keys
|
||
|
copy:
|
||
|
src: "{{ fetch_directory }}/docker_mon_files/{{ item.0 }}"
|
||
|
dest: "{{ item.0 }}"
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: 0644
|
||
|
changed_when: false
|
||
|
with_together:
|
||
|
- ceph_config_keys
|
||
|
- statconfig.results
|
||
|
when: item.1.stat.exists == true
|