2015-07-28 23:15:19 +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:
|
|
|
|
- /etc/ceph/ceph.conf
|
|
|
|
- /etc/ceph/ceph.client.admin.keyring
|
|
|
|
- /var/lib/ceph/bootstrap-mds/ceph.keyring
|
|
|
|
|
|
|
|
- name: stat for ceph config and keys
|
2016-02-08 05:30:32 +08:00
|
|
|
local_action: stat path={{ fetch_directory }}/docker_mon_files/{{ item }}
|
2015-07-28 23:15:19 +08:00
|
|
|
with_items: ceph_config_keys
|
|
|
|
changed_when: false
|
2016-02-04 19:36:46 +08:00
|
|
|
become: false
|
2015-07-29 00:21:15 +08:00
|
|
|
failed_when: false
|
2015-07-28 23:15:19 +08:00
|
|
|
register: statconfig
|
|
|
|
|
|
|
|
- name: try to fetch ceph config and keys
|
2015-10-19 10:56:02 +08:00
|
|
|
copy:
|
|
|
|
src: "{{ fetch_directory }}/docker_mon_files/{{ item.0 }}"
|
|
|
|
dest: "{{ item.0 }}"
|
|
|
|
owner: root
|
|
|
|
group: root
|
2016-02-22 01:21:19 +08:00
|
|
|
mode: 0644
|
2015-07-30 17:33:08 +08:00
|
|
|
changed_when: false
|
2015-07-28 23:15:19 +08:00
|
|
|
with_together:
|
|
|
|
- ceph_config_keys
|
|
|
|
- statconfig.results
|
|
|
|
when: item.1.stat.exists == true
|