2017-08-04 22:57:46 +08:00
|
|
|
---
|
|
|
|
# ceph-common
|
|
|
|
- block:
|
|
|
|
- name: create ceph conf directory and assemble directory
|
|
|
|
file:
|
|
|
|
path: "{{ item }}"
|
|
|
|
state: directory
|
|
|
|
owner: "ceph"
|
|
|
|
group: "ceph"
|
|
|
|
mode: "0755"
|
|
|
|
with_items:
|
|
|
|
- /etc/ceph/
|
|
|
|
- /etc/ceph/ceph.d/
|
|
|
|
|
|
|
|
- name: template ceph_conf_overrides
|
2017-08-23 03:42:32 +08:00
|
|
|
local_action: copy content="{{ ceph_conf_overrides }}" dest="{{ fetch_directory }}/ceph_conf_overrides_temp"
|
2017-08-24 23:05:46 +08:00
|
|
|
become: false
|
2017-08-04 22:57:46 +08:00
|
|
|
run_once: true
|
|
|
|
|
|
|
|
- name: get rendered ceph_conf_overrides
|
2017-08-23 03:42:32 +08:00
|
|
|
local_action: set_fact ceph_conf_overrides_rendered="{{ lookup('template', '{{ fetch_directory }}/ceph_conf_overrides_temp') | from_yaml }}"
|
2017-08-24 23:05:46 +08:00
|
|
|
become: false
|
2017-08-04 22:57:46 +08:00
|
|
|
run_once: true
|
|
|
|
|
|
|
|
- name: remove tmp template file for ceph_conf_overrides
|
2017-08-23 03:42:32 +08:00
|
|
|
local_action: file path="{{ fetch_directory }}/ceph_conf_overrides_temp" state=absent
|
2017-08-24 23:05:46 +08:00
|
|
|
become: false
|
2017-08-04 22:57:46 +08:00
|
|
|
run_once: true
|
|
|
|
|
|
|
|
- name: "generate ceph configuration file: {{ cluster }}.conf"
|
|
|
|
action: config_template
|
|
|
|
args:
|
|
|
|
src: ceph.conf.j2
|
|
|
|
dest: /etc/ceph/ceph.d/{{ cluster }}.conf
|
|
|
|
owner: "ceph"
|
|
|
|
group: "ceph"
|
|
|
|
mode: "0644"
|
|
|
|
config_overrides: "{{ ceph_conf_overrides_rendered }}"
|
|
|
|
config_type: ini
|
|
|
|
|
|
|
|
- name: assemble {{ cluster }}.conf and fragments
|
|
|
|
assemble:
|
|
|
|
src: /etc/ceph/ceph.d/
|
|
|
|
dest: /etc/ceph/{{ cluster }}.conf
|
|
|
|
regexp: "^(({{cluster}})|(osd)).conf$"
|
|
|
|
owner: "ceph"
|
|
|
|
group: "ceph"
|
|
|
|
mode: "0644"
|
|
|
|
notify:
|
|
|
|
- restart ceph mons
|
|
|
|
- restart ceph osds
|
|
|
|
- restart ceph mdss
|
|
|
|
- restart ceph rgws
|
|
|
|
- restart ceph nfss
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
|
|
|
- not containerized_deployment|bool
|
2017-08-04 22:57:46 +08:00
|
|
|
|
|
|
|
# ceph-docker-common
|
|
|
|
# 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
|
|
|
|
- block:
|
|
|
|
- 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
|
|
|
|
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])))
|
|
|
|
|
|
|
|
- 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
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
|
|
|
- generate_fsid
|
2017-08-04 22:57:46 +08:00
|
|
|
|
|
|
|
- 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
|
|
|
|
become: false
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
|
|
|
- generate_fsid
|
2017-10-12 21:29:41 +08:00
|
|
|
tags:
|
|
|
|
- always
|
2017-08-04 22:57:46 +08:00
|
|
|
|
|
|
|
- name: ensure /etc/ceph exists
|
|
|
|
file:
|
|
|
|
path: /etc/ceph
|
|
|
|
state: directory
|
|
|
|
owner: 'ceph'
|
|
|
|
group: 'ceph'
|
|
|
|
mode: 0755
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
|
|
|
- groups.get(mon_group_name, []) | length == 0
|
2017-08-04 22:57:46 +08:00
|
|
|
|
|
|
|
- name: "generate {{ cluster }}.conf configuration file"
|
|
|
|
action: config_template
|
|
|
|
args:
|
|
|
|
src: "ceph.conf.j2"
|
|
|
|
dest: "{{ ceph_conf_key_directory }}/{{ cluster }}.conf"
|
|
|
|
owner: "root"
|
|
|
|
group: "root"
|
|
|
|
mode: "0644"
|
|
|
|
config_overrides: "{{ ceph_conf_overrides }}"
|
|
|
|
config_type: ini
|
|
|
|
notify:
|
|
|
|
- restart ceph mons
|
|
|
|
- restart ceph osds
|
|
|
|
- restart ceph mdss
|
|
|
|
- restart ceph rgws
|
2017-09-27 08:08:40 +08:00
|
|
|
- restart ceph rbdmirrors
|
|
|
|
- restart ceph mgrs
|
2017-08-04 22:57:46 +08:00
|
|
|
|
|
|
|
- name: set fsid fact when generate_fsid = true
|
|
|
|
set_fact:
|
|
|
|
fsid: "{{ cluster_uuid.stdout }}"
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
|
|
|
- generate_fsid
|
|
|
|
when:
|
|
|
|
- containerized_deployment|bool
|