Set installer type for periodic-engine jobs
[infra/cicd.git] / jjb / cloud-infra / cloud-infra-periodic-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 cloud-infra
23 # engine from the tip of the master branch periodically to check the stability of it.
24 #
25 # These jobs are set to run on slaves with label vpod-deploy-ubuntu1604.
26 # The slaves have
27 #   - Ubuntu1604 as the base distro
28 #   - nested virtualization
29 #   - internet access
30 #   - passwordless sudo
31 #   - 16 CPUs/32GB RAM/200 GB Disk
32 #   - docker, git vim curl wget zip unzip chrony apt-transport-https ca-certificates curl
33 #     gnupg-agent software-properties-common docker-ce docker-ce-cli containerd.io openjdk-8-jre
34 #
35 # The slaves should not have a cloud infra scenario deployed on them.
36 #--------------------------------------------------------------------------------------
37
38 - project:
39     name: 'cloud-infra-periodic-engine'
40
41     project: 'infra/engine'
42
43     stream:
44       - 'master':
45           branch: '{stream}'
46           disabled: 'false'
47
48     os:
49       - ubuntu1804:
50           disabled: 'false'
51           distribution: 'ubuntu18'
52           ipa_dib_os_element: 'coreos'
53           dib_os_release: 'bionic'
54           dib_os_element: 'ubuntu-minimal'
55       - centos7:
56           disabled: 'true'
57           distribution: 'centos7'
58           ipa_dib_os_element: 'coreos'
59           dib_os_release: '7'
60           dib_os_element: 'centos-minimal'
61
62     type:
63       - virtual:
64           slave-label: 'vpod-deploy-city'
65           yardstick-dispatcher: 'file'
66       - baremetal:
67           slave-label: 'baremetal-deploy'
68           yardstick-dispatcher: 'influxdb'
69
70     phase:
71       - deploy:
72           build-timeout: 60
73       - functest:
74           build-timeout: 120
75       - yardstick:
76           build-timeout: 30
77
78     jobs:
79       - 'cloud-infra-periodic-engine-{os}-{type}-{stream}'
80       - 'cloud-infra-periodic-{os}-{phase}-{type}-{stream}'
81
82 - job-template:
83     name: 'cloud-infra-periodic-engine-{os}-{type}-{stream}'
84
85     project-type: multijob
86
87     disabled: '{obj:disabled}'
88
89     concurrent: true
90
91     parameters:
92       - project-parameters:
93           project: '{project}'
94           branch: '{branch}'
95       - nordix-gerrit-parameters
96       - label:
97           name: SLAVE_LABEL
98           default: '{slave-label}'
99           description: 'Slave label to schedule this job on. All slaves have Ubuntu1604 no matter what distro target nodes use'
100       - string:
101           name: DISTRIBUTION
102           default: '{distribution}'
103           description: 'Distribution to use for configuring target nodes (networking etc.)'
104       - string:
105           name: DEPLOY_TYPE
106           default: '{type}'
107           description: 'Type of the deployment'
108       - string:
109           name: USE_PREBUILT_DEPLOYMENT_IMAGE
110           default: 'true'
111           description: 'Use prebuilt deployment image while running as part of CI/CD'
112       - string:
113           name: IPA_DIB_OS_ELEMENT
114           default: '{ipa_dib_os_element}'
115           description: 'DIB OS Element to use for building the ramdisk image'
116       - string:
117           name: DIB_OS_RELEASE
118           default: '{dib_os_release}'
119           description: 'DIB OS Release to use for building the deployment image to provision target nodes with'
120       - string:
121           name: DIB_OS_ELEMENT
122           default: '{dib_os_element}'
123           description: 'DIB OS Element to use for building the deployment image to provision target nodes with'
124       - string:
125           name: INSTALLER_TYPE
126           default: 'kubespray'
127           description: 'Installer to use for deploying the scenario'
128       - string:
129           name: DEPLOY_SCENARIO
130           default: 'k8-calico-nofeature'
131           description: 'Scenario to deploy and test'
132       - string:
133           name: TEST_SUITE
134           default: 'smoke'
135           description: 'Test suite to run'
136       - string:
137           name: YARDSTICK_DISPATCHER
138           default: '{yardstick-dispatcher}'
139           description: 'Dispatcher to use for Yardstick reporting'
140       - string:
141           name: CLEANUP
142           default: 'true'
143           description: 'Cleanup leftovers of the previous run'
144
145     properties:
146       - logrotate
147       - build-blocker:
148           use-build-blocker: true
149           blocking-jobs:
150             - 'cloud-infra-verify-engine-{os}-.*'
151             - 'cloud-infra-verify-scenario-{os}-.*'
152             - 'cloud-infra-periodic-engine-{os}-.*'
153             - 'cloud-infra-os-.*'
154             - 'cloud-infra-k8-.*'
155           block-level: 'NODE'
156       - throttle:
157           max-per-node: 1
158           max-total: 3
159           option: project
160
161     wrappers:
162       - build-timeout:
163           timeout: 210
164       - fix-workspace-permissions
165
166     scm:
167       - git-scm:
168           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
169           branch: '{branch}'
170           refspec: ''
171
172     triggers:
173       - timed: 'H H/3 * * *'
174
175     builders:
176       - multijob:
177           name: deploy
178           condition: SUCCESSFUL
179           projects:
180             - name: 'cloud-infra-periodic-{os}-deploy-{type}-{stream}'
181               current-parameters: true
182               predefined-parameters: |
183                 DISTRIBUTION=$DISTRIBUTION
184                 DEPLOY_TYPE=$DEPLOY_TYPE
185                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
186                 IPA_DIB_OS_ELEMENT=$IPA_DIB_OS_ELEMENT
187                 DIB_OS_RELEASE=$DIB_OS_RELEASE
188                 DIB_OS_ELEMENT=$DIB_OS_ELEMENT
189                 INSTALLER_TYPE=$INSTALLER_TYPE
190                 DEPLOY_SCENARIO=$DEPLOY_SCENARIO
191                 CLEANUP=$CLEANUP
192               git-revision: true
193               node-parameters: true
194               kill-phase-on: FAILURE
195               abort-all-job: true
196       - multijob:
197           name: functest
198           condition: ALWAYS
199           projects:
200             - name: 'cloud-infra-periodic-{os}-functest-{type}-{stream}'
201               current-parameters: true
202               predefined-parameters: |
203                 DISTRIBUTION=$DISTRIBUTION
204                 DEPLOY_TYPE=$DEPLOY_TYPE
205                 INSTALLER_TYPE=$INSTALLER_TYPE
206                 DEPLOY_SCENARIO=$DEPLOY_SCENARIO
207                 TEST_SUITE=$TEST_SUITE
208                 YARDSTICK_DISPATCHER=$YARDSTICK_DISPATCHER
209                 CLEANUP=$CLEANUP
210               node-parameters: true
211               kill-phase-on: NEVER
212               abort-all-job: false
213       - multijob:
214           name: yardstick
215           condition: ALWAYS
216           projects:
217             - name: 'cloud-infra-periodic-{os}-yardstick-{type}-{stream}'
218               current-parameters: true
219               predefined-parameters: |
220                 DISTRIBUTION=$DISTRIBUTION
221                 DEPLOY_TYPE=$DEPLOY_TYPE
222                 INSTALLER_TYPE=$INSTALLER_TYPE
223                 DEPLOY_SCENARIO=$DEPLOY_SCENARIO
224                 TEST_SUITE=$TEST_SUITE
225                 YARDSTICK_DISPATCHER=$YARDSTICK_DISPATCHER
226                 CLEANUP=$CLEANUP
227               node-parameters: true
228               kill-phase-on: NEVER
229               abort-all-job: false
230
231 - job-template:
232     name: 'cloud-infra-periodic-{os}-{phase}-{type}-{stream}'
233
234     disabled: false
235
236     concurrent: true
237
238     properties:
239       - logrotate
240
241     parameters:
242       - string:
243           name: PROJECT
244           default: $GERRIT_PROJECT
245       - string:
246           name: DISTRIBUTION
247           default: 'ubuntu18'
248           description: 'Distribution to use for configuring target nodes (networking etc.). Overriden by upstream job.'
249       - string:
250           name: DEPLOY_TYPE
251           default: 'virtual'
252           description: 'Type of the deployment. Overriden by upstream job.'
253       - string:
254           name: USE_PREBUILT_DEPLOYMENT_IMAGE
255           default: 'false'
256           description: 'Use prebuilt deployment image while running as part of CI/CD'
257       - string:
258           name: IPA_DIB_OS_ELEMENT
259           default: 'fedora'
260           description: 'DIB OS Element to use for building the ramdisk image. Overriden by upstream job.'
261       - string:
262           name: DIB_OS_RELEASE
263           default: 'bionic'
264           description: 'DIB OS Release to use for building the deployment image to provision target nodes with. Overriden by upstream job.'
265       - string:
266           name: DIB_OS_ELEMENT
267           default: 'ubuntu-minimal'
268           description: 'DIB OS Element to use for building the deployment image to provision target nodes with. Overriden by upstream job.'
269       - string:
270           name: ENGINE_ANSIBLE_PARAMS
271           default: ' -v '
272           description: 'Extra paramters that can be added when run the play books.'
273       - string:
274           name: INSTALLER_TYPE
275           default: 'kubespray'
276           description: 'Installer to use for deploying the scenario'
277       - string:
278           name: DEPLOY_SCENARIO
279           default: 'k8-calico-nofeature'
280           description: 'Scenario to deploy and test'
281       - string:
282           name: TEST_FW
283           default: '{phase}'
284           description: 'Test framework to use'
285       - string:
286           name: TEST_SUITE
287           default: 'smoke'
288           description: 'Test suite to run'
289       - string:
290           name: TEST_REPO_URL
291           default: 'https://gerrit.nordix.org/infra/test.git'
292           description: 'URL to Nordix Cloud Infra test repository'
293       - string:
294           name: YARDSTICK_DISPATCHER
295           default: 'file'
296           description: 'Dispatcher to use for Yardstick reporting'
297       - string:
298           name: CLEANUP
299           default: 'false'
300
301     wrappers:
302       - build-timeout:
303           timeout: '{build-timeout}'
304       - fix-workspace-permissions
305
306     scm:
307       - git-scm:
308           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
309           branch: '{branch}'
310           refspec: ''
311
312     builders:
313       - 'cloud-infra-{phase}-macro'
314
315 # vim: set ts=2 sw=2 expandtab: