From 8753bc044499bdc9b9cfe17a2b8270842740607d Mon Sep 17 00:00:00 2001 From: John Kyros Date: Fri, 2 Aug 2024 01:43:18 -0500 Subject: [PATCH] envtest doesn't like version 1.29.4 I guess The envtest 1.29.4 assets are problematic and panic the test, but the 1.29.3 work properly. I don't know the root cause yet, I just know that 1.29.4 doesn't work. Signed-off-by: John Kyros --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e52972994..da0e58b9a 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ BUNDLE_RUN_OPTS= --security-context-config restricted endif # ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary. -ENVTEST_K8S_VERSION = 1.29.4 +ENVTEST_K8S_VERSION = 1.29.3 # Setting SHELL to bash allows bash commands to be executed by recipes. # This is a requirement for 'setup-envtest.sh' in the test target.