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
|
|
|
|
|
when: not containerized_deployment
|
2014-03-06 20:54:37 +08:00
|
|
|
|
|
2018-08-10 20:16:30 +08:00
|
|
|
|
- name: include_tasks openstack-keystone.yml
|
|
|
|
|
include_tasks: openstack-keystone.yml
|
|
|
|
|
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
|
|
|
|
|
when: not containerized_deployment
|
2016-08-17 02:57:01 +08:00
|
|
|
|
|
2018-08-10 20:16:30 +08:00
|
|
|
|
- name: include_tasks multisite/main.yml
|
|
|
|
|
include_tasks: multisite/main.yml
|
2018-10-26 22:39:56 +08:00
|
|
|
|
when: rgw_multisite
|
2015-03-02 17:22:52 +08:00
|
|
|
|
|
2018-08-10 20:16:30 +08:00
|
|
|
|
- name: include_tasks docker/main.yml
|
|
|
|
|
include_tasks: docker/main.yml
|
|
|
|
|
when: containerized_deployment
|
2018-06-01 23:33:54 +08:00
|
|
|
|
|
2018-10-01 23:11:13 +08:00
|
|
|
|
- name: rgw pool realted tasks
|
2018-06-01 23:33:54 +08:00
|
|
|
|
when:
|
|
|
|
|
- rgw_create_pools is defined
|
2018-10-01 23:11:13 +08:00
|
|
|
|
block:
|
|
|
|
|
- name: create rgw pools if rgw_create_pools is defined
|
|
|
|
|
command: "{{ docker_exec_cmd }} ceph --connect-timeout 5 --cluster {{ cluster }} osd pool create {{ item.key }} {{ item.value.pg_num }}"
|
|
|
|
|
changed_when: false
|
|
|
|
|
with_dict: "{{ rgw_create_pools }}"
|
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
|
run_once: true
|
|
|
|
|
|
|
|
|
|
- name: customize pool size
|
|
|
|
|
command: "{{ docker_exec_cmd }} ceph --connect-timeout 5 --cluster {{ cluster }} osd pool set {{ item.key }} size {{ item.size | default('') }}"
|
|
|
|
|
with_dict: "{{ rgw_create_pools }}"
|
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
|
changed_when: false
|
|
|
|
|
run_once: true
|
|
|
|
|
when: item.size | default ("") != ""
|