aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/oof/components/Makefile
diff options
context:
space:
mode:
authorJakub Latusek <j.latusek@samsung.com>2020-09-28 11:07:56 +0200
committerJakub Latusek <j.latusek@samsung.com>2020-10-01 09:11:07 +0200
commit5b7d2578d00e5116e3657433054c118f75b0386e (patch)
tree7462fad16c6b6f0563de49dbb68536f8d17b36d7 /kubernetes/oof/components/Makefile
parent089cd9d2843fd5da0f5b5ab8faf72126e1c704db (diff)
[OOF] Use helm-push plugin
Change-Id: I182d3c77a5be3cf220151a0984d44bfe4f25d039 Signed-off-by: Jakub Latusek <j.latusek@samsung.com> Issue-ID: OOM-2562
Diffstat (limited to 'kubernetes/oof/components/Makefile')
-rwxr-xr-xkubernetes/oof/components/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/kubernetes/oof/components/Makefile b/kubernetes/oof/components/Makefile
index 2fc0cbe4ab..02371366f6 100755
--- a/kubernetes/oof/components/Makefile
+++ b/kubernetes/oof/components/Makefile
@@ -19,6 +19,7 @@ SECRET_DIR := $(OUTPUT_DIR)/secrets
EXCLUDES :=
HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.))))
+HELM_VER := $(shell helm version --template "{{.Version}}")
.PHONY: $(EXCLUDES) $(HELM_CHARTS)
@@ -39,7 +40,11 @@ lint-%: dep-%
package-%: lint-%
@mkdir -p $(PACKAGE_DIR)
+ifeq "$(findstring v3,$(HELM_VER))" "v3"
+ @if [ -f $*/Chart.yaml ]; then PACKAGE_NAME=$$(helm package -d $(PACKAGE_DIR) $* | cut -d":" -f2) && helm push -f $$PACKAGE_NAME local; fi
+else
@if [ -f $*/Chart.yaml ]; then helm package -d $(PACKAGE_DIR) $*; fi
+endif
@helm repo index $(PACKAGE_DIR)
clean: