From 510fb0f9c957bb8b131ea3cf5e524ecde51ce0dc Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Tue, 4 May 2021 14:17:42 +0200 Subject: [PATCH] prow.sh: support Kubernetes 1.21 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. --- prow.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/prow.sh b/prow.sh index 74fe53381..fe23cf516 100755 --- a/prow.sh +++ b/prow.sh @@ -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