Skip to content

Commit

Permalink
prow.sh: support Kubernetes 1.21
Browse files Browse the repository at this point in the history
Jobs that specifically use Kubernetes 1.21 have to use the unrelease
KinD because the latest stable release, 0.10.0, is not compatible with
it.

This special case can be removed once the next KinD release is out.
  • Loading branch information
pohly committed May 4, 2021
1 parent c63c61b commit 510fb0f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions prow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ kind_version_default () {
case "${CSI_PROW_KUBERNETES_VERSION}" in
latest|master)
echo main;;
1.21*|release-1.21)
# TODO: replace this special case once the next KinD release supports 1.21.
echo main;;
*)
echo v0.10.0;;
esac
Expand Down

0 comments on commit 510fb0f

Please sign in to comment.