ci: revert e2e-k3d-kuttl Go pin to stable on REL_5_8#4490
Merged
ValClarkson merged 1 commit intoMay 14, 2026
Conversation
The setup-go pin to 1.25.x in the e2e-k3d-kuttl job, combined with GOTOOLCHAIN=local in CI, prevented Go from auto-upgrading to 1.26 when go run-ing kuttl@latest. Recent kuttl releases require Go >= 1.26 (testDeps.ModulePath, etc.), causing both v1.30 and v1.34 e2e jobs to fail when downloading and building the kubectl-kuttl binary. Switch the job back to go-version: stable so the runner installs the current toolchain, matching what we already do on main (PR CrunchyData#4488). The operator binary itself is built inside Docker against the project's go directive (1.25.0), so this only affects the host toolchain used to fetch and run kuttl from source. Co-authored-by: Cursor <cursoragent@cursor.com>
andrewlecuyer
approved these changes
May 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
e2e-k3d-kuttljob onREL_5_8is pinned togo-version: '1.25.x'with a TODO aboutkuttlnot yet supporting Go 1.26. Combined withGOTOOLCHAIN=local, this prevents Go from auto-upgrading when buildingkuttl@latest(v0.26.0), which requires Go >= 1.26 (testDeps.ModulePath).This is the cause of the persistent
e2e-k3d-kuttl (v1.30)ande2e-k3d-kuttl (v1.34)failures on every recent PR targetingREL_5_8.Mirrors PR #4488 (which fixed the same issue on
main) by switching the job back togo-version: stable.