blob: a5547d07f5c26aecfc83c01d3f1be42e1df3f64b (
plain)
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
|
---
- hosts: all
remote_user: root
sudo: True
roles:
- common
- hosts: ha
remote_user: root
sudo: True
roles:
- ha
- hosts: controller
remote_user: root
sudo: True
roles:
- database
- mq
- keystone
- nova-controller
- neutron-controller
- cinder-controller
- glance
- neutron-common
- neutron-network
- dashboard
- hosts: compute
remote_user: root
sudo: True
roles:
- nova-compute
- neutron-compute
- cinder-volume
- hosts: all
remote_user: root
sudo: True
roles:
- monitor
|