2018-04-26 03:57:27 +08:00
|
|
|
---
|
|
|
|
- name: validate provided configuration
|
|
|
|
validate:
|
2018-05-01 00:04:42 +08:00
|
|
|
mode: strict
|
2018-04-26 03:59:54 +08:00
|
|
|
|
2018-08-09 17:23:07 +08:00
|
|
|
- name: warning deprecation for fqdn configuration
|
|
|
|
fail:
|
|
|
|
msg: "fqdn configuration is not supported anymore. Use 'use_fqdn_yes_i_am_sure: true' if you really want to use it. See release notes for more details"
|
|
|
|
when:
|
|
|
|
- mon_use_fqdn or mds_use_fqdn
|
|
|
|
- not use_fqdn_yes_i_am_sure
|
|
|
|
|
2018-09-07 20:45:43 +08:00
|
|
|
- name: debian based systems tasks
|
|
|
|
block:
|
|
|
|
- name: fail if local scenario is enabled on debian
|
|
|
|
fail:
|
|
|
|
msg: "'local' installation scenario not supported on Debian systems"
|
|
|
|
when:
|
|
|
|
- ceph_origin == 'local'
|
|
|
|
- name: verify that ceph_rhcs_cdn_debian_repo url is valid for red hat storage
|
|
|
|
fail:
|
|
|
|
msg: "ceph_rhcs_cdn_debian_repo url is invalid, please set your customername:customerpasswd"
|
|
|
|
when:
|
|
|
|
- ceph_origin == 'repository'
|
|
|
|
- ceph_repository == 'rhcs'
|
|
|
|
- ceph_repository_type == 'cdn'
|
|
|
|
- ceph_rhcs_cdn_debian_repo == 'https://customername:customerpasswd@rhcs.download.redhat.com'
|
|
|
|
- ceph_repository not in ['rhcs', 'dev', 'obs']
|
2018-04-27 00:15:02 +08:00
|
|
|
when:
|
|
|
|
- ansible_os_family == 'Debian'
|
|
|
|
|
2018-09-06 00:59:50 +08:00
|
|
|
- name: validate ntp daemon type
|
|
|
|
fail:
|
|
|
|
msg: "ntp_daemon_type must be one of chronyd, ntpd, or timesyncd"
|
|
|
|
when:
|
|
|
|
- ntp_service_enabled
|
|
|
|
- ntp_daemon_type not in ['chronyd', 'ntpd', 'timesyncd']
|
|
|
|
|
2018-04-26 23:09:47 +08:00
|
|
|
- name: make sure journal_size configured
|
|
|
|
debug:
|
|
|
|
msg: "WARNING: journal_size is configured to {{ journal_size }}, which is less than 5GB. This is not recommended and can lead to severe issues."
|
|
|
|
when:
|
|
|
|
- journal_size|int < 5120
|
|
|
|
- osd_objectstore == 'filestore'
|
|
|
|
- osd_group_name in group_names
|
|
|
|
|
2018-10-31 18:51:20 +08:00
|
|
|
- name: include check_system.yml
|
|
|
|
include_tasks: check_system.yml
|
2018-07-18 21:59:22 +08:00
|
|
|
|
|
|
|
- name: include check_devices.yml
|
2018-08-21 22:23:35 +08:00
|
|
|
include_tasks: check_devices.yml
|
2018-07-18 23:46:27 +08:00
|
|
|
when:
|
|
|
|
- osd_group_name in group_names
|
|
|
|
- not osd_auto_discovery | default(False)
|
2018-08-04 00:15:58 +08:00
|
|
|
- osd_scenario != "lvm" and devices is not defined
|
2018-07-23 22:02:43 +08:00
|
|
|
|
|
|
|
- name: include check_eth_mon.yml
|
2018-08-21 22:23:35 +08:00
|
|
|
include_tasks: check_eth_mon.yml
|
2018-07-23 22:02:43 +08:00
|
|
|
when:
|
|
|
|
- mon_group_name in group_names
|
|
|
|
- monitor_interface != "dummy"
|
|
|
|
- monitor_address == "0.0.0.0"
|
|
|
|
- monitor_address_block == "subnet"
|
|
|
|
|
|
|
|
- name: include check_eth_rgw.yml
|
2018-08-21 22:23:35 +08:00
|
|
|
include_tasks: check_eth_rgw.yml
|
2018-07-23 22:02:43 +08:00
|
|
|
when:
|
|
|
|
- rgw_group_name in group_names
|
|
|
|
- radosgw_interface != "dummy"
|
|
|
|
- radosgw_address == "0.0.0.0"
|
2018-08-04 00:15:58 +08:00
|
|
|
- radosgw_address_block == "subnet"
|
2018-09-29 05:23:10 +08:00
|
|
|
|
2018-10-26 22:39:56 +08:00
|
|
|
- name: include check_rgw_multisite.yml
|
|
|
|
include_tasks: check_rgw_multisite.yml
|
2018-10-30 22:01:46 +08:00
|
|
|
when:
|
2018-10-26 22:39:56 +08:00
|
|
|
- inventory_hostname in groups.get(rgw_group_name, [])
|
|
|
|
- rgw_multisite
|
|
|
|
|
2018-09-29 05:23:10 +08:00
|
|
|
- name: include check_iscsi.yml
|
2018-10-04 16:02:24 +08:00
|
|
|
include_tasks: check_iscsi.yml
|
2018-09-29 05:23:10 +08:00
|
|
|
when:
|
|
|
|
- iscsi_gw_group_name in group_names
|