blob: bd045b7fef32462b08b2d94a0260292729d6f257 [file] [log] [blame]
Kailash Khalasi417d13f2018-04-17 12:38:48 -07001---
2# POD Nightly Build Pipeline Jobs
3
4- test-pipe-job-boiler-plate: &test-pipe-job-boiler-plate
5 name: test-pipe-job-boiler-plate
6
7 project-type: pipeline
8
9 sandbox: true
10
11 properties:
12 - cord-infra-properties:
Matteo Scandoloa0e6f3f2020-11-12 17:13:20 -080013 build-days-to-keep: '{big-build-days-to-keep}'
14 artifact-num-to-keep: '{big-artifact-num-to-keep}'
Kailash Khalasi417d13f2018-04-17 12:38:48 -070015
Kailash Khalasi417d13f2018-04-17 12:38:48 -070016
17- job-template:
Suchitra Vemurifad6ee42020-09-01 22:14:53 -070018 name: 'build_{profile}{name-extension}_{config-pod}_{branch}_manual'
Suchitra Vemuri2c8ec0b2018-05-07 13:35:54 -070019 id: build_pod_manual
20 description: |
Zack Williams5412fbf2020-08-03 16:03:29 -070021 Manual Build on POD {config-pod} using {Jenkinsfile}<br /><br />
hwchiue3815ab2019-10-17 15:06:25 -070022 Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br />
Suchitra Vemuri2c8ec0b2018-05-07 13:35:54 -070023 Created by QA (Suchitra Vemuri - suchitra@opennetworking.org ) <br />
24 Copyright (c) 2018 Open Networking Foundation (ONF)
25
Andrea Campanellaf6a6fb32020-12-16 12:14:47 +010026 openoltAdapterChart: onf/voltha-adapter-openolt
27
Suchitra Vemuri2c8ec0b2018-05-07 13:35:54 -070028 <<: *test-pipe-job-boiler-plate
29
30 parameters:
31 - string:
Zack Williams8ef79812019-10-29 11:09:18 -070032 name: buildNode
33 default: '{build-node}'
34 description: 'Name of the Jenkins executor node to run the job on'
35
36 - string:
hwchiu14f97852019-10-08 10:51:11 -070037 name: TestNodeName
Zack Williams8ef79812019-10-29 11:09:18 -070038 default: '{build-node}'
39 description: 'DEPRECATED - use buildNode instead'
Suchitra Vemuri2c8ec0b2018-05-07 13:35:54 -070040
41 - string:
hwchiu14f97852019-10-08 10:51:11 -070042 name: cordRepoUrl
43 default: '{gerrit-server-url}'
44 description: 'The URL of the CORD Project repository'
Suchitra Vemuri2c8ec0b2018-05-07 13:35:54 -070045
46 - string:
hwchiu14f97852019-10-08 10:51:11 -070047 name: configBaseDir
48 default: 'pod-configs'
49 description: 'The directory inside the POD configs repository'
Suchitra Vemuri2c8ec0b2018-05-07 13:35:54 -070050
51 - string:
hwchiu14f97852019-10-08 10:51:11 -070052 name: configDeploymentDir
53 default: 'deployment-configs'
54 description: 'The deployment configs folder'
Kailash Khalasi2eacfc52018-08-29 09:03:21 -070055
56 - string:
hwchiu14f97852019-10-08 10:51:11 -070057 name: configKubernetesDir
58 default: 'kubernetes-configs'
59 description: 'The kubernetes config folder'
Kailash Khalasi2eacfc52018-08-29 09:03:21 -070060
61 - string:
hwchiu14f97852019-10-08 10:51:11 -070062 name: configToscaDir
63 default: 'tosca-configs'
64 description: 'The tosca config folder'
Kailash Khalasi619e6882018-09-13 13:15:37 -070065
66 - string:
hwchiu14f97852019-10-08 10:51:11 -070067 name: configFileName
68 default: '{config-pod}'
69 description: 'The config file'
Kailash Khalasi2eacfc52018-08-29 09:03:21 -070070
71 - string:
hwchiu14f97852019-10-08 10:51:11 -070072 name: branch
73 default: '{branch}'
Suchitra Vemuri2c8ec0b2018-05-07 13:35:54 -070074
Kailash Khalasi9559f362018-09-14 13:53:28 -070075 - string:
hwchiu14f97852019-10-08 10:51:11 -070076 name: helmRepoUrl
77 default: 'https://charts.opencord.org'
78 description: 'URL where helm-charts are published'
Kailash876b9012019-03-13 13:22:34 -070079
80 - string:
hwchiu14f97852019-10-08 10:51:11 -070081 name: profile
82 default: '{profile}'
83 description: 'Profile in which this job installs'
Kailash Khalasi9559f362018-09-14 13:53:28 -070084
Kailashdee47a02018-11-29 08:46:32 -080085 - string:
hwchiu14f97852019-10-08 10:51:11 -070086 name: notificationEmail
87 default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org'
88 description: ''
Kailashdee47a02018-11-29 08:46:32 -080089
Kailash Khalasice9eaec2018-09-14 12:01:56 -070090 - bool:
Matteo Scandolo38127362019-04-16 14:14:22 -070091 name: installMonitoringAndLogging
92 default: false
93 description: "Wether to install prometheus and Elk-stack"
94
95 - bool:
Kailash Khalasice9eaec2018-09-14 12:01:56 -070096 name: configurePod
97 default: true
98 description: "Configure POD via TOSCA post build"
99
Kailashdee47a02018-11-29 08:46:32 -0800100 - bool:
hwchiu14f97852019-10-08 10:51:11 -0700101 name: reinstallOlt
Suchitra Vemuridf2632f2020-07-15 17:12:09 -0700102 default: '{reinstall-olt}'
hwchiu14f97852019-10-08 10:51:11 -0700103 description: "Re-install olt software bringing up CORD"
Suchitra Vemuri2c8ec0b2018-05-07 13:35:54 -0700104
Matteo Scandolofe69a8c2018-11-27 11:50:06 -0800105 - bool:
106 name: installBBSim
107 default: false
108 description: "Install the BBSim container"
109
110 - string:
111 name: onuNumber
112 default: '16'
113 description: "Onus per PonPort"
114
Suchitra Vemurie0451712020-05-06 22:51:23 -0700115 - string:
116 name: workFlow
117 default: '{work-flow}'
118 description: 'Installs and uses the specified work flow on the POD'
119
120 - string:
121 name: NumOfOpenOnu
122 default: '{num-of-openonu}'
123 description: 'Installs the specified Number of OpenOnu Adapters'
124
125 - string:
126 name: NumOfOnos
127 default: '{num-of-onos}'
128 description: 'Installs the specified Number of ONOS instances'
129
Suchitra Vemuria0d92052020-07-15 11:36:12 -0700130 - bool:
131 name: inBandManagement
132 default: '{in-band-management}'
133 description: 'Indicates whether POD is configured for in band management'
134
Suchitra Vemurie0451712020-05-06 22:51:23 -0700135 - string:
136 name: NumOfAtomix
137 default: '{num-of-atomix}'
138 description: 'Installs the specified Number of Atomix Instances'
Andrea Campanellaf6a6fb32020-12-16 12:14:47 +0100139
140 - string:
141 name: openoltAdapterChart
142 default: '{openoltAdapterChart}'
143 description: 'OpenOLT chart name (or location on file system)'
144
Suchitra Vemuri2c8ec0b2018-05-07 13:35:54 -0700145 concurrent: true
146
147 pipeline-scm:
148 script-path: '{Jenkinsfile}'
149 scm:
150 - git:
hwchiu14f97852019-10-08 10:51:11 -0700151 url: '{gerrit-server-url}/{test-repo}'
152 branches:
153 - '{branch}'
Suchitra Vemuri2c8ec0b2018-05-07 13:35:54 -0700154
155- job-template:
Kailash Khalasi9559f362018-09-14 13:53:28 -0700156 name: 'build_{profile}_{config-pod}_{branch}'
Kailash Khalasi2eacfc52018-08-29 09:03:21 -0700157 id: build_pod_timer
Suchitra Vemuri2c8ec0b2018-05-07 13:35:54 -0700158 description: |
Zack Williams5412fbf2020-08-03 16:03:29 -0700159 Nightly Kubernetes tests on {config-pod} using {Jenkinsfile}<br /><br />
160 Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml<br />
Suchitra Vemuricbb295e2018-06-01 18:48:30 -0700161 Created by Suchitra Vemuri, suchitra@opennetworking.org <br />
162 Copyright (c) 2017 Open Networking Foundation (ONF)
Andrea Campanellab54cabe2020-11-26 14:48:11 +0100163 disabled: '{disable-job}'
Suchitra Vemuricbb295e2018-06-01 18:48:30 -0700164
165 <<: *test-pipe-job-boiler-plate
166
Andrea Campanellaa8c4b5c2021-01-12 09:41:52 +0100167 openoltAdapterChart: onf/voltha-adapter-openolt
168
Suchitra Vemuricbb295e2018-06-01 18:48:30 -0700169 parameters:
170 - string:
Zack Williams8ef79812019-10-29 11:09:18 -0700171 name: buildNode
172 default: '{build-node}'
173 description: 'Name of the Jenkins executor node to run the job on'
174
175 - string:
hwchiu14f97852019-10-08 10:51:11 -0700176 name: TestNodeName
Zack Williams8ef79812019-10-29 11:09:18 -0700177 default: '{build-node}'
178 description: 'DEPRECATED - use buildNode instead'
Suchitra Vemuricbb295e2018-06-01 18:48:30 -0700179
180 - string:
hwchiu14f97852019-10-08 10:51:11 -0700181 name: cordRepoUrl
182 default: '{gerrit-server-url}'
183 description: 'The URL of the CORD Project repository'
Suchitra Vemuricbb295e2018-06-01 18:48:30 -0700184
185 - string:
hwchiu14f97852019-10-08 10:51:11 -0700186 name: configBaseDir
187 default: 'pod-configs'
188 description: 'The directory inside the POD configs repository'
Suchitra Vemuricbb295e2018-06-01 18:48:30 -0700189
190 - string:
hwchiu14f97852019-10-08 10:51:11 -0700191 name: configDeploymentDir
192 default: 'deployment-configs'
193 description: 'The deployment configs folder'
Kailash Khalasi2eacfc52018-08-29 09:03:21 -0700194
195 - string:
hwchiu14f97852019-10-08 10:51:11 -0700196 name: configKubernetesDir
197 default: 'kubernetes-configs'
198 description: 'The kubernetes config folder'
Kailash Khalasi2eacfc52018-08-29 09:03:21 -0700199
200 - string:
hwchiu14f97852019-10-08 10:51:11 -0700201 name: configToscaDir
202 default: 'tosca-configs'
203 description: 'The tosca config folder'
Kailash Khalasi619e6882018-09-13 13:15:37 -0700204
205 - string:
hwchiu14f97852019-10-08 10:51:11 -0700206 name: configFileName
207 default: '{config-pod}'
208 description: 'The config file'
Suchitra Vemuricbb295e2018-06-01 18:48:30 -0700209
210 - string:
hwchiu14f97852019-10-08 10:51:11 -0700211 name: oltDebVersion
212 default: '{oltDebVersion}'
213 description: 'OLT Software version to install'
Kailash Khalasid9e6aff2018-08-27 15:10:16 -0700214
215 - string:
hwchiu14f97852019-10-08 10:51:11 -0700216 name: branch
217 default: '{branch}'
Suchitra Vemuricbb295e2018-06-01 18:48:30 -0700218
219 - string:
hwchiu14f97852019-10-08 10:51:11 -0700220 name: helmRepoUrl
221 default: 'https://charts.opencord.org'
222 description: 'URL where helm-charts are published'
Kailash4c745a12019-03-15 11:32:07 -0700223
224 - string:
hwchiu14f97852019-10-08 10:51:11 -0700225 name: profile
226 default: '{profile}'
227 description: 'Profile in which this job installs'
Suchitra Vemuricbb295e2018-06-01 18:48:30 -0700228
Kailash Khalasice9eaec2018-09-14 12:01:56 -0700229 - bool:
230 name: configurePod
231 default: true
232 description: "Configure POD via TOSCA post build"
233
Kailashdee47a02018-11-29 08:46:32 -0800234 - bool:
hwchiu14f97852019-10-08 10:51:11 -0700235 name: reinstallOlt
Suchitra Vemuridf2632f2020-07-15 17:12:09 -0700236 default: '{reinstall-olt}'
hwchiu14f97852019-10-08 10:51:11 -0700237 description: "Re-install olt software bringing up CORD"
Kailashdee47a02018-11-29 08:46:32 -0800238
239 - bool:
240 name: installBBSim
241 default: false
242 description: "Install the BBSim container"
243
244 - string:
245 name: onuNumber
246 default: '16'
247 description: "Onus per PonPort"
248
Kailash Khalasi9559f362018-09-14 13:53:28 -0700249 - string:
hwchiu14f97852019-10-08 10:51:11 -0700250 name: notificationEmail
251 default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org'
252 description: ''
Kailash Khalasi9559f362018-09-14 13:53:28 -0700253
Andrea Campanellaa8c4b5c2021-01-12 09:41:52 +0100254 - string:
255 name: openoltAdapterChart
256 default: '{openoltAdapterChart}'
257 description: 'OpenOLT chart name (or location on file system)'
258
Suchitra Vemuricbb295e2018-06-01 18:48:30 -0700259 concurrent: true
260
261 pipeline-scm:
262 script-path: '{Jenkinsfile}'
263 scm:
264 - git:
hwchiu14f97852019-10-08 10:51:11 -0700265 url: '{gerrit-server-url}/{test-repo}'
266 branches:
267 - '{branch}'
Suchitra Vemuricbb295e2018-06-01 18:48:30 -0700268
269 triggers:
hwchiu14f97852019-10-08 10:51:11 -0700270 - timed: |
Suchitra Vemuricbb295e2018-06-01 18:48:30 -0700271 TZ=America/Los_Angeles
Kailash Khalasiacd7ea02018-09-28 13:36:47 -0700272 H {time} * * *
Kailash Khalasi9559f362018-09-14 13:53:28 -0700273
274- job-template:
275 name: 'build_{profile}_{config-pod}_{branch}_test'
276 id: build_pod_test
Andrea Campanellab54cabe2020-11-26 14:48:11 +0100277
278 disabled: '{disable-job}'
Kailash Khalasi9559f362018-09-14 13:53:28 -0700279 description: |
Zack Williams5412fbf2020-08-03 16:03:29 -0700280 Post Tests on {config-pod} triggered by build_{config-pod}_{branch}, using {Jenkinsfile}<br /><br />
hwchiue3815ab2019-10-17 15:06:25 -0700281 Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br />
Kailash Khalasi9559f362018-09-14 13:53:28 -0700282 Created by Kailash Khalasi - kailash@opennetworking.org <br />
283 Copyright (c) 2017 Open Networking Foundation (ONF)
284
285 <<: *test-pipe-job-boiler-plate
286
287 parameters:
288 - string:
Zack Williams8ef79812019-10-29 11:09:18 -0700289 name: buildNode
290 default: '{build-node}'
291 description: 'Name of the Jenkins executor node to run the job on'
292
293 - string:
hwchiu14f97852019-10-08 10:51:11 -0700294 name: TestNodeName
Zack Williams8ef79812019-10-29 11:09:18 -0700295 default: '{build-node}'
296 description: 'DEPRECATED - use buildNode instead'
Kailash Khalasi9559f362018-09-14 13:53:28 -0700297
298 - string:
hwchiu14f97852019-10-08 10:51:11 -0700299 name: cordRepoUrl
300 default: '{gerrit-server-url}'
301 description: 'The URL of the CORD Project repository'
Kailash Khalasi9559f362018-09-14 13:53:28 -0700302
303 - string:
hwchiu14f97852019-10-08 10:51:11 -0700304 name: configBaseDir
305 default: 'pod-configs'
306 description: 'The directory inside the POD configs repository'
Kailash Khalasi9559f362018-09-14 13:53:28 -0700307
308 - string:
hwchiu14f97852019-10-08 10:51:11 -0700309 name: configDeploymentDir
310 default: 'deployment-configs'
311 description: 'The deployment configs folder'
Kailash Khalasi9559f362018-09-14 13:53:28 -0700312
313 - string:
hwchiu14f97852019-10-08 10:51:11 -0700314 name: configKubernetesDir
315 default: 'kubernetes-configs'
316 description: 'The kubernetes config folder'
Kailash Khalasi9559f362018-09-14 13:53:28 -0700317
318 - string:
hwchiu14f97852019-10-08 10:51:11 -0700319 name: configToscaDir
320 default: 'tosca-configs'
321 description: 'The tosca config folder'
Kailash Khalasi9559f362018-09-14 13:53:28 -0700322
323 - string:
hwchiu14f97852019-10-08 10:51:11 -0700324 name: configFileName
325 default: '{config-pod}'
326 description: 'The config file'
Kailash Khalasi9559f362018-09-14 13:53:28 -0700327
328 - string:
hwchiu14f97852019-10-08 10:51:11 -0700329 name: branch
330 default: '{branch}'
Kailash Khalasi9559f362018-09-14 13:53:28 -0700331
332 - string:
hwchiu14f97852019-10-08 10:51:11 -0700333 name: notificationEmail
334 default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org'
335 description: ''
Kailash Khalasi9559f362018-09-14 13:53:28 -0700336
337 concurrent: true
338
339 pipeline-scm:
340 script-path: '{Jenkinsfile}'
341 scm:
342 - git:
hwchiu14f97852019-10-08 10:51:11 -0700343 url: '{gerrit-server-url}/{test-repo}'
344 branches:
345 - '{branch}'
Kailash Khalasi9559f362018-09-14 13:53:28 -0700346
347 triggers:
348 - reverse:
349 jobs: 'build_{profile}_{config-pod}_{branch}'
350 result: 'success'
Kailash Khalasi4de32fe2018-11-12 13:31:39 -0800351
352- job-template:
Kailashd1963d12018-12-17 15:11:01 -0800353 name: 'build_{config-pod}_seba_release_{release}'
354 id: build_pod_manual_release
355 description: |
Zack Williams5412fbf2020-08-03 16:03:29 -0700356 Manual Build on POD {config-pod}, using {Jenkinsfile}<br /><br />
hwchiue3815ab2019-10-17 15:06:25 -0700357 Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br />
Kailashd1963d12018-12-17 15:11:01 -0800358 Created by QA (Suchitra Vemuri - suchitra@opennetworking.org ) <br />
359 Copyright (c) 2018 Open Networking Foundation (ONF)
360
361 <<: *test-pipe-job-boiler-plate
362
363 parameters:
364 - string:
Zack Williams8ef79812019-10-29 11:09:18 -0700365 name: buildNode
366 default: '{build-node}'
367 description: 'Name of the Jenkins executor node to run the job on'
368
369 - string:
hwchiu14f97852019-10-08 10:51:11 -0700370 name: TestNodeName
Zack Williams8ef79812019-10-29 11:09:18 -0700371 default: '{build-node}'
372 description: 'DEPRECATED - use buildNode instead'
Kailashd1963d12018-12-17 15:11:01 -0800373
374 - string:
hwchiu14f97852019-10-08 10:51:11 -0700375 name: cordRepoUrl
376 default: '{gerrit-server-url}'
377 description: 'The URL of the CORD Project repository'
Kailashd1963d12018-12-17 15:11:01 -0800378
379 - string:
hwchiu14f97852019-10-08 10:51:11 -0700380 name: configBaseDir
381 default: 'pod-configs'
382 description: 'The directory inside the POD configs repository'
Kailashd1963d12018-12-17 15:11:01 -0800383
384 - string:
hwchiu14f97852019-10-08 10:51:11 -0700385 name: configDeploymentDir
386 default: 'deployment-configs'
387 description: 'The deployment configs folder'
Kailashd1963d12018-12-17 15:11:01 -0800388
389 - string:
hwchiu14f97852019-10-08 10:51:11 -0700390 name: configKubernetesDir
391 default: 'kubernetes-configs'
392 description: 'The kubernetes config folder'
Kailashd1963d12018-12-17 15:11:01 -0800393
394 - string:
hwchiu14f97852019-10-08 10:51:11 -0700395 name: configToscaDir
396 default: 'tosca-configs'
397 description: 'The tosca config folder'
Kailashd1963d12018-12-17 15:11:01 -0800398
399 - string:
hwchiu14f97852019-10-08 10:51:11 -0700400 name: configFileName
401 default: '{config-pod}'
402 description: 'The config file'
Kailashd1963d12018-12-17 15:11:01 -0800403
404 - string:
hwchiu14f97852019-10-08 10:51:11 -0700405 name: oltDebVersion
406 default: '{oltDebVersion}'
407 description: 'OLT Software version to install'
Kailashd1963d12018-12-17 15:11:01 -0800408
409 - string:
hwchiu14f97852019-10-08 10:51:11 -0700410 name: branch
411 default: '{branch}'
Kailashd1963d12018-12-17 15:11:01 -0800412
413 - string:
hwchiu14f97852019-10-08 10:51:11 -0700414 name: notificationEmail
415 default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org'
416 description: ''
Kailashd1963d12018-12-17 15:11:01 -0800417
418 - bool:
419 name: configurePod
420 default: true
421 description: "Configure POD via TOSCA post build"
422
423 - bool:
hwchiu14f97852019-10-08 10:51:11 -0700424 name: reinstallOlt
Suchitra Vemuridf2632f2020-07-15 17:12:09 -0700425 default: '{reinstall-olt}'
hwchiu14f97852019-10-08 10:51:11 -0700426 description: "Re-install olt software bringing up CORD"
Kailashd1963d12018-12-17 15:11:01 -0800427
428 - bool:
429 name: installBBSim
430 default: false
431 description: "Install the BBSim container"
432
433 - string:
434 name: onuNumber
435 default: '16'
436 description: "Onus per PonPort"
437
438 concurrent: true
439
440 pipeline-scm:
441 script-path: '{Jenkinsfile}'
442 scm:
443 - git:
hwchiu14f97852019-10-08 10:51:11 -0700444 url: '{gerrit-server-url}/cord-tester'
445 branches:
446 - '{branch}'
Kailashd1963d12018-12-17 15:11:01 -0800447
448- job-template:
449 name: 'build_{config-pod}_seba_release_{release}'
450 id: build_pod_release
451 description: |
Zack Williams5412fbf2020-08-03 16:03:29 -0700452 Manual Build on POD {config-pod}, using {Jenkinsfile}<br /><br />
hwchiue3815ab2019-10-17 15:06:25 -0700453 Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br />
Kailashd1963d12018-12-17 15:11:01 -0800454 Created by QA (Suchitra Vemuri - suchitra@opennetworking.org ) <br />
455 Copyright (c) 2018 Open Networking Foundation (ONF)
456
457 <<: *test-pipe-job-boiler-plate
458
459 parameters:
460 - string:
Zack Williams8ef79812019-10-29 11:09:18 -0700461 name: buildNode
462 default: '{build-node}'
463 description: 'Name of the Jenkins executor node to run the job on'
464
465 - string:
hwchiu14f97852019-10-08 10:51:11 -0700466 name: TestNodeName
Zack Williams8ef79812019-10-29 11:09:18 -0700467 default: '{build-node}'
468 description: 'DEPRECATED - use buildNode instead'
Kailashd1963d12018-12-17 15:11:01 -0800469
470 - string:
hwchiu14f97852019-10-08 10:51:11 -0700471 name: cordRepoUrl
472 default: '{gerrit-server-url}'
473 description: 'The URL of the CORD Project repository'
Kailashd1963d12018-12-17 15:11:01 -0800474
475 - string:
hwchiu14f97852019-10-08 10:51:11 -0700476 name: configBaseDir
477 default: 'pod-configs'
478 description: 'The directory inside the POD configs repository'
Kailashd1963d12018-12-17 15:11:01 -0800479
480 - string:
hwchiu14f97852019-10-08 10:51:11 -0700481 name: configDeploymentDir
482 default: 'deployment-configs'
483 description: 'The deployment configs folder'
Kailashd1963d12018-12-17 15:11:01 -0800484
485 - string:
hwchiu14f97852019-10-08 10:51:11 -0700486 name: configKubernetesDir
487 default: 'kubernetes-configs'
488 description: 'The kubernetes config folder'
Kailashd1963d12018-12-17 15:11:01 -0800489
490 - string:
hwchiu14f97852019-10-08 10:51:11 -0700491 name: configToscaDir
492 default: 'tosca-configs'
493 description: 'The tosca config folder'
Kailashd1963d12018-12-17 15:11:01 -0800494
495 - string:
hwchiu14f97852019-10-08 10:51:11 -0700496 name: configFileName
497 default: '{config-pod}'
498 description: 'The config file'
Kailashd1963d12018-12-17 15:11:01 -0800499
500 - string:
hwchiu14f97852019-10-08 10:51:11 -0700501 name: oltDebVersion
502 default: '{oltDebVersion}'
503 description: 'OLT Software version to install'
Kailashd1963d12018-12-17 15:11:01 -0800504
505 - string:
hwchiu14f97852019-10-08 10:51:11 -0700506 name: helmRepoUrl
507 default: 'https://charts.opencord.org'
508 description: 'URL where helm-charts are published'
Kailash5f1dd1b2019-07-10 10:57:32 -0700509
510 - string:
hwchiu14f97852019-10-08 10:51:11 -0700511 name: branch
512 default: '{branch}'
Kailashd1963d12018-12-17 15:11:01 -0800513
514 - string:
hwchiu14f97852019-10-08 10:51:11 -0700515 name: notificationEmail
516 default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org'
517 description: ''
Kailashd1963d12018-12-17 15:11:01 -0800518
519 - bool:
520 name: configurePod
521 default: true
522 description: "Configure POD via TOSCA post build"
523
524 - bool:
hwchiu14f97852019-10-08 10:51:11 -0700525 name: reinstallOlt
Suchitra Vemuridf2632f2020-07-15 17:12:09 -0700526 default: '{reinstall-olt}'
hwchiu14f97852019-10-08 10:51:11 -0700527 description: "Re-install olt software bringing up CORD"
Kailashd1963d12018-12-17 15:11:01 -0800528
529 - bool:
530 name: installBBSim
531 default: false
532 description: "Install the BBSim container"
533
534 - string:
535 name: onuNumber
536 default: '16'
537 description: "Onus per PonPort"
538
539 concurrent: true
540
541 pipeline-scm:
542 script-path: '{Jenkinsfile}'
543 scm:
544 - git:
hwchiu14f97852019-10-08 10:51:11 -0700545 url: '{gerrit-server-url}/cord-tester'
546 branches:
547 - '{branch}'
Kailashd1963d12018-12-17 15:11:01 -0800548
549 triggers:
hwchiu14f97852019-10-08 10:51:11 -0700550 - timed: |
Kailashd1963d12018-12-17 15:11:01 -0800551 TZ=America/Los_Angeles
552 H {time} * * *
553
554- job-template:
555 name: 'build_{config-pod}_seba_release_{release}_test'
556 id: build_pod_release_test
557 description: |
Zack Williams5412fbf2020-08-03 16:03:29 -0700558 Post Tests on {config-pod} triggered by build_{config-pod}_{branch}, using {Jenkinsfile} <br /><br />
hwchiue3815ab2019-10-17 15:06:25 -0700559 Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br />
Kailashd1963d12018-12-17 15:11:01 -0800560 Created by Kailash Khalasi - kailash@opennetworking.org <br />
561 Copyright (c) 2017 Open Networking Foundation (ONF)
562
563 <<: *test-pipe-job-boiler-plate
564
565 parameters:
566 - string:
Zack Williams8ef79812019-10-29 11:09:18 -0700567 name: buildNode
568 default: '{build-node}'
569 description: 'Name of the Jenkins executor node to run the job on'
570
571 - string:
hwchiu14f97852019-10-08 10:51:11 -0700572 name: TestNodeName
Zack Williams8ef79812019-10-29 11:09:18 -0700573 default: '{build-node}'
574 description: 'DEPRECATED - use buildNode instead'
Kailashd1963d12018-12-17 15:11:01 -0800575
576 - string:
hwchiu14f97852019-10-08 10:51:11 -0700577 name: cordRepoUrl
578 default: '{gerrit-server-url}'
579 description: 'The URL of the CORD Project repository'
Kailashd1963d12018-12-17 15:11:01 -0800580
581 - string:
hwchiu14f97852019-10-08 10:51:11 -0700582 name: configBaseDir
583 default: 'pod-configs'
584 description: 'The directory inside the POD configs repository'
Kailashd1963d12018-12-17 15:11:01 -0800585
586 - string:
hwchiu14f97852019-10-08 10:51:11 -0700587 name: configDeploymentDir
588 default: 'deployment-configs'
589 description: 'The deployment configs folder'
Kailashd1963d12018-12-17 15:11:01 -0800590
591 - string:
hwchiu14f97852019-10-08 10:51:11 -0700592 name: configKubernetesDir
593 default: 'kubernetes-configs'
594 description: 'The kubernetes config folder'
Kailashd1963d12018-12-17 15:11:01 -0800595
596 - string:
hwchiu14f97852019-10-08 10:51:11 -0700597 name: configToscaDir
598 default: 'tosca-configs'
599 description: 'The tosca config folder'
Kailashd1963d12018-12-17 15:11:01 -0800600
601 - string:
hwchiu14f97852019-10-08 10:51:11 -0700602 name: configFileName
603 default: '{config-pod}'
604 description: 'The config file'
Kailashd1963d12018-12-17 15:11:01 -0800605
606 - string:
hwchiu14f97852019-10-08 10:51:11 -0700607 name: branch
608 default: '{branch}'
Kailashd1963d12018-12-17 15:11:01 -0800609
610 - string:
hwchiu14f97852019-10-08 10:51:11 -0700611 name: notificationEmail
612 default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org'
613 description: ''
Kailashd1963d12018-12-17 15:11:01 -0800614
615 concurrent: true
616
617 pipeline-scm:
618 script-path: '{Jenkinsfile}'
619 scm:
620 - git:
hwchiu14f97852019-10-08 10:51:11 -0700621 url: '{gerrit-server-url}/cord-tester'
622 branches:
623 - '{branch}'
Kailashd1963d12018-12-17 15:11:01 -0800624
625 triggers:
626 - reverse:
627 jobs: 'build_{config-pod}_seba_release_{release}'
628 result: 'success'
Kailash5b1a1612018-12-21 15:17:21 -0800629
630
631- job-template:
632 name: 'build_{config-pod}_seba_release_{release}_microcharts_test'
633 id: build_pod_release_test_microcharts
634 description: |
Zack Williams5412fbf2020-08-03 16:03:29 -0700635 Post Tests on {config-pod} triggered by build_{config-pod}_{branch}, using {Jenkinsfile}<br /><br />
hwchiue3815ab2019-10-17 15:06:25 -0700636 Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br />
Kailash5b1a1612018-12-21 15:17:21 -0800637 Created by Kailash Khalasi - kailash@opennetworking.org <br />
638 Copyright (c) 2017 Open Networking Foundation (ONF)
639
640 <<: *test-pipe-job-boiler-plate
641
642 parameters:
643 - string:
Zack Williams8ef79812019-10-29 11:09:18 -0700644 name: buildNode
645 default: '{build-node}'
646 description: 'Name of the Jenkins executor node to run the job on'
647
648 - string:
hwchiu14f97852019-10-08 10:51:11 -0700649 name: TestNodeName
Zack Williams8ef79812019-10-29 11:09:18 -0700650 default: '{build-node}'
651 description: 'DEPRECATED - use buildNode instead'
Kailash5b1a1612018-12-21 15:17:21 -0800652
653 - string:
hwchiu14f97852019-10-08 10:51:11 -0700654 name: cordRepoUrl
655 default: '{gerrit-server-url}'
656 description: 'The URL of the CORD Project repository'
Kailash5b1a1612018-12-21 15:17:21 -0800657
658 - string:
hwchiu14f97852019-10-08 10:51:11 -0700659 name: configBaseDir
660 default: 'pod-configs'
661 description: 'The directory inside the POD configs repository'
Kailash5b1a1612018-12-21 15:17:21 -0800662
663 - string:
hwchiu14f97852019-10-08 10:51:11 -0700664 name: configDeploymentDir
665 default: 'deployment-configs'
666 description: 'The deployment configs folder'
Kailash5b1a1612018-12-21 15:17:21 -0800667
668 - string:
hwchiu14f97852019-10-08 10:51:11 -0700669 name: configKubernetesDir
670 default: 'kubernetes-configs'
671 description: 'The kubernetes config folder'
Kailash5b1a1612018-12-21 15:17:21 -0800672
673 - string:
hwchiu14f97852019-10-08 10:51:11 -0700674 name: configToscaDir
675 default: 'tosca-configs'
676 description: 'The tosca config folder'
Kailash5b1a1612018-12-21 15:17:21 -0800677
678 - string:
hwchiu14f97852019-10-08 10:51:11 -0700679 name: configFileName
680 default: '{config-pod}'
681 description: 'The config file'
Kailash5b1a1612018-12-21 15:17:21 -0800682
683 - string:
hwchiu14f97852019-10-08 10:51:11 -0700684 name: branch
685 default: '{branch}'
Kailash5b1a1612018-12-21 15:17:21 -0800686
687 - string:
hwchiu14f97852019-10-08 10:51:11 -0700688 name: notificationEmail
689 default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org'
690 description: ''
Kailash5b1a1612018-12-21 15:17:21 -0800691
692 concurrent: true
693
694 pipeline-scm:
695 script-path: '{Jenkinsfile}'
696 scm:
697 - git:
hwchiu14f97852019-10-08 10:51:11 -0700698 url: '{gerrit-server-url}/cord-tester'
699 branches:
700 - '{branch}'
Kailash5b1a1612018-12-21 15:17:21 -0800701
702 triggers:
703 - reverse:
704 jobs: 'build_{config-pod}_seba_release_{release}_microcharts'
705 result: 'success'
Kailashc8c05d52019-01-15 20:01:11 -0800706
707
708- job-template:
Kailashd22f91f2019-02-14 08:52:52 -0800709 name: 'build_{config-pod}'
Kailashc8c05d52019-01-15 20:01:11 -0800710 id: build_mcord_pod_manual
711 description: |
Zack Williams5412fbf2020-08-03 16:03:29 -0700712 Manual Build on POD {config-pod}, using {Jenkinsfile} <br /><br />
Kailashc8c05d52019-01-15 20:01:11 -0800713 Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br />
714 Created by QA (Kailash Khalasi - kailash@opennetworking.org ) <br />
715 Copyright (c) 2019 Open Networking Foundation (ONF)
716
717 <<: *test-pipe-job-boiler-plate
718
719 parameters:
720 - string:
Zack Williams8ef79812019-10-29 11:09:18 -0700721 name: buildNode
722 default: '{build-node}'
723 description: 'Name of the Jenkins executor node to run the job on'
724
725 - string:
hwchiu14f97852019-10-08 10:51:11 -0700726 name: TestNodeName
Zack Williams8ef79812019-10-29 11:09:18 -0700727 default: '{build-node}'
728 description: 'DEPRECATED - use buildNode instead'
Kailashc8c05d52019-01-15 20:01:11 -0800729
730 - string:
hwchiu14f97852019-10-08 10:51:11 -0700731 name: cordRepoUrl
732 default: '{gerrit-server-url}'
733 description: 'The URL of the CORD Project repository'
Kailashc8c05d52019-01-15 20:01:11 -0800734
735 - string:
hwchiu14f97852019-10-08 10:51:11 -0700736 name: configBaseDir
737 default: 'pod-configs'
738 description: 'The directory inside the POD configs repository'
Kailashc8c05d52019-01-15 20:01:11 -0800739
740 - string:
hwchiu14f97852019-10-08 10:51:11 -0700741 name: configDeploymentDir
742 default: 'deployment-configs'
743 description: 'The deployment configs folder'
Kailashc8c05d52019-01-15 20:01:11 -0800744
745 - string:
hwchiu14f97852019-10-08 10:51:11 -0700746 name: configKubernetesDir
747 default: 'kubernetes-configs'
748 description: 'The kubernetes config folder'
Kailashc8c05d52019-01-15 20:01:11 -0800749
750 - string:
hwchiu14f97852019-10-08 10:51:11 -0700751 name: configToscaDir
752 default: 'tosca-configs'
753 description: 'The tosca config folder'
Kailashc8c05d52019-01-15 20:01:11 -0800754
755 - string:
hwchiu14f97852019-10-08 10:51:11 -0700756 name: configFileName
757 default: '{config-pod}'
758 description: 'The config file'
Kailashc8c05d52019-01-15 20:01:11 -0800759
760 - string:
hwchiu14f97852019-10-08 10:51:11 -0700761 name: branch
762 default: '{branch}'
Kailashc8c05d52019-01-15 20:01:11 -0800763
764 - string:
hwchiu14f97852019-10-08 10:51:11 -0700765 name: profile
766 default: '{profile}'
767 description: 'Profile in which this job installs'
Kailashc8c05d52019-01-15 20:01:11 -0800768
769 - string:
hwchiu14f97852019-10-08 10:51:11 -0700770 name: notificationEmail
771 default: 'luca@opennetworking.org, teo@opennetworking.org, weiyu@opennetworking.org'
772 description: ''
Kailashc8c05d52019-01-15 20:01:11 -0800773
774 - bool:
775 name: configurePod
Matteo Scandoloa9b416e2019-01-24 15:21:07 -0800776 default: true
Kailashc8c05d52019-01-15 20:01:11 -0800777 description: "Configure POD via TOSCA post build"
778
Matteo Scandoloa6791892019-01-25 15:46:03 -0800779 - bool:
780 name: installEpcControlPlane
781 default: true
782 description: "Install the EPC control plane"
783
Kailashc8c05d52019-01-15 20:01:11 -0800784 concurrent: true
785
786 pipeline-scm:
787 script-path: '{Jenkinsfile}'
788 scm:
789 - git:
hwchiu14f97852019-10-08 10:51:11 -0700790 url: '{gerrit-server-url}/cord-tester'
791 branches:
792 - '{branch}'