From 5966993a78e433482df2c6cfbad1b874515491c7 Mon Sep 17 00:00:00 2001 From: Paul Nicolas Date: Wed, 28 Feb 2024 16:32:43 +0100 Subject: [PATCH] fix(operator): fix controller gen version with go 1.22 --- components/operator/Earthfile | 2 +- components/operator/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/operator/Earthfile b/components/operator/Earthfile index 035e86129a..a8160eb6e7 100644 --- a/components/operator/Earthfile +++ b/components/operator/Earthfile @@ -34,7 +34,7 @@ build-image: controller-gen: FROM core+builder-image - DO --pass-args core+GO_INSTALL --package=sigs.k8s.io/controller-tools/cmd/controller-gen@v0.13.0 + DO --pass-args core+GO_INSTALL --package=sigs.k8s.io/controller-tools/cmd/controller-gen@v0.14.0 manifests: FROM --pass-args +controller-gen diff --git a/components/operator/Makefile b/components/operator/Makefile index d14ade19fc..48c64e21a8 100644 --- a/components/operator/Makefile +++ b/components/operator/Makefile @@ -158,7 +158,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest ## Tool Versions KUSTOMIZE_VERSION ?= v5.2.1 -CONTROLLER_TOOLS_VERSION ?= v0.13.0 +CONTROLLER_TOOLS_VERSION ?= v0.14.0 .PHONY: kustomize kustomize: $(KUSTOMIZE) ## Download kustomize locally if necessary. If wrong version is installed, it will be removed before downloading.