Fix periodic and keep upgrade clusterctl jjbs
[infra/cicd.git] / jjb / metal3 / job_capm3_main_e2e_clusterctl_upgrade_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) main e2e upgrade tests.
24 # This job can be triggered manually or periodically by the CI system. It creates a
25 # pipeline job. The pipeline scripts are maintained in Metal3 CI project infra repository.
26
27 - job-template:
28     id: capm3_main_e2e_clusterctl_upgrade_tests_prow
29     name: '{job_prefix}-daily-e2e-clusterctl-upgrade-test-{capm3_target_branch}'
30     description: "CAPM e2e clusterctl upgrade tests on ubuntu."
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: 'main'
54         description: 'Ref name of the base branch'
55     - string:
56         name: PULL_PULL_SHA
57         default: 'main'
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: 'main'
70         description: 'The target branch of CAPM3 to be used for this test'
71     - string:
72         name: bmo_release_branch
73         default: 'main'
74         description: 'The target branch of BMO to be used for this test'
75     - string:
76         name: TARGET_NODE_MEMORY
77         default: 4096
78         description: 'RAM size of the target host.'
79     - string:
80         name: TESTS_FOR
81         default: "e2e_tests"
82         description: 'Tests using the e2e framework.'
83     - string:
84         name: GINKGO_FOCUS
85         default: "clusterctl-upgrade"
86         description: 'Select the e2e upgrade test'
87
88     properties:
89     - build-discarder:
90         days-to-keep: 30
91         num-to-keep: 300
92         artifact-days-to-keep: -1
93         artifact-num-to-keep: -1
94
95     triggers:
96       - timed: "H 1 * * *"
97
98     pipeline-scm:
99       scm:
100       - git:
101           url: "{ci_github_repo}"
102           credentials-id: "{ci_github_jenkins_credentials_id}"
103           branches:
104             - '{branch|main}'
105           name: 'origin'
106           refspec: '+refs/heads/*:refs/remotes/origin/*'
107           wipe-workspace: True
108           honor-refspec: True
109           shallow-clone: False
110       script-path: "{e2e_feature_test_pipeline}"
111       lightweight-checkout: False