-
Notifications
You must be signed in to change notification settings - Fork 43
[OCPERT-394] Add 4.23 test job registry and enable in dashboard #1084
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| { | ||
| "nightly": [ | ||
| { | ||
| "prowJob": "periodic-ci-openshift-openshift-tests-private-release-4.23-automated-release-aws-ipi-f999" | ||
| }, | ||
| { | ||
| "prowJob": "periodic-ci-openshift-openshift-tests-private-release-4.23-automated-release-azure-ipi-fips-f999" | ||
| }, | ||
| { | ||
| "prowJob": "periodic-ci-openshift-openshift-tests-private-release-4.23-automated-release-gcp-ipi-f999" | ||
| }, | ||
| { | ||
| "prowJob": "periodic-ci-openshift-openshift-tests-private-release-4.23-automated-release-aws-ipi-disruptive-f999" | ||
| }, | ||
| { | ||
| "prowJob": "periodic-ci-openshift-openshift-tests-private-release-4.23-automated-release-nightly-4.23-upgrade-from-stable-4.22-gcp-ipi-f999", | ||
| "upgrade": true | ||
| }, | ||
| { | ||
| "prowJob": "periodic-ci-openshift-openshift-tests-private-release-4.23-automated-release-nightly-4.23-upgrade-from-stable-4.23-aws-ipi-f999", | ||
| "upgrade": true | ||
| } | ||
| ], | ||
| "stable": [ | ||
| { | ||
| "prowJob": "periodic-ci-openshift-openshift-tests-private-release-4.23-automated-release-stable-4.23-upgrade-from-stable-4.22-aws-ipi-f999", | ||
| "upgrade": true | ||
| }, | ||
| { | ||
| "prowJob": "periodic-ci-openshift-openshift-tests-private-release-4.23-automated-release-stable-4.23-upgrade-from-stable-4.23-azure-ipi-fips-f999", | ||
| "upgrade": true | ||
| }, | ||
| { | ||
| "prowJob": "periodic-ci-openshift-openshift-tests-private-release-4.23-automated-release-stable-4.23-upgrade-from-stable-4.23-gcp-ipi-f999", | ||
| "upgrade": true | ||
| } | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -120,7 +120,7 @@ def load_test_results(release='4.12'): | |
| with cola: | ||
| release = st.selectbox( | ||
| 'Choose minor release', | ||
| ("4.12", "4.13", "4.14", "4.15", "4.16", "4.17", "4.18", "4.19", "4.20", "4.21", "4.22", "5.0") | ||
| ("4.12", "4.13", "4.14", "4.15", "4.16", "4.17", "4.18", "4.19", "4.20", "4.21", "4.22", "4.23", "5.0") | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PR title mentions 4.22, but this adds 4.23 to the dashboard. Consistent with the job registry file, this line adds support for release "4.23" to the dashboard selector, not "4.22" as stated in the PR title. The PR title should be corrected to match the actual version being added. 🤖 Prompt for AI Agents |
||
| ) | ||
| # clear cache manually if you want to get latest results | ||
| with colb: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Critical: PR title mentions 4.22, but this file adds 4.23 configuration.
The PR title states "Add 4.22 test job" but the filename is
ocp-4.23-test-jobs-amd64.jsonand all job definitions reference version 4.23. This discrepancy between the PR title and the actual changes could cause significant confusion during code review and release tracking.Please update the PR title to accurately reflect that this adds 4.23 configuration, not 4.22.
🤖 Prompt for AI Agents
🧩 Analysis chain
🏁 Script executed:
Repository: openshift/release-tests
Length of output: 314
🏁 Script executed:
Repository: openshift/release-tests
Length of output: 2090
🏁 Script executed:
Repository: openshift/release-tests
Length of output: 425
🏁 Script executed:
Repository: openshift/release-tests
Length of output: 1221
🏁 Script executed:
Repository: openshift/release-tests
Length of output: 4269
🏁 Script executed:
Repository: openshift/release-tests
Length of output: 867
Add 4.23.z to Jira notificator's supported versions list
While the job registry configuration for 4.23 is included, the Jira notificator hardcodes a list of supported versions at
oar/notificator/jira_notificator.py:741that currently includes versions 4.12.z through 4.22.z. The version 4.23.z must be added to this list:The other items from the coding guidelines (test report templates, Jenkins ci-profiles, Prow image-consistency-check, ConfigStore) appear to use dynamic version handling and do not require explicit updates for each new version.
🤖 Prompt for AI Agents
Source: Coding guidelines