generated from RedHatQE/python-template-repository
-
Notifications
You must be signed in to change notification settings - Fork 4
/
zstream-trigger-config.example.yaml
44 lines (37 loc) · 1.55 KB
/
zstream-trigger-config.example.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Mandatory
trigger_token: <openshift-ci trigger token>
processed_versions_file_path: <path to processed versions file>
# Mandatory - If triggering jobs for rosa versions
ocm_token: !ENV "${OCM_TOKEN}"
aws_region: <aws-region>
# Optional
slack_webhook_url: <slack webhook url to post job status>
slack_errors_webhook_url: <slack webhook url to post code errors>
run_interval: 24h # can be s/m/h
cron_schedule: "0 0 * * *" # cron schedule for the trigger
# Optional, Required if you also want to check if rosa channel-version is enabled for OCM or not
gitlab_project: <gitlab-username/projectname>
gitlab_url: <gitlab-instance-url>
gitlab_token: <gitlab-token>
# For providing ROSA version, it is mandatory to add ocm_env '___<stage/production>___' to version
versions:
"4.14-rc": # Will take latest 4.14 RC version
- <openshift-ci-test-name-1>
- <openshift-ci-test-name-2>
- <openshift-ci-test-name-3>
"4.13": # Will take latest 4.13 stable version
- <openshift-ci-test-name-1>
- <openshift-ci-test-name-2>
- <openshift-ci-test-name-3>
"4.12":
- <openshift-ci-test-name-1>
- <openshift-ci-test-name-2>
- <openshift-ci-test-name-3>
"4.16-rc___stage___": # Will take latest 4.16 ROSA version for RC (candidate) channel-group in OCM stage
- <openshift-ci-test-name-1>
- <openshift-ci-test-name-2>
- <openshift-ci-test-name-3>
"4.16___production___": # Will take latest 4.16 ROSA version for stable channel-group in OCM production
- <openshift-ci-test-name-1>
- <openshift-ci-test-name-2>
- <openshift-ci-test-name-3>