Enable scenario input for engine verify jobs
[infra/cicd.git] / jjb / cloud-infra / cloud-infra-verify-engine.yaml
1 ---
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2019 Nordix Foundation.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # SPDX-License-Identifier: Apache-2.0
19 # ============LICENSE_END=========================================================
20
21 #--------------------------------------------------------------------------------------
22 # The jobs declared in this JJB configuration file are used for verifying patches
23 # that are sent to the repositories below
24 #   - cloud-infra/engine
25 #
26 # These jobs verify changes that
27 #   - implement new features or fix bugs for the deployment framework, engine, itself
28 #   - implement new features or fix bugs to the playbooks and roles used for utilizing
29 #     open source components such as bifrost, kubespray, and kolla-ansible
30 #   - bump versions of open source components or the scenarios
31 #
32 # These jobs are set to run on slaves with label vpod-deploy-ubuntu1604.
33 # The slaves have
34 #   - Ubuntu1604 as the base distro
35 #   - nested virtualization
36 #   - internet access
37 #   - passwordless sudo
38 #   - 16 CPUs/32GB RAM/200 GB Disk
39 #   - docker, git vim curl wget zip unzip chrony apt-transport-https ca-certificates curl
40 #     gnupg-agent software-properties-common docker-ce docker-ce-cli containerd.io openjdk-8-jre
41 #
42 # The slaves should not have a cloud infra scenario deployed on them.
43 #--------------------------------------------------------------------------------------
44
45 - project:
46     name: 'cloud-infra-verify-engine'
47
48     project: 'infra/engine'
49
50     stream:
51       - 'master':
52           branch: '{stream}'
53           disabled: 'false'
54
55     os:
56       - ubuntu1804:
57           disabled: 'false'
58           distribution: 'ubuntu18'
59           ipa_dib_os_element: 'coreos'
60           dib_os_release: 'bionic'
61           dib_os_element: 'ubuntu-minimal'
62       - centos7:
63           disabled: 'true'
64           distribution: 'centos7'
65           ipa_dib_os_element: 'coreos'
66           dib_os_release: '7'
67           dib_os_element: 'centos-minimal'
68
69     type:
70       - virtual
71
72     phase:
73       - deploy
74       - functest
75
76     jobs:
77       - 'cloud-infra-verify-engine-{os}-{type}-{stream}'
78       - 'cloud-infra-verify-engine-{os}-{phase}-{type}-{stream}'
79
80 - job-template:
81     name: 'cloud-infra-verify-engine-{os}-{type}-{stream}'
82
83     project-type: multijob
84
85     disabled: '{obj:disabled}'
86
87     concurrent: true
88
89     parameters:
90       - project-parameters:
91           project: '{project}'
92           branch: '{branch}'
93       - nordix-gerrit-parameters
94       - label:
95           name: SLAVE_LABEL
96           default: 'vpod-deploy-city'
97           description: 'Slave label to schedule this job on. All slaves have Ubuntu1604 no matter what distro target nodes use'
98       - string:
99           name: DISTRIBUTION
100           default: '{distribution}'
101           description: 'Distribution to use for configuring target nodes (networking etc.)'
102       - string:
103           name: DEPLOY_TYPE
104           default: '{type}'
105           description: 'Type of the deployment'
106       - string:
107           name: USE_PREBUILT_DEPLOYMENT_IMAGE
108           default: 'true'
109           description: 'Use prebuilt deployment image while running as part of CI/CD'
110       - string:
111           name: IPA_DIB_OS_ELEMENT
112           default: '{ipa_dib_os_element}'
113           description: 'DIB OS Element to use for building the ramdisk image'
114       - string:
115           name: DIB_OS_RELEASE
116           default: '{dib_os_release}'
117           description: 'DIB OS Release to use for building the deployment image to provision target nodes with'
118       - string:
119           name: DIB_OS_ELEMENT
120           default: '{dib_os_element}'
121           description: 'DIB OS Element to use for building the deployment image to provision target nodes with'
122       - string:
123           name: TEST_SUITE
124           default: 'healthcheck'
125           description: 'Test suite to run'
126       - string:
127           name: CLEANUP
128           default: 'true'
129           description: 'Cleanup leftovers of the previous run'
130
131     properties:
132       - logrotate
133       - build-blocker:
134           use-build-blocker: true
135           blocking-jobs:
136             - 'cloud-infra-verify-engine-{os}-.*'
137             - 'cloud-infra-verify-scenario-{os}-.*'
138             - 'cloud-infra-periodic-engine-{os}-.*'
139             - 'cloud-infra-os-.*'
140             - 'cloud-infra-k8-.*'
141           block-level: 'NODE'
142       - throttle:
143           max-per-node: 1
144           max-total: 3
145           option: project
146
147     wrappers:
148       - build-timeout:
149           timeout: 120
150       - fix-workspace-permissions
151
152     scm:
153       - git-scm-gerrit:
154           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
155           branch: '{branch}'
156           refspec: $GERRIT_REFSPEC
157
158     triggers:
159       - nordix-gerrit-trigger-patchset-created:
160           project: 'infra\/engine'
161           branch: '{branch}'
162           files: '**'
163
164     builders:
165       - 'cloud-infra-determine-scenario-macro'
166       - multijob:
167           name: deploy
168           condition: SUCCESSFUL
169           projects:
170             - name: 'cloud-infra-verify-engine-{os}-deploy-{type}-{stream}'
171               current-parameters: true
172               predefined-parameters: |
173                 DISTRIBUTION=$DISTRIBUTION
174                 DEPLOY_TYPE=$DEPLOY_TYPE
175                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
176                 IPA_DIB_OS_ELEMENT=$IPA_DIB_OS_ELEMENT
177                 DIB_OS_RELEASE=$DIB_OS_RELEASE
178                 DIB_OS_ELEMENT=$DIB_OS_ELEMENT
179                 CLEANUP=$CLEANUP
180                 GERRIT_PROJECT=$GERRIT_PROJECT
181                 GERRIT_BRANCH=$GERRIT_BRANCH
182                 GERRIT_REFSPEC=$GERRIT_REFSPEC
183                 GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
184                 GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
185               node-parameters: true
186               kill-phase-on: FAILURE
187               abort-all-job: true
188       - multijob:
189           name: functest
190           condition: SUCCESSFUL
191           projects:
192             - name: 'cloud-infra-verify-engine-{os}-functest-{type}-{stream}'
193               current-parameters: true
194               predefined-parameters: |
195                 DISTRIBUTION=$DISTRIBUTION
196                 DEPLOY_TYPE=$DEPLOY_TYPE
197                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
198                 IPA_DIB_OS_ELEMENT=$IPA_DIB_OS_ELEMENT
199                 DIB_OS_RELEASE=$DIB_OS_RELEASE
200                 DIB_OS_ELEMENT=$DIB_OS_ELEMENT
201                 TEST_SUITE=$TEST_SUITE
202                 CLEANUP=$CLEANUP
203                 GERRIT_PROJECT=$GERRIT_PROJECT
204                 GERRIT_BRANCH=$GERRIT_BRANCH
205                 GERRIT_REFSPEC=$GERRIT_REFSPEC
206                 GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
207                 GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
208               node-parameters: true
209               kill-phase-on: FAILURE
210               abort-all-job: true
211
212 - job-template:
213     name: 'cloud-infra-verify-engine-{os}-{phase}-{type}-{stream}'
214
215     disabled: false
216
217     concurrent: true
218
219     properties:
220       - logrotate
221
222     parameters:
223       - string:
224           name: PROJECT
225           default: $GERRIT_PROJECT
226       - string:
227           name: DISTRIBUTION
228           default: 'ubuntu18'
229           description: 'Distribution to use for configuring target nodes (networking etc.). Overriden by upstream job.'
230       - string:
231           name: DEPLOY_TYPE
232           default: 'virtual'
233           description: 'Type of the deployment. Overriden by upstream job.'
234       - string:
235           name: USE_PREBUILT_DEPLOYMENT_IMAGE
236           default: 'false'
237           description: 'Use prebuilt deployment image while running as part of CI/CD'
238       - string:
239           name: IPA_DIB_OS_ELEMENT
240           default: 'fedora'
241           description: 'DIB OS Element to use for building the ramdisk image. Overriden by upstream job.'
242       - string:
243           name: DIB_OS_RELEASE
244           default: 'bionic'
245           description: 'DIB OS Release to use for building the deployment image to provision target nodes with. Overriden by upstream job.'
246       - string:
247           name: DIB_OS_ELEMENT
248           default: 'ubuntu-minimal'
249           description: 'DIB OS Element to use for building the deployment image to provision target nodes with. Overriden by upstream job.'
250       - string:
251           name: TEST_FW
252           default: '{phase}'
253           description: 'Test framework to use'
254       - string:
255           name: TEST_SUITE
256           default: 'healthcheck'
257           description: 'Test suite to run'
258       - string:
259           name: TEST_REPO_URL
260           default: 'https://gerrit.nordix.org/infra/test.git'
261           description: 'URL to Nordix Cloud Infra test repository'
262       - string:
263           name: CLEANUP
264           default: 'false'
265
266     wrappers:
267       - build-timeout:
268           timeout: 120
269       - fix-workspace-permissions
270
271     scm:
272       - git-scm-gerrit:
273           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
274           branch: '{branch}'
275           refspec: $GERRIT_REFSPEC
276
277     builders:
278       - 'cloud-infra-determine-scenario-macro'
279       - 'cloud-infra-{phase}-macro'
280
281 # vim: set ts=2 sw=2 expandtab: