2016-02-06 02:50:57 +08:00
|
|
|
---
|
2017-07-17 16:10:23 +08:00
|
|
|
# only create fetch directory when:
|
|
|
|
# we are not populating kv_store with default ceph.conf AND host is a mon
|
|
|
|
# OR
|
|
|
|
# we are not population kv_store with default ceph.conf AND there at least 1 nfs in nfs group AND host is the first nfs
|
2016-07-14 01:15:01 +08:00
|
|
|
- name: create a local fetch directory if it does not exist
|
|
|
|
local_action: file path={{ fetch_directory }} state=directory
|
|
|
|
changed_when: false
|
|
|
|
become: false
|
|
|
|
run_once: true
|
2017-07-17 16:10:23 +08:00
|
|
|
when:
|
|
|
|
- (cephx or generate_fsid)
|
|
|
|
- (not mon_containerized_default_ceph_conf_with_kv and
|
|
|
|
(inventory_hostname in groups.get(mon_group_name, []))) or
|
|
|
|
(not mon_containerized_default_ceph_conf_with_kv and
|
|
|
|
((groups.get(nfs_group_name, []) | length > 0)
|
|
|
|
and (inventory_hostname == groups.get(nfs_group_name, [])[0])))
|
2016-07-14 01:15:01 +08:00
|
|
|
|
|
|
|
- name: generate cluster uuid
|
|
|
|
local_action: shell python -c 'import uuid; print(str(uuid.uuid4()))' | tee {{ fetch_directory }}/ceph_cluster_uuid.conf
|
|
|
|
creates="{{ fetch_directory }}/ceph_cluster_uuid.conf"
|
|
|
|
register: cluster_uuid
|
|
|
|
become: false
|
|
|
|
when: generate_fsid
|
|
|
|
|
|
|
|
- name: read cluster uuid if it already exists
|
|
|
|
local_action: command cat {{ fetch_directory }}/ceph_cluster_uuid.conf
|
|
|
|
removes="{{ fetch_directory }}/ceph_cluster_uuid.conf"
|
|
|
|
changed_when: false
|
|
|
|
register: cluster_uuid
|
2016-11-27 04:05:32 +08:00
|
|
|
always_run: true
|
2016-07-14 01:15:01 +08:00
|
|
|
become: false
|
|
|
|
when: generate_fsid
|
|
|
|
|
2016-12-08 01:22:39 +08:00
|
|
|
- name: "generate {{ cluster }}.conf configuration file"
|
2016-04-06 01:09:09 +08:00
|
|
|
action: config_template
|
|
|
|
args:
|
2016-06-09 22:56:44 +08:00
|
|
|
src: "{{ playbook_dir }}/roles/ceph-common/templates/ceph.conf.j2"
|
2017-06-23 22:05:35 +08:00
|
|
|
dest: "{{ ceph_conf_key_directory }}/{{ cluster }}.conf"
|
2016-02-06 02:50:57 +08:00
|
|
|
owner: "root"
|
|
|
|
group: "root"
|
|
|
|
mode: "0644"
|
|
|
|
config_overrides: "{{ ceph_conf_overrides }}"
|
|
|
|
config_type: ini
|
2017-07-17 16:10:23 +08:00
|
|
|
when:
|
|
|
|
- (not mon_containerized_default_ceph_conf_with_kv and
|
|
|
|
(inventory_hostname in groups.get(mon_group_name, []))) or
|
|
|
|
(not mon_containerized_default_ceph_conf_with_kv and
|
|
|
|
((groups.get(nfs_group_name, []) | length > 0)
|
|
|
|
and (inventory_hostname == groups.get(nfs_group_name, [])[0])))
|
2017-04-13 01:57:33 +08:00
|
|
|
|
|
|
|
- name: set fsid fact when generate_fsid = true
|
|
|
|
set_fact:
|
|
|
|
fsid: "{{ cluster_uuid.stdout }}"
|
|
|
|
when: generate_fsid
|