Skip to content

Commit 9af3142

Browse files
committed
kubernetes-sigs/controller-runtime#3349 has updated golang to 1.25 in controller-runtime. Signed-off-by: Claude AI Assistant <[email protected]>
1 parent 530dcac commit 9af3142

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,8 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest
199199
KUSTOMIZE_VERSION ?= v3.8.7
200200
CONTROLLER_TOOLS_VERSION ?= v0.18.0
201201

202+
SETUP_ENVTEST_VERSION ?= release-0.22
203+
202204
KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh"
203205
.PHONY: kustomize
204206
kustomize: $(KUSTOMIZE) ## Download kustomize locally if necessary. If wrong version is installed, it will be removed before downloading.
@@ -218,7 +220,7 @@ $(CONTROLLER_GEN): $(LOCALBIN)
218220
.PHONY: envtest
219221
envtest: $(ENVTEST) ## Download envtest-setup locally if necessary.
220222
$(ENVTEST): $(LOCALBIN)
221-
test -s $(LOCALBIN)/setup-envtest || GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest
223+
test -s $(LOCALBIN)/setup-envtest || GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-runtime/tools/setup-envtest@$(SETUP_ENVTEST_VERSION)
222224

223225
.PHONY: ginkgo
224226
ginkgo: $(GINKGO) ## Download ginkgo locally if necessary.

0 commit comments

Comments
 (0)