diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-06-15 15:18:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-06-15 15:18:44 +0000 |
commit | 38634d6ef44d9d4954e553445451992e33c1f2f5 (patch) | |
tree | 4d4b84004c60de5affa3b64edc0c363b1997fba0 /kubernetes/dcaegen2-services/common/Makefile | |
parent | 27e7cc0736316201c79c1f8f19d0ad454695b1a3 (diff) | |
parent | d375eecf60930ccae87770d09fca9f3ab3c86891 (diff) |
Merge "[DCAE] Push/pull DCAE sub-component charts from local repo"
Diffstat (limited to 'kubernetes/dcaegen2-services/common/Makefile')
-rw-r--r-- | kubernetes/dcaegen2-services/common/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/kubernetes/dcaegen2-services/common/Makefile b/kubernetes/dcaegen2-services/common/Makefile index bf267b7720..4a6491d8cc 100644 --- a/kubernetes/dcaegen2-services/common/Makefile +++ b/kubernetes/dcaegen2-services/common/Makefile @@ -1,4 +1,5 @@ # Copyright © 2020 Samsung Electronics +# Copyright (c) 2021 AT&T. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -17,6 +18,8 @@ OUTPUT_DIR := $(ROOT_DIR)/../../dist PACKAGE_DIR := $(OUTPUT_DIR)/packages SECRET_DIR := $(OUTPUT_DIR)/secrets +HELM_REPO := local + EXCLUDES := HELM_BIN := helm HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.)))) @@ -40,8 +43,8 @@ lint-%: dep-% package-%: lint-% @mkdir -p $(PACKAGE_DIR) - @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) package -d $(PACKAGE_DIR) $*; fi - @$(HELM_BIN) repo index $(PACKAGE_DIR) + @if [ -f $*/Chart.yaml ]; then PACKAGE_NAME=$$($(HELM_BIN) package -d $(PACKAGE_DIR) $* | cut -d":" -f2) && $(HELM_BIN) push -f $$PACKAGE_NAME $(HELM_REPO); fi + @sleep 3 clean: @rm -f */requirements.lock |