-
Notifications
You must be signed in to change notification settings - Fork 2
/
ha.yml
55 lines (51 loc) · 1.23 KB
/
ha.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
44
45
46
47
48
49
50
51
52
53
54
55
---
- hosts: controller
become: yes
roles:
- { role: common/hostname }
- { role: chrony }
- { role: package }
- { role: common/firewall }
- { role: mariadb/mariadb-galera }
- { role: common/apparmor }
- { role: rabbitmq/multiple }
- { role: memcached}
- { role: etcd }
- { role: haproxy }
- { role: redis/ha }
- { role: pacemaker }
- { role: keystone/ha }
- { role: glance/ha }
- { role: nova/controller/ha }
- { role: neutron/controller/ha }
- { role: horizon }
- { role: cinder/controller/ha }
- { role: heat/ha }
- { role: aodh/ha }
- { role: gnocchi/ha }
- { role: ceilometer/controller/ha }
# - { role: docker }
- { role: grafana }
- hosts: compute
become: yes
roles:
- { role: common/hostname }
- { role: chrony }
- { role: package }
- { role: nova/compute}
- { role: neutron/compute }
- { role: ceilometer/compute }
- hosts: network
become: yes
roles:
- { role: common/hostname }
- { role: chrony }
- { role: package }
- { role: neutron/network/ha }
- hosts: storage
become: yes
roles:
- { role: common/hostname }
- { role: chrony }
- { role: package }
- { role: cinder/storage }