From 3bfceb0dbd467eef832d7dfadebfe4cf150cd28d Mon Sep 17 00:00:00 2001 From: Marc Sluiter Date: Tue, 10 Jan 2023 19:00:04 +0100 Subject: [PATCH] Align NHC and console plugin tags affects upstream only Signed-off-by: Marc Sluiter --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 57a288b0..3c617b73 100644 --- a/Makefile +++ b/Makefile @@ -40,9 +40,6 @@ IMAGE_REGISTRY ?= quay.io/medik8s # Image base URL of the console plugin CONSOLE_PLUGIN_IMAGE_BASE ?= quay.io/medik8s/node-remediation-console -# Image tag of the console plugin for releases -# Needs to be updated manually after console plugin releases! -CONSOLE_PLUGIN_RELEASE_TAG ?= v0.4.0-rc1 # For the default version, use 'latest' image tags. # Otherwise version prefixed with 'v' @@ -51,7 +48,8 @@ IMAGE_TAG = latest CONSOLE_PLUGIN_TAG ?= latest else IMAGE_TAG = v$(VERSION) -CONSOLE_PLUGIN_TAG ?= $(CONSOLE_PLUGIN_RELEASE_TAG) +# always release the console with the same tag as NHC and the other way around! +CONSOLE_PLUGIN_TAG ?= v$(VERSION) endif export IMAGE_TAG