Skip to content

Commit 4458a39

Browse files
committed
Update kindest/node image to v1.33.1
The Makefile calculates the version of kindest/node image to use. However, it appears that kindest/node:v1.33.0 has issues with some systems (e.g. Fedora). Using kindest/node:v1.33.1 fixes this issue. Also note that kind never used kindest/node:v1.33.0 as a default image, kind v0.28.0/v0.29.0 use kindest/node:v1.33.1. Signed-off-by: Todd Short <tshort@redhat.com>
1 parent 00b965c commit 4458a39

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,12 @@ ENVTEST_VERSION := $(K8S_VERSION).x
4444
# The K8S_VERSION is set by getting the version of the k8s.io/client-go dependency from the go.mod
4545
# and sets major version to "1" and the patch version to "0". For example, a client-go version of v0.28.5
4646
# will map to a K8S_VERSION of 1.28.0
47+
ifeq ($(K8S_VERSION),1.33)
48+
# Do not use v1.33.0 as it has issues on some systems, use v1.33.1
49+
KIND_CLUSTER_IMAGE := kindest/node:v1.33.1
50+
else
4751
KIND_CLUSTER_IMAGE := kindest/node:v$(K8S_VERSION).0
52+
endif
4853

4954
# Define dependency versions (use go.mod if we also use Go code from dependency)
5055
export CERT_MGR_VERSION := v1.17.1

0 commit comments

Comments
 (0)