fleetshift-ui repo: split up x86 and multiarch image builds to prioritize x86 builds and improve failure rate#79361
Conversation
…tize x86 builds and improve overall failure rate
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: mshort55 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 |
WalkthroughThe pull request refactors the fleetshift user interface CI pipeline by separating arm64 multi-architecture support from the main configuration file into a dedicated multiarch variant file. The main configuration is simplified by removing all arm64 references, while a new dedicated multiarch YAML provides the complete arm64 build setup. ChangesCI Configuration Multiarch Refactor
🎯 2 (Simple) | ⏱️ ~8 minutes 🚥 Pre-merge checks | ✅ 12✅ Passed checks (12 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 |
|
[REHEARSALNOTIFIER]
Prior to this PR being merged, you will need to either run and acknowledge or opt to skip these rehearsals. Interacting with pj-rehearseComment: Once you are satisfied with the results of the rehearsals, comment: |
|
/cc @alechenninger @Hyperkid123 |
|
/pj-rehearse |
|
@mshort55: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
|
@mshort55: all tests passed! 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. |
fleetshift-ui repo: split up x86 and multiarch image builds to prioritize x86 builds and improve overall failure rat
Summary
This PR restructures the CI image build pipeline for the fleetshift user-interface repository by separating x86 and multiarch (arm64) builds into independent configurations.
Changes
Main configuration (
fleetshift-fleetshift-user-interface-main.yaml): Removed arm64 support by deleting theadditional_architectures: [arm64]declaration from the image definition and removing arm64 capability constraints from three CI image-mirror pipeline steps (pr-image-mirror,pr-merge-image-mirror-latest, andpr-merge-image-mirror-sha). This configuration now handles x86 builds exclusively.New multiarch configuration (
fleetshift-fleetshift-user-interface-main__multiarch.yaml): Introduced a separate pipeline variant dedicated to arm64 builds. This new configuration defines the build root, image target with arm64 architecture, resource requests, and three corresponding ARM64-specific CI pipeline steps for image mirroring.Impact
By splitting the build pipelines, x86 builds are prioritized in the main pipeline while arm64 builds run independently, reducing contention and improving overall build failure rates. The fleetshift user-interface repository now benefits from separate, architecture-specific build workflows managed through ci-operator configuration.