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 }}"
2018-11-08 17:02:37 +08:00
- name : check if podman binary is present
stat :
path : /usr/bin/podman
register : podman_binary
- name : set_fact is_podman
set_fact :
is_podman : "{{ podman_binary.stat.exists }}"
- name : set_fact container_binary
set_fact :
2019-01-16 17:27:23 +08:00
container_binary : "{{ 'podman' if (podman_binary.stat.exists and ansible_distribution == 'Fedora') or (ansible_os_family == 'RedHat' and ansible_distribution_major_version == '8') else 'docker' }}"
2018-11-08 17:02:37 +08:00
when : containerized_deployment
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 }}"
2017-09-15 06:48:53 +08:00
when :
- not mon_use_fqdn
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 }}"
2017-09-15 06:48:53 +08:00
when :
- mon_use_fqdn
2016-04-27 21:17:56 +08:00
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
- name : set_fact docker_exec_cmd
set_fact :
2018-11-08 17:02:37 +08:00
docker_exec_cmd : "{{ container_binary }} exec ceph-mon-{{ hostvars[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
delegate_to : "{{ groups[mon_group_name][0] }}"
when :
- containerized_deployment
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-02-01 22:08:53 +08:00
command : "{{ timeout_command }} {{ docker_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 :
- not rolling_update
- 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
2017-08-04 22:57:46 +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
2017-09-15 06:48:53 +08:00
when :
- (cephx or generate_fsid)
2016-12-08 23:58:22 +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 :
2018-08-22 02:50:31 +08:00
- not rolling_update
- ceph_current_status.rc == 0
- name : set_fact fsid from ceph_current_status
set_fact :
fsid : "{{ ceph_current_status.fsid }}"
when :
- ceph_current_status.fsid is defined
2016-12-06 22:59:49 +08:00
2019-01-08 17:57:51 +08:00
- block :
- name : generate cluster fsid
shell : python -c 'import uuid; print(str(uuid.uuid4()))'
register : cluster_uuid
delegate_to : localhost
become : false
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
when :
- generate_fsid
2019-01-08 17:57:51 +08:00
- ceph_current_status.fsid is undefined
2017-07-29 05:02:51 +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 }}"
2017-09-15 06:48:53 +08:00
when :
- not mds_use_fqdn
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 }}"
2017-09-15 06:48:53 +08:00
when :
- mds_use_fqdn
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
when :
- rbd_client_directory_owner is not defined
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
when :
- rbd_client_directory_group is not defined
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"
when :
- rbd_client_directory_mode is not defined
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
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, [])
2017-10-05 22:22:04 +08:00
- not osd_auto_discovery|default(False)
2018-02-08 21:51:15 +08:00
- osd_scenario|default('dummy') != 'lvm'
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, [])
2017-10-05 22:22:04 +08:00
- not osd_auto_discovery|default(False)
2018-02-08 21:51:15 +08:00
- osd_scenario|default('dummy') != 'lvm'
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, [])
2017-10-05 22:22:04 +08:00
- not osd_auto_discovery|default(False)
2018-02-08 21:51:15 +08:00
- osd_scenario|default('dummy') != 'lvm'
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 :
devices : "{{ devices | default([]) + [ item.key | regex_replace('^', '/dev/') ] }}"
with_dict : "{{ ansible_devices }}"
when :
- osd_auto_discovery|default(False)
- 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 :
- not containerized_deployment
- 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 :
- not containerized_deployment
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 :
- containerized_deployment
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 :
- containerized_deployment
2019-02-14 22:36:27 +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 (ansible_distribution == 'RedHat'))
2018-03-29 12:17:02 +08:00
2018-04-17 21:32:53 +08:00
- name : set_fact ceph_uid for red hat
2018-03-29 12:17:02 +08:00
set_fact :
ceph_uid : 167
when :
- containerized_deployment
2018-10-06 06:53:40 +08:00
- ceph_docker_image is search("rhceph")
2018-08-09 17:03:32 +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
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
- name : import_tasks set_radosgw_address.yml
import_tasks : set_radosgw_address.yml
2018-11-22 21:38:57 +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 }}
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']