2016-07-12 18:15:22 +08:00
|
|
|
---
|
|
|
|
# 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:
|
2016-08-23 18:03:05 +08:00
|
|
|
- /etc/ceph/{{ cluster }}.conf
|
|
|
|
- /etc/ceph/{{ cluster }}.client.admin.keyring
|
2016-07-12 18:15:22 +08:00
|
|
|
|
|
|
|
- name: stat for ceph config and keys
|
|
|
|
local_action: stat path={{ fetch_directory }}/docker_mon_files/{{ item }}
|
2016-11-03 17:16:33 +08:00
|
|
|
with_items: "{{ ceph_config_keys }}"
|
2016-07-12 18:15:22 +08:00
|
|
|
changed_when: false
|
|
|
|
become: false
|
|
|
|
failed_when: false
|
2016-11-27 05:21:42 +08:00
|
|
|
always_run: true
|
2016-07-12 18:15:22 +08:00
|
|
|
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:
|
2016-11-03 17:16:33 +08:00
|
|
|
- "{{ ceph_config_keys }}"
|
|
|
|
- "{{ statconfig.results }}"
|
2016-07-12 18:15:22 +08:00
|
|
|
when: item.1.stat.exists == true
|