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

29 lines
733 B
YAML
Raw Normal View History

2016-08-11 05:05:27 +08:00
---
2016-08-17 05:57:49 +08:00
- name: include multisite checks
include_tasks: checks.yml
2016-08-11 05:05:27 +08:00
# Include the tasks depending on the zone type
- name: include_tasks master.yml
include_tasks: master.yml
when:
- rgw_zonemaster | bool
- not rgw_zonesecondary | bool
2016-08-11 05:05:27 +08:00
- name: include_tasks secondary.yml
include_tasks: secondary.yml
when:
- not rgw_zonemaster | bool
- rgw_zonesecondary | bool
2016-08-11 05:05:27 +08:00
2016-08-17 02:57:01 +08:00
# Continue with common tasks
2016-08-17 05:57:49 +08:00
- name: add zone to rgw stanza in ceph.conf
ini_file:
dest: "/etc/ceph/{{ cluster }}.conf"
section: "client.rgw.{{ ansible_hostname }}.{{ item.instance_name }}"
option: "rgw_zone"
value: "{{ rgw_zone }}"
with_items: "{{ rgw_instances }}"
when:
- rgw_instances is defined
notify: restart rgw