-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathlong-lived-openstack.yml
453 lines (427 loc) · 13.4 KB
/
long-lived-openstack.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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
<%
envs = %w(openstack)
enable_failure_alert = true
%>
---
resource_types:
- name: gcs
type: docker-image
source:
repository: frodenas/gcs-resource
- name: slack-notification
type: docker-image
source:
repository: cfcommunity/slack-notification-resource
tag: latest
- name: bosh-deployment
type: docker-image
source:
repository: cloudfoundry/bosh-deployment-resource
- name: bosh-errand
type: docker-image
source:
repository: pcfkubo/bosh2-errand-resource
tag: v0.1.3-dev
resources:
- name: git-kubo-ci
type: git
source:
uri: https://github.com/cloudfoundry-incubator/kubo-ci
branch: master
- name: git-kubo-deployment
type: git
source:
uri: [email protected]:cloudfoundry-incubator/kubo-deployment.git
branch: develop
private_key: ((git-ssh-key.private_key))
ignore_paths:
- 'LICENSE'
- 'NOTICE'
- name: git-kubo-release
type: git
source:
uri: [email protected]:cloudfoundry-incubator/kubo-release.git
branch: develop
private_key: ((git-ssh-key.private_key))
ignore_paths:
- '*.md'
- 'LICENSE'
- 'NOTICE'
- name: slackers
type: git
source:
uri: [email protected]:cloudfoundry-incubator/cfcr-home.git
private_key: ((git-ssh-key.private_key))
paths:
- 'slackers'
- name: slack-alert
type: slack-notification
source:
url: ((build-alert-slack-url))
- name: cfcr-deployment
type: bosh-deployment
source:
deployment: ci-service
skip_check: true
# - name: cfcr-deployment-turbulence
# type: bosh-deployment
# source:
# deployment: ci-service-turbulence
# skip_check: true
- name: run-apply-addons-errand
type: bosh-errand
source:
deployment: ci-service
skip_check: true
# - name: run-apply-addons-errand-turbulence
# type: bosh-errand
# source:
# deployment: ci-service-turbulence
# skip_check: true
- name: run-smoke-tests-errand
type: bosh-errand
source:
deployment: ci-service
skip_check: true
# - name: run-smoke-tests-errand-turbulence
# type: bosh-errand
# source:
# deployment: ci-service-turbulence
# skip_check: true
- name: gcs-bosh-creds
type: gcs
source:
json_key: ((gcs-json-key))
bucket: kubo-pipeline-store
versioned_file: bosh/duck-openstack/creds.yml
- name: gcs-kubeconfig
type: gcs
source:
json_key: ((gcs-json-key))
bucket: kubo-pipeline-store
versioned_file: k8s/config
- name: gcs-kubo-release-tarball-untested
type: gcs
source:
json_key: ((gcs-json-key))
bucket: kubo-pipeline-store
regexp: dev-builds/kubo-release-(.*).tgz
- name: gcs-kubo-deployment-tarball-untested
type: gcs
source:
json_key: ((gcs-json-key))
bucket: kubo-pipeline-store
regexp: dev-builds/kubo-deployment-(.*).tgz
jobs:
<% envs.each do |env| %>
- name: deploy-k8s-<%= env %>
serial_groups: [main]
plan:
- aggregate:
- get: slackers
- get: gcs-bosh-creds
- get: git-kubo-ci
- get: git-kubo-deployment
trigger: true
- get: git-kubo-release
trigger: true
- get: gcs-kubo-release-tarball-untested
- get: gcs-kubo-deployment-tarball-untested
- task: get-bosh-source-json-from-lock
file: git-kubo-ci/tasks/get-bosh-source-json-from-lock.yml
- task: upload-stemcell
tags: ['<%= env %>']
file: git-kubo-ci/tasks/upload-stemcell.yml
params:
IAAS: <%= env.split('-')[0] %>
- put: cfcr-deployment
params:
manifest: git-kubo-deployment/manifests/cfcr.yml
cleanup: true
no_redact: true
ops_files:
- git-kubo-deployment/manifests/ops-files/misc/bootstrap.yml
- git-kubo-deployment/manifests/ops-files/allow-privileged-containers.yml
- git-kubo-deployment/manifests/ops-files/addons-spec.yml
- git-kubo-deployment/manifests/ops-files/enable-bbr.yml
- git-kubo-ci/manifests/ops-files/add-hpa-properties.yml
- git-kubo-deployment/manifests/ops-files/iaas/openstack/cloud-provider.yml
- git-kubo-ci/manifests/ops-files/add-master-static-ips.yml
- git-kubo-deployment/manifests/ops-files/misc/single-master.yml
- git-kubo-ci/manifests/ops-files/scale-to-one-az.yml
var_files:
addons-spec: "git-kubo-ci/specs/guestbook.yml"
vars_files:
- gcs-bosh-creds/creds.yml
releases:
- gcs-kubo-release-tarball-untested/*.tgz
source_file: source-json/source.json
vars:
deployment_name: ci-service
worker_count: 3
master_static_ips: [192.168.13.11]
kubernetes_master_host: 192.168.13.11
tags: [<%= env %>]
on_failure: &on_failure_alert
do:
- task: configure-slack-notification
file: git-kubo-ci/tasks/configure-slack-notification.yml
- put: slack-alert
params:
attachments_file: slack-notification/attachments
text: |
Build Failed. https://ci.kubo.sh/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME
- task: update-kubeconfig
tags: ['<%= env %>']
file: git-kubo-ci/tasks/update-kubeconfig.yml
params:
CREDFILE: gcs-bosh-creds/creds.yml
VARFILE: gcs-bosh-creds/creds.yml
API_URL: https://192.168.13.11:8443
input_mapping:
kubo-lock: gcs-bosh-creds
- put: run-apply-addons-errand
params:
name: apply-addons
keep_alive: true
source_file: source-json/source.json
tags: [<%= env %>]
on_failure: *on_failure_alert
- put: run-smoke-tests-errand
params:
name: smoke-tests
keep_alive: true
source_file: source-json/source.json
tags: [<%= env %>]
on_failure: *on_failure_alert
- put: gcs-kubeconfig
params:
file: kubeconfig/config
# - name: deploy-k8s-turbulence-<%= env %>
# serial_groups: [turbulence]
# plan:
# - aggregate:
# - get: slackers
# - get: gcs-bosh-creds
# - get: git-kubo-ci
# - get: git-kubo-deployment
# trigger: true
# - get: git-kubo-release
# trigger: true
# - get: gcs-kubo-release-tarball-untested
# - get: gcs-kubo-deployment-tarball-untested
# - task: get-bosh-source-json-from-lock
# file: git-kubo-ci/tasks/get-bosh-source-json-from-lock.yml
# - task: upload-stemcell
# tags: ['<%= env %>']
# file: git-kubo-ci/tasks/upload-stemcell.yml
# params:
# IAAS: <%= env.split('-')[0] %>
# - put: cfcr-deployment-turbulence
# params:
# manifest: git-kubo-deployment/manifests/cfcr.yml
# cleanup: true
# no_redact: true
# ops_files:
# - git-kubo-deployment/manifests/ops-files/misc/bootstrap.yml
# - git-kubo-deployment/manifests/ops-files/allow-privileged-containers.yml
# - git-kubo-deployment/manifests/ops-files/addons-spec.yml
# - git-kubo-deployment/manifests/ops-files/enable-bbr.yml
# - git-kubo-ci/manifests/ops-files/add-hpa-properties.yml
# - git-kubo-deployment/manifests/ops-files/iaas/openstack/cloud-provider.yml
# - git-kubo-ci/manifests/ops-files/add-master-static-ips.yml
# - git-kubo-deployment/manifests/ops-files/misc/single-master.yml
# - git-kubo-ci/manifests/ops-files/scale-to-one-az.yml
# - git-kubo-deployment/manifests/ops-files/rename.yml
# var_files:
# addons-spec: "git-kubo-ci/specs/guestbook.yml"
# vars_files:
# - gcs-bosh-creds/creds.yml
# releases:
# - gcs-kubo-release-tarball-untested/*.tgz
# source_file: source-json/source.json
# vars:
# deployment_name: ci-service-turbulence
# worker_count: 3
# master_static_ips: [192.168.13.21]
# kubernetes_master_host: 192.168.13.21
# tags: [<%= env %>]
# on_failure: &on_failure_alert
# do:
# - task: configure-slack-notification
# file: git-kubo-ci/tasks/configure-slack-notification.yml
# - put: slack-alert
# params:
# attachments_file: slack-notification/attachments
# text: |
# Build Failed. https://ci.kubo.sh/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME
# - task: update-kubeconfig
# tags: ['<%= env %>']
# file: git-kubo-ci/tasks/update-kubeconfig.yml
# params:
# CREDFILE: gcs-bosh-creds/creds.yml
# VARFILE: gcs-bosh-creds/creds.yml
# API_URL: https://192.168.13.21:8443
# DEPLOYMENT_NAME: "ci-service-turbulence"
# input_mapping:
# kubo-lock: gcs-bosh-creds
# - put: run-apply-addons-errand-turbulence
# params:
# name: apply-addons
# keep_alive: true
# source_file: source-json/source.json
# tags: [<%= env %>]
# on_failure: *on_failure_alert
# - put: run-smoke-tests-errand-turbulence
# params:
# name: smoke-tests
# keep_alive: true
# source_file: source-json/source.json
# tags: [<%= env %>]
# on_failure: *on_failure_alert
# - put: gcs-kubeconfig
# params:
# file: kubeconfig/config
- name: run-k8s-integration-tests-<%= env %>
plan:
- aggregate:
- get: slackers
- get: gcs-bosh-creds
- get: git-kubo-ci
- get: git-kubo-deployment
passed: [ 'deploy-k8s-<%= env %>' ]
trigger: true
- get: git-kubo-release
passed: [ 'deploy-k8s-<%= env %>' ]
trigger: true
- get: gcs-kubo-release-tarball-untested
passed: [ 'deploy-k8s-<%= env %>' ]
- get: gcs-kubo-deployment-tarball-untested
passed: [ 'deploy-k8s-<%= env %>' ]
- get: gcs-kubeconfig
passed: [ 'deploy-k8s-<%= env %>' ]
version: every
trigger: true
- task: integration-tests
tags: [<%= env %>]
file: git-kubo-ci/tasks/run-k8s-integration-tests.yml
on_failure: *on_failure_alert
params:
DEPLOYMENT_NAME: ci-service
ENABLE_PERSISTENT_VOLUME_TESTS: true
ENABLE_K8S_LBS_TESTS: false
ENABLE_MULTI_AZ_TESTS: false
- name: run-k8s-conformance-tests-<%= env %>
plan:
- aggregate:
- get: slackers
- get: gcs-bosh-creds
- get: git-kubo-ci
- get: gcs-kubo-release-tarball-untested
passed: [ 'deploy-k8s-<%= env %>' ]
- get: gcs-kubo-deployment-tarball-untested
passed: [ 'deploy-k8s-<%= env %>' ]
- get: git-kubo-deployment
passed: [ 'deploy-k8s-<%= env %>' ]
trigger: true
- get: git-kubo-release
passed: [ 'deploy-k8s-<%= env %>' ]
- get: gcs-kubeconfig
passed: [ 'deploy-k8s-<%= env %>' ]
version: every
trigger: true
- task: conformance-tests
file: git-kubo-ci/tasks/run-conformance-tests.yml
tags:
- <%= env %>
on_failure: *on_failure_alert
<%
turbulence_passed_reqs = ["deploy-k8s-turbulence-#{env}"]
%>
# - name: run-k8s-turbulence-tests-<%= env %>
# serial_groups: [turbulence]
# plan:
# - aggregate:
# - get: slackers
# - get: gcs-bosh-creds
# passed: <%= turbulence_passed_reqs %>
# - get: git-kubo-ci
# - get: gcs-kubo-release-tarball-untested
# passed: <%= turbulence_passed_reqs %>
# - get: gcs-kubo-deployment-tarball-untested
# passed: <%= turbulence_passed_reqs %>
# - get: git-kubo-deployment
# passed: <%= turbulence_passed_reqs %>
# trigger: true
# - get: git-kubo-release
# passed: <%= turbulence_passed_reqs %>
# trigger: true
# - get: gcs-kubeconfig
# passed: [ 'deploy-k8s-turbulence-<%= env %>' ]
# version: every
# - task: copy-openstack-creds-to-director
# file: git-kubo-ci/tasks/copy-openstack-creds-to-director.yml
# - task: turbulence-tests
# file: git-kubo-ci/tasks/run-k8s-turbulence-tests.yml
# tags: ['<%= env %>']
# on_failure: *on_failure_alert
# params:
# DEPLOYMENT_NAME: ci-service-turbulence
# ENABLE_TURBULENCE_WORKER_DRAIN_TESTS: true
# ENABLE_TURBULENCE_WORKER_FAILURE_TESTS: true
# ENABLE_TURBULENCE_MASTER_FAILURE_TESTS: true
# ENABLE_TURBULENCE_PERSISTENCE_FAILURE_TESTS: false
<%
destroy_k8s_reqs = ["run-k8s-integration-tests-#{env}", "run-k8s-conformance-tests-#{env}"]
%>
- name: destroy-k8s-<%= env %>
serial_groups: [main]
plan:
- aggregate:
- get: slackers
- get: git-kubo-ci
- get: gcs-bosh-creds
- get: git-kubo-deployment
passed: <%= destroy_k8s_reqs %>
trigger: true
- get: git-kubo-release
passed: <%= destroy_k8s_reqs %>
trigger: true
- get: gcs-kubeconfig
passed: <%= destroy_k8s_reqs %>
version: every
trigger: true
- get: gcs-kubo-release-tarball-untested
passed: <%= destroy_k8s_reqs %>
- get: gcs-kubo-deployment-tarball-untested
passed: <%= destroy_k8s_reqs %>
- task: get-bosh-source-json-from-lock
file: git-kubo-ci/tasks/get-bosh-source-json-from-lock.yml
- task: destroy-k8s
tags: [<%= env %>]
file: git-kubo-ci/tasks/destroy-k8s-instance.yml
on_failure: *on_failure_alert
# - name: destroy-k8s-turbulence-<%= env %>
# serial_groups: [turbulence]
# plan:
# - aggregate:
# - get: slackers
# - get: git-kubo-ci
# - get: gcs-bosh-creds
# - get: git-kubo-deployment
# passed: ['run-k8s-turbulence-tests-<%= env %>']
# trigger: true
# - get: git-kubo-release
# passed: ['run-k8s-turbulence-tests-<%= env %>']
# trigger: true
# - get: gcs-kubo-release-tarball-untested
# passed: ['run-k8s-turbulence-tests-<%= env %>']
# - get: gcs-kubo-deployment-tarball-untested
# passed: ['run-k8s-turbulence-tests-<%= env %>']
# - task: get-bosh-source-json-from-lock
# file: git-kubo-ci/tasks/get-bosh-source-json-from-lock.yml
# - task: destroy-k8s
# tags: [<%= env %>]
# file: git-kubo-ci/tasks/destroy-k8s-instance.yml
# on_failure: *on_failure_alert
<% end %>