From fe37a24782ef524eaac32ccca1ca5d4d42322287 Mon Sep 17 00:00:00 2001 From: dtfranz Date: Tue, 19 Mar 2024 13:16:38 -0400 Subject: [PATCH] Source Makefile kapp version from go.mod Grabs the kapp version from what we are currently using in go.mod in order to ensure parity. Signed-off-by: dtfranz --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index eef9048b7..1567545c6 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ export IMAGE_REPO ?= quay.io/operator-framework/operator-controller export IMAGE_TAG ?= devel export CERT_MGR_VERSION ?= v1.9.0 export CATALOGD_VERSION ?= $(shell go list -mod=mod -m -f "{{.Version}}" github.com/operator-framework/catalogd) -export KAPP_VERSION ?= v0.50.0# TODO replace with above or below line to pull version from go.mod +export KAPP_VERSION ?= $(shell go list -mod=mod -m -f "{{.Version}}" github.com/vmware-tanzu/carvel-kapp-controller) export RUKPAK_VERSION=$(shell go list -mod=mod -m -f "{{.Version}}" github.com/operator-framework/rukpak) export WAIT_TIMEOUT ?= 60s IMG?=$(IMAGE_REPO):$(IMAGE_TAG)