From 058638cc69d8195dfa5d5c182a976b875988df96 Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Thu, 16 Apr 2020 15:04:22 +0200 Subject: [PATCH] docker: kube-conformance: Enforce upstream tag Stop using environment TAG_VER when tagging kube-conformance images, as they should be tagged with the upstream (fixed) tag, currently 'v1.16' (instead of the validation release tag, e.g. '3.0.0'). JIRA: VAL-105 Change-Id: I1ea7e7395e7a796c7eb22fcdad41ba92c8d555ac Signed-off-by: Alexandru Avadanii --- docker/kube-conformance/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/kube-conformance/Makefile b/docker/kube-conformance/Makefile index ee7b40f..1c0f7f0 100644 --- a/docker/kube-conformance/Makefile +++ b/docker/kube-conformance/Makefile @@ -16,7 +16,7 @@ export WORK_DIR?=$(TAG_PRE) export KUBE_VERSION=1.16 -export TAG_VER?=v$(KUBE_VERSION) +export TAG_VER=v$(KUBE_VERSION) .PHONY: .build .build:: .submodules_patched -- 2.16.6