fix: update multicluster-global-hub Prow builder to go1.25-linux for release-2.12 to release-2.17#79301
Conversation
…release-2.12 through release-2.17 All release branches (2.12-2.17) already use Go 1.25.x in go.mod but the Prow CI configs still reference go1.22/1.23/1.24-linux builders, causing build/test failures. Update all six release branch configs to use go1.25-linux, consistent with other stolostron projects on the same branches (e.g. multiclusterhub-operator, governance-policy-addon-controller). Signed-off-by: Valentina Birsan <vbirsan@redhat.com> Co-authored-by: Cursor <cursoragent@cursor.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 (6)
WalkthroughGo builder image tags are upgraded from various versions (1.22–1.24) to 1.25 across six release pipeline configurations (2.12–2.17) for the stolostron multicluster-global-hub CI operator. Only ChangesGo 1.25 Builder Image Upgrade Across Release Configs
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~5 minutes Suggested labels
Suggested reviewers
🚥 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]
A total of 30 jobs have been affected by this change. The above listing is non-exhaustive and limited to 25 jobs. A full list of affected jobs can be found here Interacting with pj-rehearseComment: Once you are satisfied with the results of the rehearsals, comment: |
|
@birsanv: 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. |
|
/pj-rehearse |
|
@birsanv: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
|
/assign @sahare |
|
/lgtm /approve |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: birsanv, bjoydeep, sahare 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 |
Summary
All
multicluster-global-hubrelease branches (2.12–2.17) already use Go 1.25.x ingo.mod, but the Prow CI configs still reference older builders (go1.22-linux,go1.23-linux,go1.24-linux).This PR updates all six release branch configs to use
go1.25-linux, consistent with other stolostron projects on the same branches (e.g.multiclusterhub-operator,governance-policy-addon-controller).Changes
go1.23-linuxgo1.25-linuxgo1.23-linuxgo1.25-linuxgo1.22-linuxgo1.25-linuxgo1.24-linux/go1.22-linuxgo1.25-linuxgo1.24-linux/go1.22-linuxgo1.25-linuxgo1.24-linux/go1.22-linuxgo1.25-linuxVerification
go1.25-linuxis already used by other stolostron projects onrelease-2.12(e.g.multiclusterhub-operator) and on older backplane branchesgo 1.25.xin theirgo.modMade with Cursor
Updates the CI/Prow builder configuration for the stolostron multicluster-global-hub repository across release branches 2.12 through 2.17 to use the
go1.25-linuxbuilder image.What's changing
This PR synchronizes the Go toolchain version used by Prow CI with the actual Go version requirements declared in the project. All six affected release branches (2.12, 2.13, 2.14, 2.15, 2.16, 2.17) have Go 1.25.x specified in their
go.modfiles, but their CI configurations were still referencing older builder images:go1.23-linuxtogo1.25-linuxgo1.22-linuxorgo1.24-linuxtogo1.25-linuxWhy this matters
The mismatch between the declared Go version and the CI builder image was causing build and test failures. By updating the Prow builder configuration to match the actual Go 1.25.x requirements, builds will now use the correct Go compiler version, resolving these failures.
Implementation details
Six CI configuration files in
ci-operator/config/stolostron/multicluster-global-hub/are modified to setbuild_root.image_stream_tag.tagtogo1.25-linux. Thego1.25-linuxbuilder is already in use by other stolostron projects on the same release branches, establishing this as the standard build environment for the group.