Add node_architecture: arm64 to MCO arm64-periodics configs#80461
Add node_architecture: arm64 to MCO arm64-periodics configs#80461ptalgulk01 wants to merge 1 commit into
Conversation
All arm64 periodic disruptive jobs for MCO (release-4.22, 4.23, 5.0) are failing because the src and MCO images are built on amd64 nodes while the test clusters expect arm64. The multiarch-tuning-operator blocks scheduling with "no supported architectures in common". Adding node_architecture: arm64 ensures ci-operator builds images on arm64 nodes and pulls arm64 base images. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository YAML (base), Central YAML (inherited) Review profile: CHILL Plan: Enterprise Run ID: 📒 Files selected for processing (3)
WalkthroughThis PR adds an explicit ChangesARM64 Node Architecture Configuration
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Suggested labels
🚥 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 |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ptalgulk01 The full list of commands accepted by this bot can be found here. The pull request process is described 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 ( |
|
/pj-rehearse periodic-ci-openshift-machine-config-operator-release-5.0-arm64-periodics-e2e-aws-mco-disruptive-1of2 |
|
@ptalgulk01: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
|
@ptalgulk01: job(s): periodic-ci-openshift-machine-config-operator-release-5.0-arm64-periodics-e2e-aws-mco-disruptive-1of2 either don't exist or were not found to be affected, and cannot be rehearsed |
|
/retest |
|
@ptalgulk01: The following test failed, say
Full PR test history. Your PR dashboard. 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. I understand the commands that are listed here. |
All arm64 periodic disruptive jobs for MCO (release-4.22, 4.23, 5.0) are failing because the src and MCO images are built on amd64 nodes while the test clusters expect arm64. The multiarch-tuning-operator blocks scheduling with "no supported architectures in common".
Adding node_architecture: arm64 ensures ci-operator builds images on arm64 nodes and pulls arm64 base images.
Summary by CodeRabbit
This PR addresses a critical architecture mismatch in the Machine Config Operator's (MCO) arm64 periodic disruptive testing jobs across OpenShift releases 4.22, 4.23, and 5.0.
Problem: The periodic ci-operator jobs were building container images on amd64 nodes and pulling amd64 base images, but the test clusters for these jobs were configured to run on arm64 hardware. This caused the multiarch-tuning-operator to block scheduling with a "no supported architectures in common" error, causing all three releases' arm64 periodic tests to fail.
Solution: Added
node_architecture: arm64configuration to the MCO arm64-periodics job definitions in three configuration files:openshift-machine-config-operator-release-4.22__arm64-periodics.yamlopenshift-machine-config-operator-release-4.23__arm64-periodics.yamlopenshift-machine-config-operator-release-5.0__arm64-periodics.yamlThis ensures ci-operator will build images on arm64 nodes and pull arm64 base images, aligning the build architecture with the test cluster requirements.