diff options
author | Jakub Latusek <j.latusek@samsung.com> | 2020-09-28 11:07:56 +0200 |
---|---|---|
committer | Jakub Latusek <j.latusek@samsung.com> | 2020-10-01 09:11:07 +0200 |
commit | 5b7d2578d00e5116e3657433054c118f75b0386e (patch) | |
tree | 7462fad16c6b6f0563de49dbb68536f8d17b36d7 /kubernetes/oof/components/oof-cmso/Makefile | |
parent | 089cd9d2843fd5da0f5b5ab8faf72126e1c704db (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/oof-cmso/Makefile')
-rw-r--r-- | kubernetes/oof/components/oof-cmso/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kubernetes/oof/components/oof-cmso/Makefile b/kubernetes/oof/components/oof-cmso/Makefile index 52df18adad..48cebe96e7 100644 --- a/kubernetes/oof/components/oof-cmso/Makefile +++ b/kubernetes/oof/components/oof-cmso/Makefile @@ -19,6 +19,7 @@ SECRET_DIR := $(OUTPUT_DIR)/secrets EXCLUDES := dist resources templates charts docker 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: |