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

28 lines
895 B
YAML

---
- name: include multisite checks
include: checks.yml
# Include the tasks depending on the zone type
- name: include master multisite tasks
include: master.yml
when: "rgw_zonemaster is defined and rgw_zonemaster"
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
static: False
- name: include secondary multisite tasks
include: secondary.yml
when: "rgw_zonesecondary is defined and rgw_zonesecondary"
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
static: False
# Continue with common tasks
- name: add zone to rgw stanza in ceph.conf
lineinfile:
dest: "/etc/ceph/{{ cluster }}.conf"
regexp: "{{ ansible_host }}"
insertafter: "^[client.rgw.{{ ansible_host }}]"
line: "rgw_zone = {{ rgw_zone }}"
state: present
notify:
- restart rgw