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

31 lines
869 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
2016-08-17 05:57:49 +08:00
- name: include master multisite tasks
2016-08-17 02:57:01 +08:00
include: master.yml
when:
- rgw_zonemaster is defined
- rgw_zonemaster
2016-08-17 02:57:01 +08:00
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
static: False
2016-08-11 05:05:27 +08:00
2016-08-17 05:57:49 +08:00
- name: include secondary multisite tasks
2016-08-17 02:57:01 +08:00
include: secondary.yml
when:
- rgw_zonesecondary is defined
- rgw_zonesecondary
2016-08-17 02:57:01 +08:00
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
static: False
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 }}"
option: "rgw_zone"
value: "{{ rgw_zone }}"
2016-08-17 02:57:01 +08:00
notify:
- restart rgw