VNFM with ETSI FEAT03 changes
[releng.git] / jjb / airship / cntt.yaml
1 ---
2 - cntt-jobs: &cntt-jobs
3     name: 'cntt-jobs'
4     current-parameters: true
5
6 - cntt-params: &cntt-params
7     name: 'cntt-params'
8     repo: 'opnfv'
9     port:
10     tag:
11       - latest:
12           branch: master
13           slave: intel-pod10
14           functest_tag: hunter
15
16 - parameter:
17     name: cntt-slave
18     parameters:
19       - label:
20           name: slave
21           default: '{slave}'
22
23 - parameter:
24     name: cntt-build_tag
25     parameters:
26       - random-string:
27           name: build_tag
28
29 - parameter:
30     name: cntt-DEBUG
31     parameters:
32       - string:
33           name: DEBUG
34           default: 'true'
35
36 - parameter:
37     name: cntt-EXTERNAL_NETWORK
38     parameters:
39       - string:
40           name: EXTERNAL_NETWORK
41           default: public
42
43 - cntt-containers: &cntt-containers
44     name: 'cntt-containers'
45     repo: '{repo}'
46     port: '{port}'
47     container: '{container}'
48     functest_tag: '{functest_tag}'
49
50 - cntt-run-containers: &cntt-run-containers
51     name: 'cntt-run-containers'
52     <<: *cntt-containers
53     test: '{test}'
54
55 - builder:
56     name: cntt-pull-containers
57     builders:
58       - shell: |
59           set +x
60           if [ "{repo}" = "_" ]; then
61             image={container}:{functest_tag}
62           elif [ "{port}" = "None" ]; then
63             image={repo}/{container}:{functest_tag}
64           else
65             image={repo}:{port}/{container}:{functest_tag}
66           fi
67           sudo docker pull $image
68
69 - builder:
70     name: cntt-run-containers
71     builders:
72       - shell: |
73           set +x
74           [ ! -z "$WORKSPACE" ] && sudo rm -rf $WORKSPACE/* || true
75           if [ "{repo}" = "_" ]; then
76             image={container}:{functest_tag}
77           elif [ "{port}" = "None" ]; then
78             image={repo}/{container}:{functest_tag}
79           else
80             image={repo}:{port}/{container}:{functest_tag}
81           fi
82           sudo docker run --rm \
83             -e S3_ENDPOINT_URL=https://storage.googleapis.com \
84             -e S3_DST_URL=s3://artifacts.opnfv.org/cntt/$JOB_NAME-$BUILD_ID \
85             -e HTTP_DST_URL=http://artifacts.opnfv.org/cntt/$JOB_NAME-$BUILD_ID \
86             -e TEST_DB_URL=http://testresults.opnfv.org/test/api/v1/results \
87             -e TEST_DB_EXT_URL=http://testresults.opnfv.org/test/api/v1/results \
88             -e NODE_NAME=$slave \
89             -e INSTALLER_TYPE=cntt \
90             -e BUILD_TAG=$BUILD_TAG \
91             -v $WORKSPACE/../$JOB_NAME/results:/var/lib/xtesting/results \
92             -v /home/opnfv/functest/.boto:/root/.boto \
93             -e DEBUG=$DEBUG \
94             -e EXTERNAL_NETWORK=$EXTERNAL_NETWORK \
95             -e DEPLOY_SCENARIO=os-nosdn-nofeature-ha \
96             -v /home/opnfv/functest/openstack.creds:/home/opnfv/functest/conf/env_file \
97             -v /home/opnfv/functest/images:/home/opnfv/functest/images \
98             -v /home/opnfv/functest/tempest_conf.yaml:/usr/lib/python2.7/\
99           site-packages/functest/opnfv_tests/openstack/tempest/custom_tests/tempest_conf.yaml \
100             $image run_tests -t {test} -r -p
101
102 - builder:
103     name: cntt-remove-images
104     builders:
105       - shell: |
106           set +x
107           if [ "{repo}" = "_" ]; then
108             image={container}:{functest_tag}
109           elif [ "{port}" = "None" ]; then
110             image={repo}/{container}:{functest_tag}
111           else
112             image={repo}:{port}/{container}:{functest_tag}
113           fi
114           sudo docker rmi $image || true
115
116 - builder:
117     name: cntt-deploy
118     builders:
119       - shell: |
120           set +x
121           export TERM_OPTS=" "
122           sudo -H -E -u opnfv bash -c 'tools/deploy.sh $slave deploy_site'
123
124 - scm:
125     name: cntt-scm
126     scm:
127       - git:
128           url: https://gerrit.opnfv.org/gerrit/airship
129           refspec: '+refs/changes/*:refs/changes/*'
130           branches:
131             - '{ref}'
132
133 - parameter:
134     name: cntt-branch
135     parameters:
136       - string:
137           name: branch
138           default: '{branch}'
139
140 - job-template:
141     name: 'cntt-deploy-daily-{tag}'
142     parameters:
143       - cntt-slave:
144           slave: '{slave}'
145       - cntt-branch:
146           branch: '{branch}'
147     scm:
148       - cntt-scm:
149           ref: $branch
150     builders:
151       - cntt-deploy
152
153 - job-template:
154     name: 'cntt-deploy-gate-{tag}'
155     parameters:
156       - cntt-slave:
157           slave: '{slave}'
158     scm:
159       - cntt-scm:
160           ref: $GERRIT_REFSPEC
161     builders:
162       - cntt-deploy
163
164 - project:
165     name: 'cntt-deploy'
166     <<: *cntt-params
167     jobs:
168       - 'cntt-deploy-daily-{tag}'
169       - 'cntt-deploy-gate-{tag}'
170
171 - job-template:
172     name: 'cntt-{repo}-{container}-{tag}-pull'
173     parameters:
174       - cntt-slave:
175           slave: '{slave}'
176     builders:
177       - cntt-pull-containers:
178           <<: *cntt-containers
179
180 - project:
181     name: 'cntt-opnfv-functest-healthcheck-pull'
182     <<: *cntt-params
183     container: 'functest-healthcheck'
184     jobs:
185       - 'cntt-{repo}-{container}-{tag}-pull'
186
187 - project:
188     name: 'cntt-opnfv-functest-smoke-pull'
189     <<: *cntt-params
190     container: 'functest-smoke'
191     jobs:
192       - 'cntt-{repo}-{container}-{tag}-pull'
193
194 - project:
195     name: 'cntt-opnfv-functest-smoke-cntt-pull'
196     <<: *cntt-params
197     container: 'functest-smoke-cntt'
198     jobs:
199       - 'cntt-{repo}-{container}-{tag}-pull'
200
201 - project:
202     name: 'cntt-opnfv-functest-benchmarking-pull'
203     <<: *cntt-params
204     container: 'functest-benchmarking'
205     jobs:
206       - 'cntt-{repo}-{container}-{tag}-pull'
207
208 - project:
209     name: 'cntt-opnfv-functest-vnf-pull'
210     <<: *cntt-params
211     container: 'functest-vnf'
212     jobs:
213       - 'cntt-{repo}-{container}-{tag}-pull'
214
215 - job-template:
216     name: 'cntt-{repo}-{container}-{tag}-rmi'
217     parameters:
218       - cntt-slave:
219           slave: '{slave}'
220     builders:
221       - cntt-remove-images:
222           <<: *cntt-containers
223
224 - project:
225     name: 'cntt-opnfv-functest-healthcheck-rmi'
226     <<: *cntt-params
227     container: 'functest-healthcheck'
228     jobs:
229       - 'cntt-{repo}-{container}-{tag}-rmi'
230
231 - project:
232     name: 'cntt-opnfv-functest-smoke-rmi'
233     <<: *cntt-params
234     container: 'functest-smoke'
235     jobs:
236       - 'cntt-{repo}-{container}-{tag}-rmi'
237
238 - project:
239     name: 'cntt-opnfv-functest-smoke-cntt-rmi'
240     <<: *cntt-params
241     container: 'functest-smoke-cntt'
242     jobs:
243       - 'cntt-{repo}-{container}-{tag}-rmi'
244
245 - project:
246     name: 'cntt-opnfv-functest-benchmarking-rmi'
247     <<: *cntt-params
248     container: 'functest-benchmarking'
249     jobs:
250       - 'cntt-{repo}-{container}-{tag}-rmi'
251
252 - project:
253     name: 'cntt-opnfv-functest-vnf-rmi'
254     <<: *cntt-params
255     container: 'functest-vnf'
256     jobs:
257       - 'cntt-{repo}-{container}-{tag}-rmi'
258
259 - job-template:
260     name: 'cntt-{repo}-{container}-{tag}-{test}-run'
261     parameters:
262       - cntt-slave:
263           slave: '{slave}'
264       - cntt-build_tag:
265           build_tag: ''
266       - cntt-DEBUG:
267           DEBUG: 'true'
268       - cntt-EXTERNAL_NETWORK:
269           EXTERNAL_NETWORK: public
270     builders:
271       - cntt-run-containers:
272           <<: *cntt-run-containers
273
274 - project:
275     name: 'cntt-opnfv-functest-healthcheck'
276     <<: *cntt-params
277     container: 'functest-healthcheck'
278     test:
279       - connection_check
280       - tenantnetwork1
281       - tenantnetwork2
282       - vmready1
283       - vmready2
284       - singlevm1
285       - singlevm2
286       - vping_ssh
287       - vping_userdata
288       - cinder_test
289       - odl
290       - tempest_smoke
291     jobs:
292       - 'cntt-{repo}-{container}-{tag}-{test}-run'
293
294 - project:
295     name: 'cntt-opnfv-functest-smoke'
296     <<: *cntt-params
297     container: 'functest-smoke'
298     test:
299       - neutron-tempest-plugin-api
300       - tempest_cinder
301       - tempest_keystone
302       - rally_sanity
303       - refstack_defcore
304       - tempest_full
305       - tempest_scenario
306       - tempest_slow
307       - patrole
308       - neutron_trunk
309       - networking-bgpvpn
310       - networking-sfc
311       - barbican
312     jobs:
313       - 'cntt-{repo}-{container}-{tag}-{test}-run'
314
315 - project:
316     name: 'cntt-opnfv-functest-smoke-cntt'
317     <<: *cntt-params
318     container: 'functest-smoke-cntt'
319     test:
320       - neutron-tempest-plugin-api
321       - tempest_cinder
322       - tempest_keystone
323       - rally_sanity
324       - tempest_full
325       - tempest_scenario
326       - tempest_slow
327     jobs:
328       - 'cntt-{repo}-{container}-{tag}-{test}-run'
329
330 - project:
331     name: 'cntt-opnfv-functest-benchmarking'
332     <<: *cntt-params
333     container: 'functest-benchmarking'
334     test:
335       - rally_full
336       - rally_jobs
337       - vmtp
338       - shaker
339     jobs:
340       - 'cntt-{repo}-{container}-{tag}-{test}-run'
341
342 - project:
343     name: 'cntt-opnfv-functest-vnf'
344     <<: *cntt-params
345     container: 'functest-vnf'
346     test:
347       - cloudify
348       - cloudify_ims
349       - heat_ims
350       - vyos_vrouter
351       - juju_epc
352     jobs:
353       - 'cntt-{repo}-{container}-{tag}-{test}-run'
354
355 - job-template:
356     name: 'cntt-{tag}-daily'
357     project-type: multijob
358     triggers:
359       - timed: '@daily'
360     parameters:
361       - cntt-slave:
362           slave: '{slave}'
363       - cntt-build_tag:
364           build_tag: ''
365       - cntt-branch:
366           branch: 'master'
367       - cntt-DEBUG:
368           DEBUG: 'true'
369       - cntt-EXTERNAL_NETWORK:
370           EXTERNAL_NETWORK: public
371     properties:
372       - build-blocker:
373           use-build-blocker: true
374           blocking-level: 'NODE'
375           blocking-jobs:
376             - '^cntt-{tag}-(daily|gate)$'
377     builders:
378       - multijob:
379           name: deploy
380           projects:
381             - name: 'cntt-deploy-daily-{tag}'
382               <<: *cntt-jobs
383       - multijob:
384           name: remove former images
385           projects:
386             - name: 'cntt-opnfv-functest-healthcheck-{tag}-rmi'
387               <<: *cntt-jobs
388             - name: 'cntt-opnfv-functest-smoke-{tag}-rmi'
389               <<: *cntt-jobs
390             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-rmi'
391               <<: *cntt-jobs
392             - name: 'cntt-opnfv-functest-benchmarking-{tag}-rmi'
393               <<: *cntt-jobs
394             - name: 'cntt-opnfv-functest-vnf-{tag}-rmi'
395               <<: *cntt-jobs
396       - multijob:
397           name: pull containers
398           projects:
399             - name: 'cntt-opnfv-functest-healthcheck-{tag}-pull'
400               <<: *cntt-jobs
401             - name: 'cntt-opnfv-functest-smoke-{tag}-pull'
402               <<: *cntt-jobs
403             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-pull'
404               <<: *cntt-jobs
405             - name: 'cntt-opnfv-functest-benchmarking-{tag}-pull'
406               <<: *cntt-jobs
407             - name: 'cntt-opnfv-functest-vnf-{tag}-pull'
408               <<: *cntt-jobs
409       - multijob:
410           name: opnfv/functest-healthcheck:{functest_tag}
411           condition: ALWAYS
412           projects:
413             - name: 'cntt-opnfv-functest-healthcheck-{tag}-connection_check-run'
414               <<: *cntt-jobs
415             - name: 'cntt-opnfv-functest-healthcheck-{tag}-tenantnetwork1-run'
416               <<: *cntt-jobs
417             - name: 'cntt-opnfv-functest-healthcheck-{tag}-tenantnetwork2-run'
418               <<: *cntt-jobs
419             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vmready1-run'
420               <<: *cntt-jobs
421             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vmready2-run'
422               <<: *cntt-jobs
423             - name: 'cntt-opnfv-functest-healthcheck-{tag}-singlevm1-run'
424               <<: *cntt-jobs
425             - name: 'cntt-opnfv-functest-healthcheck-{tag}-singlevm2-run'
426               <<: *cntt-jobs
427             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vping_ssh-run'
428               <<: *cntt-jobs
429             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vping_userdata-run'
430               <<: *cntt-jobs
431             - name: 'cntt-opnfv-functest-healthcheck-{tag}-cinder_test-run'
432               <<: *cntt-jobs
433             - name: 'cntt-opnfv-functest-healthcheck-{tag}-odl-run'
434               <<: *cntt-jobs
435             - name: 'cntt-opnfv-functest-healthcheck-{tag}-tempest_smoke-run'
436               <<: *cntt-jobs
437       - multijob:
438           name: opnfv/functest-smoke:{functest_tag}
439           condition: ALWAYS
440           projects:
441             - name: 'cntt-opnfv-functest-smoke-{tag}-neutron-tempest-plugin-api-run'
442               <<: *cntt-jobs
443             - name: 'cntt-opnfv-functest-smoke-{tag}-tempest_cinder-run'
444               <<: *cntt-jobs
445             - name: 'cntt-opnfv-functest-smoke-{tag}-tempest_keystone-run'
446               <<: *cntt-jobs
447             - name: 'cntt-opnfv-functest-smoke-{tag}-rally_sanity-run'
448               <<: *cntt-jobs
449             - name: 'cntt-opnfv-functest-smoke-{tag}-refstack_defcore-run'
450               <<: *cntt-jobs
451             - name: 'cntt-opnfv-functest-smoke-{tag}-tempest_full-run'
452               <<: *cntt-jobs
453             - name: 'cntt-opnfv-functest-smoke-{tag}-tempest_scenario-run'
454               <<: *cntt-jobs
455             - name: 'cntt-opnfv-functest-smoke-{tag}-tempest_slow-run'
456               <<: *cntt-jobs
457             - name: 'cntt-opnfv-functest-smoke-{tag}-patrole-run'
458               <<: *cntt-jobs
459             - name: 'cntt-opnfv-functest-smoke-{tag}-neutron_trunk-run'
460               <<: *cntt-jobs
461             - name: 'cntt-opnfv-functest-smoke-{tag}-networking-bgpvpn-run'
462               <<: *cntt-jobs
463             - name: 'cntt-opnfv-functest-smoke-{tag}-networking-sfc-run'
464               <<: *cntt-jobs
465             - name: 'cntt-opnfv-functest-smoke-{tag}-barbican-run'
466               <<: *cntt-jobs
467       - multijob:
468           name: opnfv/functest-smoke-cntt:{tag}
469           condition: ALWAYS
470           projects:
471             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-neutron-tempest-plugin-api-run'
472               <<: *cntt-jobs
473             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-tempest_cinder-run'
474               <<: *cntt-jobs
475             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-tempest_keystone-run'
476               <<: *cntt-jobs
477             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-rally_sanity-run'
478               <<: *cntt-jobs
479             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-tempest_full-run'
480               <<: *cntt-jobs
481             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-tempest_scenario-run'
482               <<: *cntt-jobs
483             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-tempest_slow-run'
484               <<: *cntt-jobs
485       - multijob:
486           name: opnfv/functest-benchmarking:{functest_tag}
487           condition: ALWAYS
488           projects:
489             - name: 'cntt-opnfv-functest-benchmarking-{tag}-rally_full-run'
490               <<: *cntt-jobs
491             - name: 'cntt-opnfv-functest-benchmarking-{tag}-rally_jobs-run'
492               <<: *cntt-jobs
493             - name: 'cntt-opnfv-functest-benchmarking-{tag}-vmtp-run'
494               <<: *cntt-jobs
495             - name: 'cntt-opnfv-functest-benchmarking-{tag}-shaker-run'
496               <<: *cntt-jobs
497       - multijob:
498           name: opnfv/functest-vnf:{functest_tag}
499           condition: ALWAYS
500           execution-type: SEQUENTIALLY
501           projects:
502             - name: 'cntt-opnfv-functest-vnf-{tag}-cloudify-run'
503               <<: *cntt-jobs
504             - name: 'cntt-opnfv-functest-vnf-{tag}-cloudify_ims-run'
505               <<: *cntt-jobs
506             - name: 'cntt-opnfv-functest-vnf-{tag}-heat_ims-run'
507               <<: *cntt-jobs
508             - name: 'cntt-opnfv-functest-vnf-{tag}-vyos_vrouter-run'
509               <<: *cntt-jobs
510             - name: 'cntt-opnfv-functest-vnf-{tag}-juju_epc-run'
511               <<: *cntt-jobs
512
513 - trigger:
514     name: cntt-patchset-created
515     triggers:
516       - gerrit:
517           server-name: 'gerrit.opnfv.org'
518           trigger-on:
519             - patchset-created-event
520             - comment-added-contains-event:
521                 comment-contains-value: 'recheck'
522             - comment-added-contains-event:
523                 comment-contains-value: 'reverify'
524           projects:
525             - project-compare-type: 'ANT'
526               project-pattern: 'airship'
527               branches:
528                 - branch-compare-type: 'ANT'
529                   branch-pattern: '**/{branch}'
530           skip-vote:
531             successful: false
532             failed: false
533             unstable: false
534             notbuilt: false
535
536 - job-template:
537     name: 'cntt-{tag}-gate'
538     project-type: multijob
539     disabled: true
540     triggers:
541       - cntt-patchset-created:
542           branch: '{branch}'
543     parameters:
544       - cntt-slave:
545           slave: '{slave}'
546       - cntt-build_tag:
547           build_tag: ''
548       - cntt-DEBUG:
549           DEBUG: 'true'
550       - cntt-EXTERNAL_NETWORK:
551           EXTERNAL_NETWORK: public
552     properties:
553       - build-blocker:
554           use-build-blocker: true
555           blocking-level: 'NODE'
556           blocking-jobs:
557             - '^cntt-{tag}-(daily|gate)$'
558     builders:
559       - multijob:
560           name: deploy
561           projects:
562             - name: 'cntt-deploy-gate-{tag}'
563               <<: *cntt-jobs
564       - multijob:
565           name: remove former images
566           projects:
567             - name: 'cntt-opnfv-functest-healthcheck-{tag}-rmi'
568               <<: *cntt-jobs
569             - name: 'cntt-opnfv-functest-smoke-{tag}-rmi'
570               <<: *cntt-jobs
571             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-rmi'
572               <<: *cntt-jobs
573             - name: 'cntt-opnfv-functest-benchmarking-{tag}-rmi'
574               <<: *cntt-jobs
575             - name: 'cntt-opnfv-functest-vnf-{tag}-rmi'
576               <<: *cntt-jobs
577       - multijob:
578           name: pull containers
579           projects:
580             - name: 'cntt-opnfv-functest-healthcheck-{tag}-pull'
581               <<: *cntt-jobs
582             - name: 'cntt-opnfv-functest-smoke-{tag}-pull'
583               <<: *cntt-jobs
584             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-pull'
585               <<: *cntt-jobs
586             - name: 'cntt-opnfv-functest-benchmarking-{tag}-pull'
587               <<: *cntt-jobs
588             - name: 'cntt-opnfv-functest-vnf-{tag}-pull'
589               <<: *cntt-jobs
590       - multijob:
591           name: opnfv/functest-healthcheck:{functest_tag}
592           projects:
593             - name: 'cntt-opnfv-functest-healthcheck-{tag}-connection_check-run'
594               <<: *cntt-jobs
595             - name: 'cntt-opnfv-functest-healthcheck-{tag}-tenantnetwork1-run'
596               <<: *cntt-jobs
597             - name: 'cntt-opnfv-functest-healthcheck-{tag}-tenantnetwork2-run'
598               <<: *cntt-jobs
599             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vmready1-run'
600               <<: *cntt-jobs
601             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vmready2-run'
602               <<: *cntt-jobs
603             - name: 'cntt-opnfv-functest-healthcheck-{tag}-singlevm1-run'
604               <<: *cntt-jobs
605             - name: 'cntt-opnfv-functest-healthcheck-{tag}-singlevm2-run'
606               <<: *cntt-jobs
607             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vping_ssh-run'
608               <<: *cntt-jobs
609             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vping_userdata-run'
610               <<: *cntt-jobs
611             - name: 'cntt-opnfv-functest-healthcheck-{tag}-cinder_test-run'
612               <<: *cntt-jobs
613             - name: 'cntt-opnfv-functest-healthcheck-{tag}-odl-run'
614               <<: *cntt-jobs
615       - multijob:
616           name: opnfv/functest-smoke:{functest_tag}
617           projects:
618             - name: 'cntt-opnfv-functest-smoke-{tag}-tempest_scenario-run'
619               <<: *cntt-jobs
620             - name: 'cntt-opnfv-functest-smoke-{tag}-neutron_trunk-run'
621               <<: *cntt-jobs
622             - name: 'cntt-opnfv-functest-smoke-{tag}-networking-bgpvpn-run'
623               <<: *cntt-jobs
624             - name: 'cntt-opnfv-functest-smoke-{tag}-networking-sfc-run'
625               <<: *cntt-jobs
626             - name: 'cntt-opnfv-functest-smoke-{tag}-barbican-run'
627               <<: *cntt-jobs
628       - multijob:
629           name: opnfv/functest-benchmarking:{functest_tag}
630           projects:
631             - name: 'cntt-opnfv-functest-benchmarking-{tag}-vmtp-run'
632               <<: *cntt-jobs
633             - name: 'cntt-opnfv-functest-benchmarking-{tag}-shaker-run'
634               <<: *cntt-jobs
635       - multijob:
636           name: opnfv/functest-vnf:{functest_tag}
637           condition: ALWAYS
638           execution-type: SEQUENTIALLY
639           projects:
640             - name: 'cntt-opnfv-functest-vnf-{tag}-cloudify-run'
641               <<: *cntt-jobs
642             - name: 'cntt-opnfv-functest-vnf-{tag}-cloudify_ims-run'
643               <<: *cntt-jobs
644             - name: 'cntt-opnfv-functest-vnf-{tag}-heat_ims-run'
645               <<: *cntt-jobs
646             - name: 'cntt-opnfv-functest-vnf-{tag}-vyos_vrouter-run'
647               <<: *cntt-jobs
648             - name: 'cntt-opnfv-functest-vnf-{tag}-juju_epc-run'
649               <<: *cntt-jobs
650
651 - project:
652     name: 'cntt'
653     <<: *cntt-params
654     jobs:
655       - 'cntt-{tag}-daily'
656       - 'cntt-{tag}-gate'
657
658 - view:
659     name: cntt
660     view-type: list
661     columns:
662       - status
663       - weather
664       - job
665       - last-success
666       - last-failure
667       - last-duration
668     regex: ^cntt-[a-z]+-(daily|check|gate)$