-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.yml
43 lines (37 loc) · 865 Bytes
/
site.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
- import_playbook: gather-facts.yml
- hosts: all
gather_facts: false
become: yes
roles:
- {role: 'predeploy', tags: 'predeploy'}
- hosts: monitor
gather_facts: false
become: yes
roles:
- {role: 'bootstrap-monitor', tags: 'bootstrap-monitor'}
- hosts: manager
gather_facts: false
become: yes
roles:
- {role: 'bootstrap-manager', tags: 'bootstrap-manager'}
- hosts: monitor,osd
gather_facts: false
become: yes
roles:
- {role: 'bootstrap-osd', tags: 'bootstrap-osd'}
- hosts: osd
gather_facts: false
serial: 1
become: yes
roles:
- {role: 'create-osd', tags: 'create-osd'}
- hosts: manager
gather_facts: false
become: yes
roles:
- {role: 'enable-dashboard', tags: 'enable-dashboard'}
- hosts: monitor
gather_facts: false
become: yes
roles:
- {role: 'ceph-openstack', tags: 'ceph-openstack'}