Skip to content

Commit 510fb0f

Browse files
committed
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.
1 parent c63c61b commit 510fb0f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Diff for: prow.sh

+3
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ kind_version_default () {
136136
case "${CSI_PROW_KUBERNETES_VERSION}" in
137137
latest|master)
138138
echo main;;
139+
1.21*|release-1.21)
140+
# TODO: replace this special case once the next KinD release supports 1.21.
141+
echo main;;
139142
*)
140143
echo v0.10.0;;
141144
esac

0 commit comments

Comments
 (0)