2014-03-06 20:54:37 +08:00
|
|
|
---
|
2018-04-11 23:15:29 +08:00
|
|
|
- name: include common.yml
|
2018-08-21 22:23:35 +08:00
|
|
|
include_tasks: common.yml
|
2018-04-11 23:15:29 +08:00
|
|
|
|
2018-08-10 20:16:30 +08:00
|
|
|
- name: include_tasks pre_requisite.yml
|
|
|
|
include_tasks: pre_requisite.yml
|
2019-05-22 16:02:42 +08:00
|
|
|
when: not containerized_deployment | bool
|
2014-03-06 20:54:37 +08:00
|
|
|
|
2019-09-11 06:01:48 +08:00
|
|
|
- name: rgw pool creation tasks
|
|
|
|
include_tasks: rgw_create_pools.yml
|
|
|
|
run_once: true
|
|
|
|
when: rgw_create_pools is defined
|
|
|
|
|
2018-08-10 20:16:30 +08:00
|
|
|
- name: include_tasks openstack-keystone.yml
|
|
|
|
include_tasks: openstack-keystone.yml
|
2019-05-22 16:02:42 +08:00
|
|
|
when: radosgw_keystone_ssl | bool
|
2016-08-08 11:16:15 +08:00
|
|
|
|
2018-08-10 20:16:30 +08:00
|
|
|
- name: include_tasks start_radosgw.yml
|
|
|
|
include_tasks: start_radosgw.yml
|
2019-10-05 03:31:25 +08:00
|
|
|
when:
|
|
|
|
- not rgw_multisite | bool
|
|
|
|
- not containerized_deployment | bool
|
2016-08-17 02:57:01 +08:00
|
|
|
|
2019-09-30 15:40:56 +08:00
|
|
|
- name: include start_docker_rgw.yml
|
|
|
|
include_tasks: start_docker_rgw.yml
|
2019-10-05 03:31:25 +08:00
|
|
|
when:
|
|
|
|
- not rgw_multisite | bool
|
|
|
|
- containerized_deployment | bool
|
2018-06-01 23:33:54 +08:00
|
|
|
|
2018-10-29 23:37:12 +08:00
|
|
|
- name: include_tasks multisite/main.yml
|
|
|
|
include_tasks: multisite/main.yml
|
2019-05-22 16:02:42 +08:00
|
|
|
when: rgw_multisite | bool
|