2016-08-11 05:05:27 +08:00
|
|
|
---
|
2019-10-05 03:31:25 +08:00
|
|
|
- name: include_tasks create_realm_zonegroup_zone_lists.yml
|
|
|
|
include_tasks: create_realm_zonegroup_zone_lists.yml
|
|
|
|
|
2020-03-09 18:05:01 +08:00
|
|
|
- name: include multisite checks
|
|
|
|
include_tasks: checks.yml
|
|
|
|
|
2016-08-11 05:05:27 +08:00
|
|
|
# Include the tasks depending on the zone type
|
2018-08-10 20:16:30 +08:00
|
|
|
- name: include_tasks master.yml
|
|
|
|
include_tasks: master.yml
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
2019-05-22 16:02:42 +08:00
|
|
|
- rgw_zonemaster | bool
|
|
|
|
- not rgw_zonesecondary | bool
|
2016-08-11 05:05:27 +08:00
|
|
|
|
2019-10-05 03:31:25 +08:00
|
|
|
- name: include_tasks start_radosgw.yml for zonemaster rgws
|
|
|
|
include_tasks: ../start_radosgw.yml
|
|
|
|
when:
|
|
|
|
- rgw_zonemaster | bool
|
|
|
|
- not rgw_zonesecondary | bool
|
|
|
|
- not containerized_deployment | bool
|
|
|
|
|
|
|
|
- name: include_tasks start_docker_rgw.yml for zonemaster rgws
|
|
|
|
include_tasks: ../start_docker_rgw.yml
|
|
|
|
when:
|
|
|
|
- rgw_zonemaster | bool
|
|
|
|
- not rgw_zonesecondary | bool
|
|
|
|
- containerized_deployment | bool
|
|
|
|
|
2018-08-10 20:16:30 +08:00
|
|
|
- name: include_tasks secondary.yml
|
|
|
|
include_tasks: secondary.yml
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
2019-05-22 16:02:42 +08:00
|
|
|
- not rgw_zonemaster | bool
|
|
|
|
- rgw_zonesecondary | bool
|
2016-08-11 05:05:27 +08:00
|
|
|
|
2019-10-05 03:31:25 +08:00
|
|
|
- name: include_tasks start_radosgw.yml for zonesecondary rgws
|
|
|
|
include_tasks: ../start_radosgw.yml
|
2019-01-23 09:36:25 +08:00
|
|
|
when:
|
2019-10-05 03:31:25 +08:00
|
|
|
- not rgw_zonemaster | bool
|
|
|
|
- rgw_zonesecondary | bool
|
|
|
|
- not containerized_deployment | bool
|
|
|
|
|
|
|
|
- name: include_tasks start_docker_rgw.yml for zonesecondary rgws
|
|
|
|
include_tasks: ../start_docker_rgw.yml
|
|
|
|
when:
|
|
|
|
- not rgw_zonemaster | bool
|
|
|
|
- rgw_zonesecondary | bool
|
|
|
|
- containerized_deployment | bool
|