2016-08-08 11:16:15 +08:00
|
|
|
---
|
2016-08-17 05:57:49 +08:00
|
|
|
- name: create the realm
|
2016-08-08 11:16:15 +08:00
|
|
|
command: radosgw-admin realm create --rgw-realm={{ rgw_realm }} --default
|
2017-09-19 06:33:23 +08:00
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2016-08-08 11:16:15 +08:00
|
|
|
run_once: true
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
2018-06-05 16:01:35 +08:00
|
|
|
- "'No such file or directory' in realmcheck.stderr"
|
2016-08-08 11:16:15 +08:00
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: create the zonegroup
|
2018-10-26 17:14:12 +08:00
|
|
|
command: radosgw-admin zonegroup create --rgw-zonegroup={{ rgw_zonegroup }} --endpoints=http://{{ rgw_multisite_endpoint_addr }}:{{ radosgw_frontend_port }} --master --default
|
2017-09-19 06:33:23 +08:00
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2016-08-08 11:16:15 +08:00
|
|
|
run_once: true
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
2018-06-05 16:01:35 +08:00
|
|
|
- "'No such file or directory' in zonegroupcheck.stderr"
|
2016-08-08 11:16:15 +08:00
|
|
|
|
2016-08-17 05:57:49 +08:00
|
|
|
- name: create the zone
|
2018-10-26 17:14:12 +08:00
|
|
|
command: radosgw-admin zone create --rgw-zonegroup={{ rgw_zonegroup }} --rgw-zone={{ rgw_zone }} --endpoints=http://{{ rgw_multisite_endpoint_addr }}:{{ radosgw_frontend_port }} --access-key={{ system_access_key }} --secret={{ system_secret_key }} --default --master
|
2017-09-19 06:33:23 +08:00
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2016-08-08 11:16:15 +08:00
|
|
|
run_once: true
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
2018-06-05 16:01:35 +08:00
|
|
|
- "'No such file or directory' in zonecheck.stderr"
|
2016-08-08 11:16:15 +08:00
|
|
|
|
2016-08-17 05:57:49 +08:00
|
|
|
- name: create the zone user
|
2017-09-19 06:33:23 +08:00
|
|
|
command: radosgw-admin user create --uid={{ rgw_zone_user }} --display-name="Zone User" --access-key={{ system_access_key }} --secret={{ system_secret_key }} --system
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2016-08-08 11:16:15 +08:00
|
|
|
run_once: true
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
2018-06-05 16:01:35 +08:00
|
|
|
- "'could not fetch user info: no user info saved' in usercheck.stderr"
|
2016-08-08 11:16:15 +08:00
|
|
|
notify:
|
|
|
|
- update period
|