Add ARO classic (ARO-RP) prow jobs to sippy config#3500
Add ARO classic (ARO-RP) prow jobs to sippy config#3500abiduke612 wants to merge 1 commit intoopenshift:mainfrom
Conversation
|
Pipeline controller notification For optional jobs, comment This repository is configured in: automatic mode |
WalkthroughThis PR restructures ARO CI/CD job configurations by removing three Azure HCP production jobs from ChangesConfiguration Restructuring
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes 🚥 Pre-merge checks | ✅ 16 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (16 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Tip 💬 Introducing Slack Agent: The best way for teams to turn conversations into code.Slack Agent is built on CodeRabbit's deep understanding of your code, so your team can collaborate across the entire SDLC without losing context.
Built for teams:
One agent for your entire SDLC. Right inside Slack. 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 |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: abiduke612 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 |
|
Hi @abiduke612. 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. |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@config/openshift-customizations.yaml`:
- Around line 41-52: Presubmits pseudorelease's regex currently only matches
^pull-ci-Azure-ARO-HCP-main.* and therefore misses ARO Classic pull jobs; update
the Presubmits regexp list to include ^pull-ci-Azure-ARO-RP-master.* so
pull-ci-Azure-ARO-RP-master-images and other RP-master pull jobs are matched and
surface in Sippy alongside the added periodic jobs; locate the Presubmits entry
(symbol: Presubmits) and append the ^pull-ci-Azure-ARO-RP-master.* pattern to
its regex array.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository YAML (base), Central YAML (inherited)
Review profile: CHILL
Plan: Enterprise
Run ID: 2e69c475-c1cd-484d-a3b1-5aead626cf15
📒 Files selected for processing (1)
config/openshift-customizations.yaml
| aro-classic-integration: | ||
| jobs: | ||
| periodic-ci-Azure-ARO-RP-master-periodic-integration-e2e-parallel-csp: true | ||
| periodic-ci-Azure-ARO-RP-master-periodic-integration-e2e-parallel-miwi: true | ||
| aro-classic-stage: | ||
| jobs: | ||
| periodic-ci-Azure-ARO-RP-master-periodic-stage-e2e-parallel-csp: true | ||
| periodic-ci-Azure-ARO-RP-master-periodic-stage-e2e-parallel-miwi: true | ||
| aro-classic-production: | ||
| jobs: | ||
| periodic-ci-Azure-ARO-RP-master-periodic-prod-e2e-parallel-csp: true | ||
| periodic-ci-Azure-ARO-RP-master-periodic-prod-e2e-parallel-miwi: true |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "Current Presubmits config:"
sed -n '16,22p' config/openshift-customizations.yaml
echo
echo "ARO Classic pull jobs currently exposed by prow:"
curl -fsSL https://prow.ci.openshift.org/prowjobs.js \
| rg -o 'pull-ci-Azure-ARO-RP-master[^"]*' \
| sort -uRepository: openshift/sippy
Length of output: 1326
Add ARO-RP-master pull jobs to the Presubmits pattern.
The Presubmits pseudorelease (line 21) still only matches ^pull-ci-Azure-ARO-HCP-main.*. However, prow contains pull-ci-Azure-ARO-RP-master-images pull jobs for ARO Classic that are not currently covered. Add ^pull-ci-Azure-ARO-RP-master.* to the Presubmits regexp list to ensure Classic pull job results surface in Sippy alongside the periodic jobs added in lines 41–52.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@config/openshift-customizations.yaml` around lines 41 - 52, Presubmits
pseudorelease's regex currently only matches ^pull-ci-Azure-ARO-HCP-main.* and
therefore misses ARO Classic pull jobs; update the Presubmits regexp list to
include ^pull-ci-Azure-ARO-RP-master.* so pull-ci-Azure-ARO-RP-master-images and
other RP-master pull jobs are matched and surface in Sippy alongside the added
periodic jobs; locate the Presubmits entry (symbol: Presubmits) and append the
^pull-ci-Azure-ARO-RP-master.* pattern to its regex array.
| periodic-ci-Azure-ARO-HCP-main-periodic-prod-uksouth-e2e-parallel: true | ||
| periodic-ci-Azure-ARO-HCP-main-periodic-prod-e2e-parallel-ocp-nightly: true | ||
| branch-ci-Azure-ARO-HCP-main-e2e-prod-e2e-parallel: true | ||
| aro-classic-integration: |
With Classic now using prow jobs as well, we want that data available via Sippy.
Added the following jobs to config:
Summary by CodeRabbit