From f3630b4ffbabbf2ee475697e29d0e703a6dc8b6a Mon Sep 17 00:00:00 2001 From: Chandan Kumar Date: Thu, 28 Mar 2024 09:48:02 +0530 Subject: [PATCH] Pin setup-envtest at working commit to fix functional tests https://github.com/kubernetes-sigs/controller-runtime/pull/2693 broke the functional tests running downstream with following issue[1] In order to unblock the CI, we are pinning sigs.k8s.io/controller-runtime/tools/setup-envtest at previous working commit[2] Links: [1]. https://github.com/kubernetes-sigs/controller-runtime/issues/2720 [2]. https://github.com/kubernetes-sigs/controller-runtime/commit/c7e1dc9b5302d649d5531e19168dd7ea0013736d Signed-off-by: Chandan Kumar --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1dbe4b4..9c07f84 100644 --- a/Makefile +++ b/Makefile @@ -225,7 +225,7 @@ $(CONTROLLER_GEN): $(LOCALBIN) .PHONY: envtest envtest: $(ENVTEST) ## Download envtest-setup locally if necessary. $(ENVTEST): $(LOCALBIN) - test -s $(LOCALBIN)/setup-envtest || GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest + test -s $(LOCALBIN)/setup-envtest || GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-runtime/tools/setup-envtest@c7e1dc9b .PHONY: ginkgo ginkgo: $(GINKGO) ## Download ginkgo locally if necessary.