2016-04-27 21:17:56 +08:00
|
|
|
---
|
2018-03-21 03:13:28 +08:00
|
|
|
- name: check if it is atomic host
|
|
|
|
stat:
|
|
|
|
path: /run/ostree-booted
|
|
|
|
register: stat_ostree
|
|
|
|
|
|
|
|
- name: set_fact is_atomic
|
|
|
|
set_fact:
|
|
|
|
is_atomic: "{{ stat_ostree.stat.exists }}"
|
|
|
|
|
2019-11-26 23:10:17 +08:00
|
|
|
- name: import_tasks container_binary.yml
|
|
|
|
import_tasks: container_binary.yml
|
2018-11-08 17:02:37 +08:00
|
|
|
|
|
|
|
- name: set_fact is_podman
|
|
|
|
set_fact:
|
|
|
|
is_podman: "{{ podman_binary.stat.exists }}"
|
|
|
|
|
2019-08-22 23:46:05 +08:00
|
|
|
# In case ansible_python_interpreter is set by the user,
|
2019-09-04 15:56:10 +08:00
|
|
|
# ansible will not discover python and discovered_interpreter_python
|
2019-08-22 23:46:05 +08:00
|
|
|
# will not be set
|
2019-09-04 15:56:10 +08:00
|
|
|
- name: set_fact discovered_interpreter_python
|
2019-08-22 23:46:05 +08:00
|
|
|
set_fact:
|
2019-09-04 15:56:10 +08:00
|
|
|
discovered_interpreter_python: "{{ ansible_python_interpreter }}"
|
2019-08-22 23:46:05 +08:00
|
|
|
when: ansible_python_interpreter is defined
|
|
|
|
|
2019-01-08 17:57:51 +08:00
|
|
|
# Set ceph_release to ceph_stable by default
|
|
|
|
- name: set_fact ceph_release ceph_stable_release
|
|
|
|
set_fact:
|
|
|
|
ceph_release: "{{ ceph_stable_release }}"
|
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: set_fact monitor_name ansible_hostname
|
|
|
|
set_fact:
|
2017-07-29 05:02:51 +08:00
|
|
|
monitor_name: "{{ ansible_hostname }}"
|
2019-05-22 16:02:42 +08:00
|
|
|
when: not mon_use_fqdn | bool
|
2017-07-29 05:02:51 +08:00
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: set_fact monitor_name ansible_fqdn
|
|
|
|
set_fact:
|
2017-07-29 05:02:51 +08:00
|
|
|
monitor_name: "{{ ansible_fqdn }}"
|
2019-05-22 16:02:42 +08:00
|
|
|
when: mon_use_fqdn | bool
|
2016-04-27 21:17:56 +08:00
|
|
|
|
2019-05-14 20:51:32 +08:00
|
|
|
- name: set_fact container_exec_cmd
|
containers: fix bug when looking for existing cluster
When containerized deployment, `docker_exec_cmd` is not set before the
task which try to retrieve the current fsid is played, it means it
considers there is no existing fsid and try to generate a new one.
Typical error:
```
ok: [mon0 -> mon0] => {
"changed": false,
"cmd": [
"ceph",
"--connect-timeout",
"3",
"--cluster",
"test",
"fsid"
],
"delta": "0:00:00.179909",
"end": "2018-01-09 10:36:58.759846",
"failed": false,
"failed_when_result": false,
"rc": 1,
"start": "2018-01-09 10:36:58.579937"
}
STDERR:
Error initializing cluster client: Error('error calling conf_read_file: errno EINVAL',)
```
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
2018-01-10 17:18:27 +08:00
|
|
|
set_fact:
|
2019-05-14 20:51:32 +08:00
|
|
|
container_exec_cmd: "{{ container_binary }} exec ceph-mon-{{ hostvars[groups[mon_group_name][0]]['ansible_hostname'] if not rolling_update else hostvars[mon_host | default(groups[mon_group_name][0])]['ansible_hostname'] }}"
|
containers: fix bug when looking for existing cluster
When containerized deployment, `docker_exec_cmd` is not set before the
task which try to retrieve the current fsid is played, it means it
considers there is no existing fsid and try to generate a new one.
Typical error:
```
ok: [mon0 -> mon0] => {
"changed": false,
"cmd": [
"ceph",
"--connect-timeout",
"3",
"--cluster",
"test",
"fsid"
],
"delta": "0:00:00.179909",
"end": "2018-01-09 10:36:58.759846",
"failed": false,
"failed_when_result": false,
"rc": 1,
"start": "2018-01-09 10:36:58.579937"
}
STDERR:
Error initializing cluster client: Error('error calling conf_read_file: errno EINVAL',)
```
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
2018-01-10 17:18:27 +08:00
|
|
|
when:
|
2019-05-22 16:02:42 +08:00
|
|
|
- containerized_deployment | bool
|
2018-04-04 21:30:55 +08:00
|
|
|
- groups.get(mon_group_name, []) | length > 0
|
containers: fix bug when looking for existing cluster
When containerized deployment, `docker_exec_cmd` is not set before the
task which try to retrieve the current fsid is played, it means it
considers there is no existing fsid and try to generate a new one.
Typical error:
```
ok: [mon0 -> mon0] => {
"changed": false,
"cmd": [
"ceph",
"--connect-timeout",
"3",
"--cluster",
"test",
"fsid"
],
"delta": "0:00:00.179909",
"end": "2018-01-09 10:36:58.759846",
"failed": false,
"failed_when_result": false,
"rc": 1,
"start": "2018-01-09 10:36:58.579937"
}
STDERR:
Error initializing cluster client: Error('error calling conf_read_file: errno EINVAL',)
```
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
2018-01-10 17:18:27 +08:00
|
|
|
|
2017-02-18 04:29:45 +08:00
|
|
|
# this task shouldn't run in a rolling_update situation
|
|
|
|
# because it blindly picks a mon, which may be down because
|
|
|
|
# of the rolling update
|
2016-12-06 22:59:49 +08:00
|
|
|
- name: is ceph running already?
|
2019-05-14 20:51:32 +08:00
|
|
|
command: "{{ timeout_command }} {{ container_exec_cmd }} ceph --cluster {{ cluster }} -s -f json"
|
2016-12-06 22:59:49 +08:00
|
|
|
changed_when: false
|
|
|
|
failed_when: false
|
2017-10-25 22:53:34 +08:00
|
|
|
check_mode: no
|
2018-08-22 02:50:31 +08:00
|
|
|
register: ceph_current_status
|
2018-04-10 00:07:31 +08:00
|
|
|
run_once: true
|
2016-12-09 03:16:02 +08:00
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2017-08-04 22:57:46 +08:00
|
|
|
when:
|
2019-05-22 16:02:42 +08:00
|
|
|
- not rolling_update | bool
|
2017-08-04 22:57:46 +08:00
|
|
|
- groups.get(mon_group_name, []) | length > 0
|
2017-02-18 04:29:45 +08:00
|
|
|
|
|
|
|
# set this as a default when performing a rolling_update
|
|
|
|
# so the rest of the tasks here will succeed
|
2018-08-22 02:50:31 +08:00
|
|
|
- name: set_fact ceph_current_status rc 1
|
2017-09-15 06:48:53 +08:00
|
|
|
set_fact:
|
2018-08-22 02:50:31 +08:00
|
|
|
ceph_current_status:
|
2017-02-18 04:29:45 +08:00
|
|
|
rc: 1
|
2019-04-01 23:46:15 +08:00
|
|
|
when: rolling_update or groups.get(mon_group_name, []) | length == 0
|
2016-12-06 22:59:49 +08:00
|
|
|
|
2016-12-08 23:58:22 +08:00
|
|
|
- name: create a local fetch directory if it does not exist
|
2018-11-01 19:50:31 +08:00
|
|
|
file:
|
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
|
|
|
path: "{{ fetch_directory }}"
|
|
|
|
state: directory
|
2018-11-01 19:50:31 +08:00
|
|
|
delegate_to: localhost
|
2016-12-08 23:58:22 +08:00
|
|
|
changed_when: false
|
|
|
|
become: false
|
2019-05-22 16:02:42 +08:00
|
|
|
when: cephx | bool or generate_fsid | bool
|
2016-12-08 23:58:22 +08:00
|
|
|
|
2019-03-21 01:34:47 +08:00
|
|
|
- name: get current fsid
|
2019-10-02 02:41:57 +08:00
|
|
|
command: "{{ timeout_command }} {{ container_exec_cmd }} ceph --admin-daemon /var/run/ceph/{{ cluster }}-mon.{{ hostvars[mon_host | default(groups[mon_group_name][0])]['ansible_hostname'] }}.asok config get fsid"
|
2019-03-21 01:34:47 +08:00
|
|
|
register: rolling_update_fsid
|
|
|
|
delegate_to: "{{ mon_host | default(groups[mon_group_name][0]) }}"
|
2019-06-20 20:45:07 +08:00
|
|
|
until: rolling_update_fsid is succeeded
|
2019-05-22 16:02:42 +08:00
|
|
|
when: rolling_update | bool
|
2019-03-21 01:34:47 +08:00
|
|
|
|
|
|
|
- name: set_fact fsid
|
|
|
|
set_fact:
|
|
|
|
fsid: "{{ (rolling_update_fsid.stdout | from_json).fsid }}"
|
2019-05-22 16:02:42 +08:00
|
|
|
when: rolling_update | bool
|
2019-03-21 01:34:47 +08:00
|
|
|
|
2018-08-22 02:50:31 +08:00
|
|
|
- name: set_fact ceph_current_status (convert to json)
|
2017-09-15 06:48:53 +08:00
|
|
|
set_fact:
|
2018-08-22 02:50:31 +08:00
|
|
|
ceph_current_status: "{{ ceph_current_status.stdout | from_json }}"
|
2017-02-18 04:29:45 +08:00
|
|
|
when:
|
2019-05-22 16:02:42 +08:00
|
|
|
- not rolling_update | bool
|
2018-08-22 02:50:31 +08:00
|
|
|
- ceph_current_status.rc == 0
|
|
|
|
|
|
|
|
- name: set_fact fsid from ceph_current_status
|
|
|
|
set_fact:
|
|
|
|
fsid: "{{ ceph_current_status.fsid }}"
|
2019-04-01 23:46:15 +08:00
|
|
|
when: ceph_current_status.fsid is defined
|
2016-12-06 22:59:49 +08:00
|
|
|
|
2019-08-22 23:39:47 +08:00
|
|
|
- name: fsid related tasks
|
2019-03-28 16:13:30 +08:00
|
|
|
when:
|
2019-05-22 16:02:42 +08:00
|
|
|
- generate_fsid | bool
|
2019-03-28 16:13:30 +08:00
|
|
|
- ceph_current_status.fsid is undefined
|
2019-05-22 16:02:42 +08:00
|
|
|
- not rolling_update | bool
|
2019-03-28 16:13:30 +08:00
|
|
|
block:
|
2019-01-08 17:57:51 +08:00
|
|
|
- name: generate cluster fsid
|
2019-08-14 17:10:12 +08:00
|
|
|
command: "{{ discovered_interpreter_python }} -c 'import uuid; print(str(uuid.uuid4()))'"
|
2019-01-08 17:57:51 +08:00
|
|
|
register: cluster_uuid
|
2019-06-01 01:26:30 +08:00
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2019-01-08 17:57:51 +08:00
|
|
|
run_once: true
|
2016-12-08 23:58:22 +08:00
|
|
|
|
2019-01-08 17:57:51 +08:00
|
|
|
- name: set_fact fsid
|
|
|
|
set_fact:
|
|
|
|
fsid: "{{ cluster_uuid.stdout }}"
|
2016-12-08 23:58:22 +08:00
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: set_fact mds_name ansible_hostname
|
|
|
|
set_fact:
|
2016-05-09 06:36:15 +08:00
|
|
|
mds_name: "{{ ansible_hostname }}"
|
2019-05-22 16:02:42 +08:00
|
|
|
when: not mds_use_fqdn | bool
|
2016-05-09 06:36:15 +08:00
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: set_fact mds_name ansible_fqdn
|
|
|
|
set_fact:
|
2016-05-09 06:36:15 +08:00
|
|
|
mds_name: "{{ ansible_fqdn }}"
|
2019-05-22 16:02:42 +08:00
|
|
|
when: mds_use_fqdn | bool
|
2016-12-09 21:51:35 +08:00
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: set_fact rbd_client_directory_owner ceph
|
|
|
|
set_fact:
|
2016-12-09 21:51:35 +08:00
|
|
|
rbd_client_directory_owner: ceph
|
2019-04-01 23:46:15 +08:00
|
|
|
when: rbd_client_directory_owner is not defined
|
2016-12-09 21:51:35 +08:00
|
|
|
or not rbd_client_directory_owner
|
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: set_fact rbd_client_directory_group rbd_client_directory_group
|
|
|
|
set_fact:
|
2016-12-09 21:51:35 +08:00
|
|
|
rbd_client_directory_group: ceph
|
2019-04-01 23:46:15 +08:00
|
|
|
when: rbd_client_directory_group is not defined
|
2016-12-09 21:51:35 +08:00
|
|
|
or not rbd_client_directory_group
|
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: set_fact rbd_client_directory_mode 0770
|
|
|
|
set_fact:
|
2016-12-09 21:51:35 +08:00
|
|
|
rbd_client_directory_mode: "0770"
|
2019-04-01 23:46:15 +08:00
|
|
|
when: rbd_client_directory_mode is not defined
|
2016-12-09 21:51:35 +08:00
|
|
|
or not rbd_client_directory_mode
|
2017-09-28 06:17:12 +08:00
|
|
|
|
|
|
|
- name: resolve device link(s)
|
|
|
|
command: readlink -f {{ item }}
|
|
|
|
changed_when: false
|
2019-05-06 16:14:36 +08:00
|
|
|
check_mode: no
|
2017-09-28 06:17:12 +08:00
|
|
|
with_items: "{{ devices }}"
|
|
|
|
register: devices_prepare_canonicalize
|
|
|
|
when:
|
2018-05-02 00:22:31 +08:00
|
|
|
- devices is defined
|
2017-09-28 06:17:12 +08:00
|
|
|
- inventory_hostname in groups.get(osd_group_name, [])
|
2019-05-22 16:02:42 +08:00
|
|
|
- not osd_auto_discovery | default(False) | bool
|
2017-09-28 06:17:12 +08:00
|
|
|
|
|
|
|
- name: set_fact build devices from resolved symlinks
|
|
|
|
set_fact:
|
|
|
|
devices: "{{ devices | default([]) + [ item.stdout ] }}"
|
|
|
|
with_items: "{{ devices_prepare_canonicalize.results }}"
|
|
|
|
when:
|
2018-05-02 00:22:31 +08:00
|
|
|
- devices is defined
|
2017-09-28 06:17:12 +08:00
|
|
|
- inventory_hostname in groups.get(osd_group_name, [])
|
2019-05-22 16:02:42 +08:00
|
|
|
- not osd_auto_discovery | default(False) | bool
|
2017-09-28 06:17:12 +08:00
|
|
|
|
|
|
|
- name: set_fact build final devices list
|
|
|
|
set_fact:
|
|
|
|
devices: "{{ devices | reject('search','/dev/disk') | list | unique }}"
|
|
|
|
when:
|
2018-05-02 00:22:31 +08:00
|
|
|
- devices is defined
|
2017-09-28 06:17:12 +08:00
|
|
|
- inventory_hostname in groups.get(osd_group_name, [])
|
2019-05-22 16:02:42 +08:00
|
|
|
- not osd_auto_discovery | default(False) | bool
|
2017-11-23 05:38:30 +08:00
|
|
|
|
2019-01-11 01:26:19 +08:00
|
|
|
- name: set_fact devices generate device list when osd_auto_discovery
|
|
|
|
set_fact:
|
2019-11-20 18:02:49 +08:00
|
|
|
devices: "{{ (devices | default([]) + [ item.key | regex_replace('^', '/dev/') ]) | unique }}"
|
2019-01-11 01:26:19 +08:00
|
|
|
with_dict: "{{ ansible_devices }}"
|
|
|
|
when:
|
2019-05-22 16:02:42 +08:00
|
|
|
- osd_auto_discovery | default(False) | bool
|
2019-01-11 01:26:19 +08:00
|
|
|
- ansible_devices is defined
|
|
|
|
- item.value.removable == "0"
|
|
|
|
- item.value.sectors != "0"
|
|
|
|
- item.value.partitions|count == 0
|
|
|
|
- item.value.holders|count == 0
|
2019-02-26 07:07:01 +08:00
|
|
|
- item.key is not match osd_auto_discovery_exclude
|
2019-01-11 01:26:19 +08:00
|
|
|
|
2018-04-14 01:42:17 +08:00
|
|
|
- name: set_fact ceph_uid for debian based system - non container
|
|
|
|
set_fact:
|
|
|
|
ceph_uid: 64045
|
|
|
|
when:
|
2019-05-22 16:02:42 +08:00
|
|
|
- not containerized_deployment | bool
|
2018-04-14 01:42:17 +08:00
|
|
|
- ansible_os_family == 'Debian'
|
|
|
|
|
2018-08-13 20:05:05 +08:00
|
|
|
- name: set_fact ceph_uid for red hat or suse based system - non container
|
2018-04-14 01:42:17 +08:00
|
|
|
set_fact:
|
|
|
|
ceph_uid: 167
|
|
|
|
when:
|
2019-05-22 16:02:42 +08:00
|
|
|
- not containerized_deployment | bool
|
2018-08-13 20:05:05 +08:00
|
|
|
- ansible_os_family in ['RedHat', 'Suse']
|
2018-04-14 01:42:17 +08:00
|
|
|
|
|
|
|
- name: set_fact ceph_uid for debian based system - container
|
2017-11-23 05:38:30 +08:00
|
|
|
set_fact:
|
|
|
|
ceph_uid: 64045
|
|
|
|
when:
|
2019-05-22 16:02:42 +08:00
|
|
|
- containerized_deployment | bool
|
2018-10-06 06:56:45 +08:00
|
|
|
- ceph_docker_image_tag | string is search("ubuntu")
|
2017-11-23 05:38:30 +08:00
|
|
|
|
2018-04-14 01:42:17 +08:00
|
|
|
- name: set_fact ceph_uid for red hat based system - container
|
2017-11-23 05:38:30 +08:00
|
|
|
set_fact:
|
|
|
|
ceph_uid: 167
|
|
|
|
when:
|
2019-05-22 16:02:42 +08:00
|
|
|
- containerized_deployment | bool
|
2019-10-07 17:08:44 +08:00
|
|
|
- (ceph_docker_image_tag | string is search("latest")
|
|
|
|
or ceph_docker_image_tag | string is search("centos")
|
|
|
|
or ceph_docker_image_tag | string is search("fedora")
|
|
|
|
or ceph_docker_image_tag | string is search("rhceph")
|
2019-02-14 22:36:27 +08:00
|
|
|
or (ansible_distribution == 'RedHat'))
|
2018-03-29 12:17:02 +08:00
|
|
|
|
2018-09-05 19:20:47 +08:00
|
|
|
- name: set_fact rgw_hostname
|
2018-08-22 02:50:31 +08:00
|
|
|
set_fact:
|
2018-09-05 19:20:47 +08:00
|
|
|
rgw_hostname: "{% set _value = ansible_hostname -%}
|
2018-11-20 18:46:08 +08:00
|
|
|
{% for key in (ceph_current_status['servicemap']['services']['rgw']['daemons'] | list) -%}
|
2018-09-05 19:20:47 +08:00
|
|
|
{% if key == ansible_fqdn -%}
|
|
|
|
{% set _value = key -%}
|
|
|
|
{% endif -%}
|
|
|
|
{% endfor -%}
|
|
|
|
{{ _value }}"
|
2018-08-22 02:50:31 +08:00
|
|
|
when:
|
|
|
|
- inventory_hostname in groups.get(rgw_group_name, []) or inventory_hostname in groups.get(nfs_group_name, [])
|
|
|
|
- ceph_current_status['servicemap'] is defined
|
|
|
|
- ceph_current_status['servicemap']['services'] is defined
|
2018-10-11 03:24:22 +08:00
|
|
|
- ceph_current_status['servicemap']['services']['rgw'] is defined
|
2018-10-03 22:09:33 +08:00
|
|
|
|
2018-11-13 22:40:35 +08:00
|
|
|
- name: set_fact osd_pool_default_pg_num
|
|
|
|
set_fact:
|
|
|
|
osd_pool_default_pg_num: "{{ ceph_conf_overrides.get('global', {}).get('osd_pool_default_pg_num', ceph_osd_pool_default_pg_num) }}"
|
|
|
|
|
2018-11-21 18:00:11 +08:00
|
|
|
- name: set_fact osd_pool_default_size
|
|
|
|
set_fact:
|
|
|
|
osd_pool_default_size: "{{ ceph_conf_overrides.get('global', {}).get('osd_pool_default_size', ceph_osd_pool_default_size) }}"
|
|
|
|
|
2019-03-01 04:58:31 +08:00
|
|
|
- name: set_fact osd_pool_default_min_size
|
|
|
|
set_fact:
|
|
|
|
osd_pool_default_min_size: "{{ ceph_conf_overrides.get('global', {}).get('osd_pool_default_min_size', ceph_osd_pool_default_min_size) }}"
|
|
|
|
|
2019-03-08 06:14:12 +08:00
|
|
|
- name: check if the ceph conf exists
|
|
|
|
stat:
|
|
|
|
path: '/etc/ceph/{{ cluster }}.conf'
|
|
|
|
register: ceph_conf
|
|
|
|
|
|
|
|
- name: get default crush rule value from ceph configuration
|
|
|
|
command: grep 'osd pool default crush rule' /etc/ceph/{{ cluster }}.conf
|
|
|
|
register: crush_rule_variable
|
|
|
|
changed_when: false
|
2019-05-06 16:14:36 +08:00
|
|
|
check_mode: no
|
2019-03-08 06:14:12 +08:00
|
|
|
failed_when: false
|
|
|
|
when: ceph_conf.stat.exists
|
|
|
|
|
|
|
|
- name: set_fact osd_pool_default_crush_rule
|
|
|
|
set_fact:
|
|
|
|
osd_pool_default_crush_rule: "{% if crush_rule_variable.rc == 0 %}{{ crush_rule_variable.stdout.split(' = ')[1] }}{% else %}{{ ceph_osd_pool_default_crush_rule }}{% endif %}"
|
|
|
|
when: ceph_conf.stat.exists
|
|
|
|
|
2018-10-03 22:09:33 +08:00
|
|
|
- name: import_tasks set_monitor_address.yml
|
|
|
|
import_tasks: set_monitor_address.yml
|
2019-05-07 22:42:49 +08:00
|
|
|
when: groups.get(mon_group_name, []) | length > 0
|
2018-10-03 22:09:33 +08:00
|
|
|
|
|
|
|
- name: import_tasks set_radosgw_address.yml
|
|
|
|
import_tasks: set_radosgw_address.yml
|
2019-04-01 23:46:15 +08:00
|
|
|
when: inventory_hostname in groups.get(rgw_group_name, [])
|
2018-11-09 08:56:57 +08:00
|
|
|
|
|
|
|
- name: set_fact rgw_instances
|
|
|
|
set_fact:
|
|
|
|
rgw_instances: "{{ rgw_instances|default([]) | union([{'instance_name': 'rgw' + item|string, 'radosgw_address': _radosgw_address, 'radosgw_frontend_port': radosgw_frontend_port|int + item|int}]) }}"
|
|
|
|
with_sequence: start=0 end={{ radosgw_num_instances|int - 1 }}
|
2019-04-01 23:46:15 +08:00
|
|
|
when: inventory_hostname in groups.get(rgw_group_name, [])
|
2019-02-11 19:00:25 +08:00
|
|
|
|
|
|
|
- name: set ntp service name depending on OS family
|
|
|
|
block:
|
|
|
|
- name: set ntp service name for Debian family
|
|
|
|
set_fact:
|
|
|
|
ntp_service_name: ntp
|
|
|
|
when: ansible_os_family == 'Debian'
|
|
|
|
|
|
|
|
- name: set ntp service name for Red Hat family
|
|
|
|
set_fact:
|
|
|
|
ntp_service_name: ntpd
|
|
|
|
when: ansible_os_family in ['RedHat', 'Suse']
|
2019-05-23 22:21:08 +08:00
|
|
|
|
2019-06-12 17:09:44 +08:00
|
|
|
- name: set chrony daemon name RedHat and Ubuntu based OSs
|
|
|
|
block:
|
|
|
|
- name: set chronyd daemon name for RedHat based OSs
|
|
|
|
set_fact:
|
|
|
|
chrony_daemon_name: chronyd
|
|
|
|
when: ansible_os_family in ["RedHat", "Suse"]
|
|
|
|
|
|
|
|
- name: set chronyd daemon name for Ubuntu based OSs
|
|
|
|
set_fact:
|
|
|
|
chrony_daemon_name: chrony
|
|
|
|
when: ansible_os_family == "Debian"
|
|
|
|
|
2019-06-19 19:52:31 +08:00
|
|
|
- name: set grafana_server_addr fact - ipv4
|
2019-05-23 22:21:08 +08:00
|
|
|
set_fact:
|
2019-08-15 01:14:09 +08:00
|
|
|
grafana_server_addr: "{{ hostvars[inventory_hostname]['ansible_all_ipv4_addresses'] | ips_in_ranges(public_network.split(',')) | first }}"
|
2019-06-25 04:30:23 +08:00
|
|
|
when:
|
2019-07-26 01:08:22 +08:00
|
|
|
- groups.get(grafana_server_group_name, []) | length > 0
|
2019-06-19 19:52:31 +08:00
|
|
|
- ip_version == 'ipv4'
|
|
|
|
- dashboard_enabled | bool
|
2019-09-10 21:20:48 +08:00
|
|
|
- inventory_hostname in groups[grafana_server_group_name]
|
2019-06-19 19:52:31 +08:00
|
|
|
|
|
|
|
- name: set grafana_server_addr fact - ipv6
|
|
|
|
set_fact:
|
2019-08-15 01:14:09 +08:00
|
|
|
grafana_server_addr: "{{ hostvars[inventory_hostname]['ansible_all_ipv6_addresses'] | ips_in_ranges(public_network.split(',')) | last | ipwrap }}"
|
2019-06-19 19:52:31 +08:00
|
|
|
when:
|
2019-07-26 01:08:22 +08:00
|
|
|
- groups.get(grafana_server_group_name, []) | length > 0
|
2019-06-19 19:52:31 +08:00
|
|
|
- ip_version == 'ipv6'
|
2019-06-25 04:30:23 +08:00
|
|
|
- dashboard_enabled | bool
|
2019-09-10 21:20:48 +08:00
|
|
|
- inventory_hostname in groups[grafana_server_group_name]
|
|
|
|
|
|
|
|
- name: set grafana_server_addr fact - ipv4 - (external instance)
|
|
|
|
set_fact:
|
2019-10-01 04:09:38 +08:00
|
|
|
grafana_server_addr: "{{ hostvars[groups.get(grafana_server_group_name, []) | first]['ansible_all_ipv4_addresses'] | ips_in_ranges(public_network.split(',')) | first }}"
|
2019-09-10 21:20:48 +08:00
|
|
|
when:
|
|
|
|
- groups.get(grafana_server_group_name, []) | length > 0
|
|
|
|
- ip_version == 'ipv4'
|
|
|
|
- dashboard_enabled | bool
|
|
|
|
- inventory_hostname not in groups[grafana_server_group_name]
|
|
|
|
|
|
|
|
- name: set grafana_server_addr fact - ipv6 - (external instance)
|
|
|
|
set_fact:
|
2019-10-01 04:09:38 +08:00
|
|
|
grafana_server_addr: "{{ hostvars[groups.get(grafana_server_group_name, []) | first]['ansible_all_ipv6_addresses'] | ips_in_ranges(public_network.split(',')) | last | ipwrap }}"
|
2019-09-10 21:20:48 +08:00
|
|
|
when:
|
|
|
|
- groups.get(grafana_server_group_name, []) | length > 0
|
|
|
|
- ip_version == 'ipv6'
|
|
|
|
- dashboard_enabled | bool
|
|
|
|
- inventory_hostname not in groups[grafana_server_group_name]
|
2019-07-02 21:30:12 +08:00
|
|
|
|
|
|
|
- name: set_fact use_new_ceph_iscsi package or old ceph-iscsi-config/cli
|
|
|
|
set_fact:
|
2019-08-22 23:39:47 +08:00
|
|
|
use_new_ceph_iscsi: "{{ (gateway_ip_list == '0.0.0.0' and gateway_iqn | length == 0 and client_connections | length == 0 and rbd_devices | length == 0) | bool | ternary(true, false) }}"
|