2defcad57e41581422380bdbfd24d23a89b01b4c
[infra/cicd.git] / jjb / metal3 / job_keep_capm3_e2e_integration_tests_prow.yml
1 ---
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2024 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 # Description:
22 # ============
23 # This file contains job template definition for Cluster API Provider Metal3 (CAPM3) e2e integration tests.
24 # This job can be triggered manually or through a Github pull request. It creates a
25 # pipeline job. The pipeline scripts are maintained in Metal3 CI project infra repository.
26
27 - job-template:
28     id: keep_capm3_e2e_integration_tests_prow
29     name: 'keep-{job_prefix}-{image_os}-e2e-integration-test-{capm3_target_branch}'
30     description: "CAPM3 {capm3_version} e2e integration tests on {image_os}."
31     project-type: pipeline
32     defaults: global
33     disabled: False
34     concurrent: True
35     parameters:
36     # Parameters set by Prow
37     - string:
38         name: BUILD_ID
39         description: 'Used by Prow when triggering jobs'
40     - string:
41         name: PROW_JOB_ID
42         description: 'Used by Prow when triggering jobs'
43     - string:
44         name: REPO_OWNER
45         default: 'metal3-io'
46         description: 'Project github repo org name'
47     - string:
48         name: REPO_NAME
49         default: 'cluster-api-provider-metal3'
50         description: 'Project github repo name'
51     - string:
52         name: PULL_BASE_REF
53         default: '{capm3_release_branch}'
54         description: 'Ref name of the base branch'
55     - string:
56         name: PULL_PULL_SHA
57         default: '{capm3_release_branch}'
58         description: 'Pull request head SHA'
59     - string:
60         name: PULL_NUMBER
61         description: 'Pull request number'
62     # End of Prow parameters
63     - string:
64         name: IMAGE_OS
65         default: '{image_os}'
66         description: 'Distribution to use for the target host as well as source and target cluster. Can be ubuntu or centos'
67     - string:
68         name: capm3_release_branch
69         default: '{capm3_release_branch}'
70         description: 'The target branch of CAPM3 to be used for this test'
71     - string:
72         name: bmo_release_branch
73         default: '{bmo_release_branch}'
74         description: 'The target branch of BMO to be used for this test'
75     - string:
76         name: CAPI_VERSION
77         default: '{capi_version}'
78         description: 'Cluster API version. E.g. v1beta1.'
79     - string:
80         name: CAPM3_VERSION
81         default: '{capm3_version}'
82         description: 'Cluster API provider Metal3 version. E.g. v1beta1.'
83     - string:
84         name: TARGET_NODE_MEMORY
85         default: 4096
86         description: 'RAM size of the target host.'
87     - string:
88         name: TESTS_FOR
89         default: "e2e_tests"
90         description: 'Tests using the e2e framework.'
91     - string:
92         name: GINKGO_FOCUS
93         default: "integration"
94         description: 'Select the e2e integration test'
95     - string:
96         name: KEEP_TEST_ENV
97         default: 'true'
98         description: 'Whether tester VM and test env should be deleted or not by the end of the test'
99     properties:
100     - build-discarder:
101         days-to-keep: 30
102         num-to-keep: 300
103         artifact-days-to-keep: -1
104         artifact-num-to-keep: -1
105
106     triggers: []
107
108     pipeline-scm:
109       scm:
110       - git:
111           url: "{ci_github_repo}"
112           credentials-id: "{ci_github_jenkins_credentials_id}"
113           branches:
114             - '{branch|main}'
115           name: 'origin'
116           refspec: '+refs/heads/*:refs/remotes/origin/*'
117           wipe-workspace: True
118           honor-refspec: True
119           shallow-clone: False
120       script-path: "jenkins/jobs/prow_integration_tests.pipeline"
121       lightweight-checkout: False