ci: drop support for k8s 1.29 and centralize config #14196
Merged
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.
Motivation
This drops support for Kubernetes 1.29, which will be end-of-life in 2 weeks (https://endoflife.date/kubernetes). This will allow us to take advantage of new features in 1.30, like
ValidatingAdmissionPolicies
(#14045). See #14142 (comment) for previous discussions.Also, I centralized the config for defining the tested Kubernetes versions so that we don't duplicate that in both
ci-build.yaml
andpre-build.sh
.Modifications
Copied the config changes from #14176 and bumped the
min
version inhack/k8s-versions.sh
.An alternative to
hack/k8s-version.sh
would be to move all the logic for installingk3d
/k3s
/kubectl
into theMakefile
and then defining versions there, which would arguably be cleaner, but that'd require a lot more changes.Verification
Rebuilt DevContainer and verified everything came up successfully:
Documentation
Docs changes will be handled in #14176