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

29 lines
1.2 KiB
YAML
Raw Normal View History

2016-08-08 11:16:15 +08:00
---
- name: Create the realm
command: radosgw-admin realm create --rgw-realm={{ rgw_realm }} --default
run_once: true
2016-08-11 05:05:27 +08:00
when: ("No such file or directory" in realmcheck.stderr) and rgw_zonemaster
2016-08-08 11:16:15 +08:00
notify:
- update period
- name: Create the zonegroup
2016-08-17 02:57:01 +08:00
command: radosgw-admin zonegroup create --rgw-zonegroup={{ rgw_zonegroup }} --endpoints=http://{{ ansible_fqdn }}:{{ radosgw_civetweb_port }} --master --default
2016-08-08 11:16:15 +08:00
run_once: true
2016-08-11 05:05:27 +08:00
when: ("No such file or directory" in zonegroupcheck.stderr) and rgw_zonemaster
2016-08-08 11:16:15 +08:00
notify:
- update period
- name: Create the zone
2016-08-17 02:57:01 +08:00
command: radosgw-admin zone create --rgw-zonegroup={{ rgw_zonegroup }} --rgw-zone={{ rgw_zone }} --endpoints=http://{{ ansible_fqdn }}:{{ radosgw_civetweb_port }} --access-key={{ system_access_key }} --secret={{ system_secret_key }} --default --master
2016-08-08 11:16:15 +08:00
run_once: true
2016-08-11 05:05:27 +08:00
when: ("No such file or directory" in zonecheck.stderr) and rgw_zonemaster
2016-08-08 11:16:15 +08:00
notify:
- update period
- name: Create the zone user
command: radosgw-admin user create --uid=zone.user --display-name="Zone User" --access-key={{ system_access_key }} --secret={{ system_secret_key }} --system
run_once: true
when: "'could not fetch user info: no user info saved' in usercheck.stderr"
notify:
- update period