aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/Makefile
diff options
context:
space:
mode:
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>2021-02-15 16:16:23 +0100
committerKrzysztof Opasiak <k.opasiak@samsung.com>2021-02-18 19:11:16 +0100
commit00d473fad3f5fc7112c9116d13b4e3c95190f429 (patch)
tree2c42e4200b9b3cecb1e4e0ff03e727585f19d00f /kubernetes/Makefile
parent2a4b47f9f332df8980a69f169361038f60dceb63 (diff)
[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 <sylvain.desbureaux@orange.com> Change-Id: I2361feb2b28e55b8adfb5b8620e4fa49480674bd
Diffstat (limited to 'kubernetes/Makefile')
-rw-r--r--kubernetes/Makefile4
1 files changed, 3 insertions, 1 deletions
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