ceph-ansible/infrastructure-playbooks/rgw-standalone.yml

25 lines
515 B
YAML
Raw Normal View History

2016-08-17 02:57:01 +08:00
---
# Run ceph-rgw role standalone
# Need to load the facts from mons because ceph-common needs them to generate the ceph.conf
# and collect keys from a mon to bootstrap the rgw nodes
2016-08-17 02:57:01 +08:00
- hosts: mons
become: True
tasks:
- import_role:
name: ceph-defaults
private: false
- import_role:
name: ceph-fetch-keys
private: false
2016-08-17 02:57:01 +08:00
- hosts: rgws
become: True
tasks:
- import_role:
name: ceph-defaults
private: false
- import_role:
name: ceph-rgw
private: false