ceph-ansible/roles/ceph-rgw/tasks/main.yml

43 lines
1.4 KiB
YAML
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

---
- name: include common.yml
include_tasks: common.yml
- name: include_tasks pre_requisite.yml
include_tasks: pre_requisite.yml
when: not containerized_deployment
- name: include_tasks openstack-keystone.yml
include_tasks: openstack-keystone.yml
when: radosgw_keystone_ssl|bool
- name: include_tasks start_radosgw.yml
include_tasks: start_radosgw.yml
when: not containerized_deployment
- name: include_tasks docker/main.yml
include_tasks: docker/main.yml
when: containerized_deployment
- name: include_tasks multisite/main.yml
include_tasks: multisite/main.yml
when: rgw_multisite
- name: rgw pool realted tasks
when:
- rgw_create_pools is defined
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 ("") != ""