Skip to content

Commit f3630b4

Browse files
committed
Pin setup-envtest at working commit to fix functional tests
kubernetes-sigs/controller-runtime#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]. kubernetes-sigs/controller-runtime#2720 [2]. kubernetes-sigs/controller-runtime@c7e1dc9 Signed-off-by: Chandan Kumar <[email protected]>
1 parent 5124bc8 commit f3630b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ $(CONTROLLER_GEN): $(LOCALBIN)
225225
.PHONY: envtest
226226
envtest: $(ENVTEST) ## Download envtest-setup locally if necessary.
227227
$(ENVTEST): $(LOCALBIN)
228-
test -s $(LOCALBIN)/setup-envtest || GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest
228+
test -s $(LOCALBIN)/setup-envtest || GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-runtime/tools/setup-envtest@c7e1dc9b
229229

230230
.PHONY: ginkgo
231231
ginkgo: $(GINKGO) ## Download ginkgo locally if necessary.

0 commit comments

Comments
 (0)