This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.yml
110 lines (100 loc) · 1.96 KB
/
setup.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
---
# Command in Zookeeper
- hosts: zk
serial: 1
tasks:
- include_role:
name: setup
vars:
profile: z
when: comp_task == 'all' or comp_task == 'zk'
# Command in Cassandra
- hosts: c
serial: 1
tasks:
- include_role:
name: setup
vars:
profile: c
when: comp_task == 'all' or comp_task == 'cs'
# Command in Zookeeper and Cassandra
- hosts: ds
serial: 1
tasks:
- include_role:
name: setup
vars:
profile: ds
when: comp_task == 'all' or comp_task == 'ds'
# Command in OpenLDAP
- hosts: ldap
serial: 1
tasks:
- include_role:
name: setup
vars:
profile: ld
when: comp_task == 'all' or comp_task == 'ldap'
# Command in Management Server
- hosts: ms
serial: 1
tasks:
- include_role:
name: setup
vars:
profile: ms
when: comp_task == 'all' or comp_task == 'ms'
# Command in Management Server and OpenLDAP
- hosts: msldap
serial: 1
tasks:
- include_role:
name: setup
vars:
profile: ms
when: comp_task == 'all' or comp_task == 'msldap'
# Command in Router
- hosts: r
serial: 1
tasks:
- include_role:
name: setup
vars:
profile: r
when: comp_task == 'all' or comp_task == 'r'
# Command in Message Processor
- hosts: mp
serial: 1
tasks:
- include_role:
name: setup
vars:
profile: mp
when: comp_task == 'all' or comp_task == 'mp'
# Command in Router and Message Processor
- hosts: rmp
serial: 1
tasks:
- include_role:
name: setup
vars:
profile: rmp
when: comp_task == 'all' or comp_task == 'rmp'
# Command in QPIDD and Qpid Server
- hosts: qpid
serial: 1
tasks:
- include_role:
name: setup
vars:
profile: qs
when: comp_task == 'all' or comp_task == 'qs'
# Command in Postgresql and Postgres Server
- hosts: pg
serial: 1
tasks:
- include_role:
name: setup
vars:
profile: ps
when: comp_task == 'all' or comp_task == 'pg'