2014-03-06 20:54:37 +08:00
|
|
|
---
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Include common.yml
|
|
|
|
ansible.builtin.include_tasks: common.yml
|
2018-04-11 23:15:29 +08:00
|
|
|
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Include_tasks pre_requisite.yml
|
|
|
|
ansible.builtin.include_tasks: pre_requisite.yml
|
2014-03-06 20:54:37 +08:00
|
|
|
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Rgw pool creation tasks
|
|
|
|
ansible.builtin.include_tasks: rgw_create_pools.yml
|
2019-09-11 06:01:48 +08:00
|
|
|
run_once: true
|
|
|
|
when: rgw_create_pools is defined
|
|
|
|
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Include_tasks openstack-keystone.yml
|
|
|
|
ansible.builtin.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
|
|
|
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Include_tasks start_radosgw.yml
|
|
|
|
ansible.builtin.include_tasks: start_radosgw.yml
|
2019-10-05 03:31:25 +08:00
|
|
|
when:
|
|
|
|
- not containerized_deployment | bool
|
2016-08-17 02:57:01 +08:00
|
|
|
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Include start_docker_rgw.yml
|
|
|
|
ansible.builtin.include_tasks: start_docker_rgw.yml
|
2019-10-05 03:31:25 +08:00
|
|
|
when:
|
|
|
|
- containerized_deployment | bool
|