From: Sylvain Desbureaux Date: Mon, 15 Feb 2021 15:16:23 +0000 (+0100) Subject: [GENERAL] Print helm binary used X-Git-Tag: 8.0.0~103^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F58%2F117858%2F3;hp=2a4b47f9f332df8980a69f169361038f60dceb63;p=oom.git [GENERAL] Print helm binary used In order to know which helm binary is used, print it at start of global Makefile Issue-ID: OOM-1 Signed-off-by: Sylvain Desbureaux Change-Id: I2361feb2b28e55b8adfb5b8620e4fa49480674bd --- diff --git a/kubernetes/Makefile b/kubernetes/Makefile index ef913e33a9..d994397269 100644 --- a/kubernetes/Makefile +++ b/kubernetes/Makefile @@ -45,7 +45,7 @@ HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.) .PHONY: $(EXCLUDES) $(HELM_CHARTS) check-for-staging-images -all: $(COMMON_CHARTS_DIR) $(SUBMODS) $(HELM_CHARTS) helm-repo-update plugins +all: print_helm_bin $(COMMON_CHARTS_DIR) $(SUBMODS) $(HELM_CHARTS) helm-repo-update plugins $(COMMON_CHARTS): @echo "\n[$@]" @@ -66,6 +66,8 @@ submod-%: %/requirements.yaml: $(error Submodule $* needs to be retrieved from gerrit. See https://wiki.onap.org/display/DW/OOM+-+Development+workflow+after+code+transfer+to+tech+teams ); fi +print_helm_bin: + $(info Using Helm binary ${HELM_BIN} which is helm version ${HELM_VER}) make-%: @if [ -f $*/Makefile ]; then make -C $*; fi