mirror of https://github.com/ceph/ceph-ansible.git
38 lines
455 B
Plaintext
38 lines
455 B
Plaintext
---
|
|
# Defines deployment design and assigns role to server groups
|
|
|
|
- hosts: mons
|
|
become: True
|
|
roles:
|
|
- ceph-mon
|
|
|
|
- hosts: agents
|
|
become: True
|
|
roles:
|
|
- ceph-agent
|
|
|
|
- hosts: osds
|
|
become: True
|
|
roles:
|
|
- ceph-osd
|
|
|
|
- hosts: mdss
|
|
become: True
|
|
roles:
|
|
- ceph-mds
|
|
|
|
- hosts: rgws
|
|
become: True
|
|
roles:
|
|
- ceph-rgw
|
|
|
|
- hosts: restapis
|
|
become: True
|
|
roles:
|
|
- ceph-restapi
|
|
|
|
- hosts: rbdmirrors
|
|
become: True
|
|
roles:
|
|
- ceph-rbd-mirror
|