-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.yml
More file actions
302 lines (261 loc) · 11.6 KB
/
setup.yml
File metadata and controls
302 lines (261 loc) · 11.6 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
---
################################################################################################################
########## Check mandatory variables for installation and configuration ##########
################################################################################################################
- name: Check if mandatory variables in group_vars/all.yml are defined
hosts: localhost
tags:
- preflight
roles:
- role: preflight.check.run
################################################################################################################
########## Check mandatory variables for installation and configuration ##########
################################################################################################################
#################################################################################################################
########### Set hostnames for all hosts in Hetzner Cloud ##########
#################################################################################################################
- name: Set hostnames for all hosts
hosts: all
become: true
tags:
- hostname
tasks:
- name: Set hostnames and fqdn for all hosts on global level
ansible.builtin.command: hostnamectl set-hostname {{ inventory_hostname }}
changed_when: true
when:
- custom_inventory_file is defined
- not custom_inventory_file
- name: Reboot all servers
ansible.builtin.reboot:
msg: Reboot initiated by Ansible
connect_timeout: 5
reboot_timeout: 600
pre_reboot_delay: 0
post_reboot_delay: 30
test_command: whoami
when:
- custom_inventory_file is defined
- not custom_inventory_file
#################################################################################################################
########### Set hostnames for all hosts in Hetzner Cloud ##########
#################################################################################################################
################################################################################################################
########## Setup environment for hosts ##########
################################################################################################################
- name: Setup environment for hosts
hosts: all
become: true
tags:
- environment
roles:
- role: ide.environment.setup
################################################################################################################
########## Setup environment for hosts ##########
################################################################################################################
################################################################################################################
########## Setup TLS preparation ##########
################################################################################################################
- name: Setup TLS for hosts
hosts: all
tags:
- tls
roles:
- role: tls.certs.setup
when:
- tls_external is defined
- not tls_external
################################################################################################################
########## Setup TLS preparation ##########
################################################################################################################
################################################################################################################
########## Setup LDAP ##########
################################################################################################################
- name: Install and configure LDAP server and database
hosts: ldap
become: true
tags:
- ldap
- ldap_server
roles:
- role: authorization.ldap.setup
when:
- ldap_external is defined
- not ldap_external
- name: Install and configure LDAP client
hosts: all,!ldap
become: true
tags:
- ldap
- ldap_client
roles:
- role: authorization.ldap.client
when:
- ldap_external is defined
- not ldap_external
################################################################################################################
########## Setup LDAP ##########
################################################################################################################
################################################################################################################
########## Setup Kerberos server ##########
################################################################################################################
- name: Install and configure Kerberos server
hosts: kerberos
become: true
tags:
- kerberos
roles:
- role: authentication.kerberos.setup
when:
- kerberos_external is defined
- not kerberos_external
################################################################################################################
########## Setup Kerberos server ##########
################################################################################################################
################################################################################################################
########## Setup Zookeeper cluster ##########
################################################################################################################
- name: Install and configure Zookeeper cluster
hosts: zookeeper
become: true
tags:
- zookeeper
roles:
- role: bigdata.zookeeper.setup
when:
- groups.namenodes | length == 3
################################################################################################################
########## Setup Zookeeper cluster ##########
################################################################################################################
################################################################################################################
########## Install and configure HDFS cluster ##########
################################################################################################################
- name: Install and configure HDFS Namenodes
hosts: namenodes
become: true
tags:
- hadoop
- hdfs
roles:
- role: hadoop.common.setup
- role: hadoop.hdfs.common
- role: hadoop.hdfs.journalnode
when:
- groups.namenodes | length == 3
- role: hadoop.hdfs.namenode
- name: Install and configure HDFS Datanodes
hosts: datanodes
become: true
tags:
- hadoop
- hdfs
roles:
- role: hadoop.common.setup
- role: hadoop.hdfs.common
- role: hadoop.hdfs.datanode
- name: Check HDFS is running and healthy
hosts: namenode1
become: true
become_user: "{{ hdfs_user }}"
tags:
- hadoop
- hdfs
- check
roles:
- role: hadoop.hdfs.check
################################################################################################################
########## Install and configure HDFS cluster ##########
################################################################################################################
################################################################################################################
########## Install and configure YARN cluster ##########
################################################################################################################
- name: Install and configure YARN resourcemanager
hosts: resourcemanagers
become: true
tags:
- hadoop
- yarn
roles:
- role: hadoop.yarn.common
- role: hadoop.yarn.resourcemanager
- name: Install and configure YARN nodemanager
hosts: nodemanagers
become: true
tags:
- hadoop
- yarn
roles:
- role: hadoop.yarn.common
- role: hadoop.yarn.nodemanager
- name: Check YARN is running and healthy
hosts: resourcemanager1
become: true
become_user: "{{ yarn_user }}"
tags:
- hadoop
- yarn
- check
roles:
- role: hadoop.yarn.check
################################################################################################################
########## Install and configure YARN cluster ##########
################################################################################################################
################################################################################################################
########## Install Spark ##########
################################################################################################################
- name: Install Spark common libs
hosts: spark
become: true
tags:
- spark
roles:
- role: bigdata.spark.common
################################################################################################################
########## Install Spark ##########
################################################################################################################
################################################################################################################
########## Install and configure JupyterHub and JupyterLab ##########
################################################################################################################
- name: Install HAProxy and Keepalived for PostgreSQL access
hosts: loadbalancers
become: true
tags:
- jupyter
- haproxy
- keepalived
roles:
- role: loadbalancing.haproxy.setup
when:
- groups.hubs | length == 2
- jupyterhub_domain_ip is defined
- role: loadbalancing.keepalived.setup
when:
- groups.hubs | length == 2
- jupyterhub_domain_ip is defined
- name: Install PostgreSQL HA cluster on Worker Nodes as Backend for JupyterHub
hosts: postgres
become: true
tags:
- jupyter
- postgres
roles:
- role: rdbms.postgres.setup
- name: Install JupyterHub
hosts: hubs
become: true
tags:
- jupyter
- jupyterhub
roles:
- role: jupyter.hub.setup
- name: Install JupyterLab
hosts: jupyterlab
become: true
tags:
- jupyter
- jupyterlab
roles:
- role: jupyter.lab.setup
################################################################################################################
########## Install and configure JupyterHub and JupyterLab ##########
################################################################################################################