forked from redhat-cip/dci-openshift-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dci-openshift-agent.yml
396 lines (342 loc) · 10.5 KB
/
dci-openshift-agent.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
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
---
# Step 0 : DCI setup
- name: 'Set dci variables'
hosts: localhost
tags:
- job
- dci
environment:
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
no_proxy: "{{ no_proxy_list }}"
tasks:
- name: Read credentials from env vars
set_fact:
dci_client_id="{{ lookup('env','DCI_CLIENT_ID') }}"
dci_api_secret="{{ lookup('env','DCI_API_SECRET') }}"
dci_cs_url="{{ lookup('env','DCI_CS_URL') }}"
dci_ui_url="{{ lookup('env','DCI_UI_URL') | default('https://www.distributed-ci.io', True) }}"
no_log: true
# Schedule a new job only if not passed via dci-pipeline
- name: Schedule a new job
dci_job:
components: "{{ dci_components }}"
components_by_query: "{{ dci_components_by_query }}"
topic: "{{ dci_topic }}"
comment: "{{ dci_comment | default('') }}"
url: "{{ dci_url | default('') }}"
name: "{{ dci_name | default('') }}"
configuration: "{{ dci_configuration | default('') }}"
previous_job_id: "{{ dci_previous_job_id | default('') }}"
register: job_info
when: job_info is not defined
no_log: true
- name: Set the job id
set_fact:
job_id: '{{ job_info.job.id }}'
- name: copy the job_id to the JOB_ID_FILE if it exists
copy: content="{{ job_id }}" dest={{ JOB_ID_FILE }}
when: JOB_ID_FILE is defined
# Keep in sync with test-runner parsing
- name: UI URL
debug:
msg: 'Follow the log at: {{ dci_ui_url }}/jobs/{{ hostvars.localhost.job_info.job.id }}/jobStates' # noqa 204
- name: Set DCI tags for the current job
dci_job:
id: '{{ job_id }}'
tags: '{{ dci_tags }}'
when: dci_tags is defined
- name: pre-run
dci_job:
id: "{{ job_id }}"
status: "pre-run"
# Step 1 : pre run
- name: 'Launch pre-run'
hosts: localhost
tags:
- pre-run
environment:
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
no_proxy: "{{ no_proxy_list }}"
tasks:
- block:
# prepare infrastructure
- name: "Setup job_logs directory"
include_tasks: plays/log-dir.yml
when: job_logs is undefined
- name: Run the pre-run
include_tasks: plays/pre-run.yml
- name: Run the pre-run hook
include_tasks: '{{ hookdir }}/hooks/pre-run.yml'
loop: "{{ dci_config_dirs }}"
loop_control:
loop_var: hookdir
rescue: &teardown_error
- block:
- name: error
dci_job:
id: "{{ hostvars.localhost.job_id }}"
status: "error"
tags: [dci]
delegate_to: localhost
- block:
- name: Run the teardown play
include_tasks: plays/teardown.yml
- name: Run the teardown hooks
include_tasks: "{{ hookdir }}/hooks/teardown.yml"
loop: "{{ dci_config_dirs }}"
loop_control:
loop_var: hookdir
when: dci_teardown_on_failure|bool
delegate_to: localhost
ignore_unreachable: true
ignore_errors: true
always:
- name: Run the error process
include_tasks: plays/failure.yml
delegate_to: localhost
ignore_unreachable: true
- name: running
dci_job:
id: "{{ hostvars.localhost.job_id }}"
status: "running"
delegate_to: localhost
tags: [dci]
# Step 2 : configure
- name: 'Launch configure'
hosts: provisioner
tags:
- running
- configure
environment:
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
no_proxy: "{{ no_proxy_list }}"
tasks:
- block:
# Prepare provisioner host
- name: Configure provisioner
include_tasks: plays/configure-provisioner.yml
- name: Launch configure
include_tasks: '{{ hookdir }}/hooks/configure.yml'
loop: "{{ dci_config_dirs }}"
loop_control:
loop_var: hookdir
rescue: *teardown_error
# Step 3a-1 : installing
- name: 'Launch install'
hosts: provisioner
tags:
- running
- installing
environment:
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
no_proxy: "{{ no_proxy_list }}"
tasks:
- block:
- name: "dci-openshift-agent : Launch install"
include_tasks: plays/install.yml
when:
- dci_main is not defined or dci_main == 'install'
rescue: &teardown_failure
- block:
- name: failure
dci_job:
id: "{{ hostvars.localhost.job_id }}"
status: "failure"
delegate_to: localhost
tags: [dci]
- name: Run the failure process for partners
include_tasks: "{{ hookdir }}/hooks/failure.yml"
loop: "{{ dci_config_dirs }}"
loop_control:
loop_var: hookdir
ignore_errors: true
- block:
- name: Run the teardown play
include_tasks: plays/teardown.yml
- name: Run the teardown hooks
include_tasks: "{{ hookdir }}/hooks/teardown.yml"
loop: "{{ dci_config_dirs }}"
loop_control:
loop_var: hookdir
when: dci_teardown_on_failure|bool
delegate_to: localhost
ignore_unreachable: true
ignore_errors: true
always:
- name: Run the failure process
include_tasks: plays/failure.yml
delegate_to: localhost
ignore_unreachable: true
# Step 3a-2 : deploy operators, run on the provisioner so OC is automatically set
- name: 'Deploy operators to OCP cluster'
hosts: provisioner
tags:
- running
- operator-deployment
environment:
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
no_proxy: "{{ no_proxy_list }}"
tasks:
- block:
- include_tasks: plays/deploy-operators.yml
when:
- dci_main is not defined or dci_main == 'install'
rescue: *teardown_failure
# Step 3a-3 : hook installing
- name: 'Launch hook install'
hosts: provisioner
tags:
- running
- hook-installing
tasks:
- block:
- name: "dci-openshift-agent : Launch partner install"
include_tasks: '{{ hookdir }}/hooks/install.yml'
loop: "{{ dci_config_dirs }}"
loop_control:
loop_var: hookdir
when:
- dci_main is not defined or dci_main == 'install'
rescue: *teardown_failure
# Step 3b-1 : upgrading
- name: 'Launch upgrade'
hosts: provisioner
tags:
- running
- upgrading
environment:
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
no_proxy: "{{ no_proxy_list }}"
tasks:
- block:
- name: "dci-openshift-agent : Launch upgrade"
vars:
local_registry: "{{ local_registry_host }}:{{ local_registry_port }}"
local_repo: "{{ hostvars[groups['registry_host'][0]].local_repo }}"
include_tasks: plays/upgrade.yml
when:
- dci_main is defined
- dci_main == 'upgrade'
rescue: *teardown_failure
# Step 3b-2 : hook upgrading
- name: 'Launch hook upgrade'
hosts: provisioner
tags:
- running
- hook-upgrading
tasks:
- block:
- name: "dci-openshift-agent : Launch partner upgrade"
vars:
local_registry: "{{ local_registry_host }}:{{ local_registry_port }}"
local_repo: "{{ hostvars[groups['registry_host'][0]].local_repo }}"
include_tasks: '{{ hookdir }}/hooks/upgrade.yml'
loop: "{{ dci_config_dirs }}"
loop_control:
loop_var: hookdir
when:
- dci_main is defined
- dci_main == 'upgrade'
rescue: *teardown_failure
# Step 4 : Red Hat testing
- name: 'Launch Red Hat tests'
hosts: localhost
tags:
- running
- testing
- redhat-testing
environment:
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
no_proxy: "{{ no_proxy_list }}"
tasks:
- block:
- name: "Setup job_logs directory"
include_tasks: plays/log-dir.yml
when: job_logs is undefined
- name: "Launch Red Hat tests"
include_tasks: plays/tests.yml
rescue: *teardown_failure
# Step 5 : partner testing
- name: 'Launch partner tests'
hosts: localhost
tags:
- running
- testing
- partner-testing
environment:
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
no_proxy: "{{ no_proxy_list }}"
tasks:
- block:
- name: "Setup job_logs directory"
include_tasks: plays/log-dir.yml
when: job_logs is undefined
# Launch user tests
- name: Run the partner tests
include_tasks: '{{ hookdir }}/hooks/tests.yml'
loop: "{{ dci_config_dirs }}"
loop_control:
loop_var: hookdir
rescue: *teardown_failure
- name: post-run
dci_job:
id: "{{ job_id }}"
status: "post-run"
tags: [dci]
# Step 6 : post run
- name: Launch post run
hosts: localhost
tags:
- post-run
environment:
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
no_proxy: "{{ no_proxy_list }}"
tasks:
- block:
- include_tasks: plays/post-run.yml
- name: Run the partner post-run
include_tasks: '{{ hookdir }}/hooks/post-run.yml'
loop: "{{ dci_config_dirs }}"
loop_control:
loop_var: hookdir
rescue: *teardown_error
- name: success
dci_job:
id: "{{ job_id }}"
status: "success"
tags: [dci]
# Step 7 : state "success"
- name: 'Success'
hosts: localhost
tags:
- success
environment:
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
no_proxy: "{{ no_proxy_list }}"
tasks:
- block:
- name: Run the success hook
include_tasks: '{{ hookdir }}/hooks/success.yml'
loop: "{{ dci_config_dirs }}"
loop_control:
loop_var: hookdir
- name: Run the teardown play
include_tasks: plays/teardown.yml
- name: Run the teardown hooks
include_tasks: "{{ hookdir }}/hooks/teardown.yml"
loop: "{{ dci_config_dirs }}"
loop_control:
loop_var: hookdir
when: dci_teardown_on_success|bool
ignore_unreachable: true
ignore_errors: true