From a0d7155885c8f72715e9bbcae139a3467c2beae1 Mon Sep 17 00:00:00 2001 From: Chandan Kumar Date: Fri, 22 Mar 2024 20:20:18 +0530 Subject: [PATCH] Pin setup-envtest at working commit to unblock content provider https://github.com/kubernetes-sigs/controller-runtime/pull/2693 broke the content provider while doing docker-build 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] [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 e408fc627..e9ebd171d 100644 --- a/Makefile +++ b/Makefile @@ -237,7 +237,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.