TRT-2623: Turn off aggregation for 4.22 at GA#80134
Conversation
|
@arnavmeduri: This pull request references TRT-2626 which is a valid jira issue. Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target the "5.0.0" version, but no target version was set. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
WalkthroughThis PR updates OCP 4.22 release job configurations across three files by converting aggregated job definitions to non-aggregated per-cloud entries, reducing maxRetries from 2 to 1, and adding/disabling specific jobs in the private release pipeline. ChangesOCP 4.22 Job Configuration Refactoring
Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes Suggested labels
Suggested reviewers
🚥 Pre-merge checks | ✅ 15✅ Passed checks (15 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
@arnavmeduri: This pull request references TRT-2623 which is a valid jira issue. Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the epic to target the "5.0.0" version, but no target version was set. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
Hi @arnavmeduri. Thanks for your PR. I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: arnavmeduri The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
[REHEARSALNOTIFIER] Note: If this PR includes changes to step registry files ( Interacting with pj-rehearseComment: Once you are satisfied with the results of the rehearsals, comment: |
Update 4.22 nightlies and CI payload to turn off aggregation, and replace with 1 retry.
Summary by CodeRabbit
This PR disables job aggregation for OpenShift Container Platform 4.22's General Availability release and reduces retry logic across the CI infrastructure.
What's being changed:
The PR updates three release configuration files for OCP 4.22:
release-ocp-4.22.json(nightly/private releases)release-ocp-4.22-ci.json(CI stream)Key modifications:
Aggregation removal: Several aggregated job definitions (prefixed with
aggregated-*) are converted to standard per-job entries. This includes AWS OVN upgrades, Azure OVN upgrades, GCP OVN upgrades, and HyperShift conformance jobs.Retry reduction: All converted jobs have their
maxRetriesvalue reduced from 2 to 1, simplifying the retry strategy for 4.22 GA testing.Analysis job cleanup: The
aggregatedProwJob.analysisJobCountblocks are removed from the replaced job definitions, as they are no longer needed without aggregation.New job additions: Several new conformance and upgrade jobs are added with
maxRetries: 1(e.g.,hypershift-aks-conformance-4.22,hypershift-ovn-conformance-4.22).Minor field changes: The
optionalfield is removed fromrosa-classic-sts-conformancewhile preserving itsmaxRetries: 1setting.Impact:
This affects the CI pipeline for OCP 4.22 GA release testing, simplifying the aggregated testing infrastructure and reducing the number of retries per job from 2 to 1, likely to accelerate the testing feedback loop for the GA release.