2017-08-04 22:57:46 +08:00
|
|
|
---
|
|
|
|
# ceph-common
|
|
|
|
- block:
|
2018-02-21 22:56:32 +08:00
|
|
|
- name: create ceph conf directory
|
2017-08-04 22:57:46 +08:00
|
|
|
file:
|
2018-02-21 22:56:32 +08:00
|
|
|
path: "/etc/ceph"
|
2017-08-04 22:57:46 +08:00
|
|
|
state: directory
|
|
|
|
owner: "ceph"
|
|
|
|
group: "ceph"
|
|
|
|
mode: "0755"
|
|
|
|
|
|
|
|
- name: "generate ceph configuration file: {{ cluster }}.conf"
|
|
|
|
action: config_template
|
|
|
|
args:
|
|
|
|
src: ceph.conf.j2
|
2018-02-21 22:56:32 +08:00
|
|
|
dest: /etc/ceph/{{ cluster }}.conf
|
2017-08-04 22:57:46 +08:00
|
|
|
owner: "ceph"
|
|
|
|
group: "ceph"
|
|
|
|
mode: "0644"
|
2018-03-12 22:13:53 +08:00
|
|
|
config_overrides: "{{ ceph_conf_overrides }}"
|
2017-08-04 22:57:46 +08:00
|
|
|
config_type: ini
|
|
|
|
notify:
|
|
|
|
- restart ceph mons
|
|
|
|
- restart ceph osds
|
|
|
|
- restart ceph mdss
|
|
|
|
- restart ceph rgws
|
2017-10-18 00:28:06 +08:00
|
|
|
- restart ceph mgrs
|
|
|
|
- restart ceph rbdmirrors
|
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
|
syntax: change local_action syntax
Use a nicer syntax for `local_action` tasks.
We used to have oneliner like this:
```
local_action: wait_for port=22 host={{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }} state=started delay=10 timeout=500 }}
```
The usual syntax:
```
local_action:
module: wait_for
port: 22
host: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
state: started
delay: 10
timeout: 500
```
is nicer and kind of way to keep consistency regarding the whole
playbook.
This also fix a potential issue about missing quotation :
```
Traceback (most recent call last):
File "/tmp/ansible_wQtWsi/ansible_module_command.py", line 213, in <module>
main()
File "/tmp/ansible_wQtWsi/ansible_module_command.py", line 185, in main
rc, out, err = module.run_command(args, executable=executable, use_unsafe_shell=shell, encoding=None, data=stdin)
File "/tmp/ansible_wQtWsi/ansible_modlib.zip/ansible/module_utils/basic.py", line 2710, in run_command
File "/usr/lib64/python2.7/shlex.py", line 279, in split
return list(lex) File "/usr/lib64/python2.7/shlex.py", line 269, in next
token = self.get_token()
File "/usr/lib64/python2.7/shlex.py", line 96, in get_token
raw = self.read_token()
File "/usr/lib64/python2.7/shlex.py", line 172, in read_token
raise ValueError, "No closing quotation"
ValueError: No closing quotation
```
writing `local_action: shell echo {{ fsid }} | tee {{ fetch_directory }}/ceph_cluster_uuid.conf`
can cause trouble because it's complaining with missing quotes, this fix solves this issue.
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1510555
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
2018-01-31 16:23:28 +08:00
|
|
|
local_action:
|
|
|
|
module: file
|
|
|
|
path: "{{ fetch_directory }}"
|
|
|
|
state: directory
|
2017-08-04 22:57:46 +08:00
|
|
|
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
|
syntax: change local_action syntax
Use a nicer syntax for `local_action` tasks.
We used to have oneliner like this:
```
local_action: wait_for port=22 host={{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }} state=started delay=10 timeout=500 }}
```
The usual syntax:
```
local_action:
module: wait_for
port: 22
host: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
state: started
delay: 10
timeout: 500
```
is nicer and kind of way to keep consistency regarding the whole
playbook.
This also fix a potential issue about missing quotation :
```
Traceback (most recent call last):
File "/tmp/ansible_wQtWsi/ansible_module_command.py", line 213, in <module>
main()
File "/tmp/ansible_wQtWsi/ansible_module_command.py", line 185, in main
rc, out, err = module.run_command(args, executable=executable, use_unsafe_shell=shell, encoding=None, data=stdin)
File "/tmp/ansible_wQtWsi/ansible_modlib.zip/ansible/module_utils/basic.py", line 2710, in run_command
File "/usr/lib64/python2.7/shlex.py", line 279, in split
return list(lex) File "/usr/lib64/python2.7/shlex.py", line 269, in next
token = self.get_token()
File "/usr/lib64/python2.7/shlex.py", line 96, in get_token
raw = self.read_token()
File "/usr/lib64/python2.7/shlex.py", line 172, in read_token
raise ValueError, "No closing quotation"
ValueError: No closing quotation
```
writing `local_action: shell echo {{ fsid }} | tee {{ fetch_directory }}/ceph_cluster_uuid.conf`
can cause trouble because it's complaining with missing quotes, this fix solves this issue.
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1510555
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
2018-01-31 16:23:28 +08:00
|
|
|
local_action:
|
|
|
|
module: shell
|
|
|
|
python -c 'import uuid; print(str(uuid.uuid4()))' | tee {{ fetch_directory }}/ceph_cluster_uuid.conf
|
|
|
|
creates: "{{ fetch_directory }}/ceph_cluster_uuid.conf"
|
2017-08-04 22:57:46 +08:00
|
|
|
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
|
syntax: change local_action syntax
Use a nicer syntax for `local_action` tasks.
We used to have oneliner like this:
```
local_action: wait_for port=22 host={{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }} state=started delay=10 timeout=500 }}
```
The usual syntax:
```
local_action:
module: wait_for
port: 22
host: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
state: started
delay: 10
timeout: 500
```
is nicer and kind of way to keep consistency regarding the whole
playbook.
This also fix a potential issue about missing quotation :
```
Traceback (most recent call last):
File "/tmp/ansible_wQtWsi/ansible_module_command.py", line 213, in <module>
main()
File "/tmp/ansible_wQtWsi/ansible_module_command.py", line 185, in main
rc, out, err = module.run_command(args, executable=executable, use_unsafe_shell=shell, encoding=None, data=stdin)
File "/tmp/ansible_wQtWsi/ansible_modlib.zip/ansible/module_utils/basic.py", line 2710, in run_command
File "/usr/lib64/python2.7/shlex.py", line 279, in split
return list(lex) File "/usr/lib64/python2.7/shlex.py", line 269, in next
token = self.get_token()
File "/usr/lib64/python2.7/shlex.py", line 96, in get_token
raw = self.read_token()
File "/usr/lib64/python2.7/shlex.py", line 172, in read_token
raise ValueError, "No closing quotation"
ValueError: No closing quotation
```
writing `local_action: shell echo {{ fsid }} | tee {{ fetch_directory }}/ceph_cluster_uuid.conf`
can cause trouble because it's complaining with missing quotes, this fix solves this issue.
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1510555
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
2018-01-31 16:23:28 +08:00
|
|
|
local_action:
|
|
|
|
module: command
|
|
|
|
cat {{ fetch_directory }}/ceph_cluster_uuid.conf
|
|
|
|
removes: "{{ fetch_directory }}/ceph_cluster_uuid.conf"
|
2017-08-04 22:57:46 +08:00
|
|
|
changed_when: false
|
|
|
|
register: cluster_uuid
|
2017-10-25 22:53:34 +08:00
|
|
|
check_mode: no
|
2017-08-04 22:57:46 +08:00
|
|
|
become: false
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
|
|
|
- generate_fsid
|
2017-08-04 22:57:46 +08:00
|
|
|
|
|
|
|
- name: ensure /etc/ceph exists
|
|
|
|
file:
|
|
|
|
path: /etc/ceph
|
|
|
|
state: directory
|
2018-04-03 19:41:07 +08:00
|
|
|
owner: "{{ ceph_uid }}"
|
|
|
|
group: "{{ ceph_uid }}"
|
2017-08-04 22:57:46 +08:00
|
|
|
mode: 0755
|
|
|
|
|
|
|
|
- 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 mgrs
|
2017-10-18 00:28:06 +08:00
|
|
|
- restart ceph rbdmirrors
|
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
|