mirror of https://github.com/ceph/ceph-ansible.git
26 lines
725 B
YAML
26 lines
725 B
YAML
---
|
|
- name: Include common.yml
|
|
ansible.builtin.include_tasks: common.yml
|
|
|
|
- name: Include_tasks pre_requisite.yml
|
|
ansible.builtin.include_tasks: pre_requisite.yml
|
|
|
|
- name: Rgw pool creation tasks
|
|
ansible.builtin.include_tasks: rgw_create_pools.yml
|
|
run_once: true
|
|
when: rgw_create_pools is defined
|
|
|
|
- name: Include_tasks openstack-keystone.yml
|
|
ansible.builtin.include_tasks: openstack-keystone.yml
|
|
when: radosgw_keystone_ssl | bool
|
|
|
|
- name: Include_tasks start_radosgw.yml
|
|
ansible.builtin.include_tasks: start_radosgw.yml
|
|
when:
|
|
- not containerized_deployment | bool
|
|
|
|
- name: Include start_docker_rgw.yml
|
|
ansible.builtin.include_tasks: start_docker_rgw.yml
|
|
when:
|
|
- containerized_deployment | bool
|