diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2022-08-01 17:05:42 +0200 |
---|---|---|
committer | Andreas Geissler <andreas-geissler@telekom.de> | 2022-08-17 12:42:32 +0200 |
commit | f247bf67727e4277764463a0fa3d7654eca7da4b (patch) | |
tree | e0132c0ecd93b2763481abf688c3d5f964857742 /kubernetes/Makefile | |
parent | 904b8911706aa930c12dd0ac38f0f212378ae9e9 (diff) |
[COMMON] Update Makefiles to enable parallelization
All Makefiles are updated to support SKIP_LINT option,
have a defined order of compilation (common -> components)
to support the parallel compilation of charts using:
make all -j8 (for 8 Jobs). Additionally use cm-push instead
of push to use the new K8S/Helm version
Issue-ID: OOM-3011
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
Change-Id: If9903c9d5bc646b5ce54075acc616e98c4b6706e
Diffstat (limited to 'kubernetes/Makefile')
-rw-r--r-- | kubernetes/Makefile | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/kubernetes/Makefile b/kubernetes/Makefile index 1b24a7962c..b92d41fe3f 100644 --- a/kubernetes/Makefile +++ b/kubernetes/Makefile @@ -24,7 +24,7 @@ HELM_BIN := helm HELM_VER := $(shell $(HELM_BIN) version --template "{{.Version}}" 2>/dev/null) -# use this if you would like to push onap charts to repo with other name +# use this if you would like to cm-push onap charts to repo with other name # WARNING: Helm v3+ only # WARNING: Make sure to edit also Chart files HELM_REPO := local @@ -36,26 +36,30 @@ else endif SUBMODS := robot -EXCLUDES := config oneclick readiness test dist helm $(PARENT_CHART) dcae $(SUBMODS) -HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.)))) $(PARENT_CHART) +EXCLUDES := common config oneclick readiness test dist helm $(PARENT_CHART) dcae $(SUBMODS) +HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.)))) .PHONY: $(EXCLUDES) $(HELM_CHARTS) check-for-staging-images -all: print_helm_bin $(COMMON_CHARTS_DIR) $(SUBMODS) $(HELM_CHARTS) helm-repo-update plugins +all: print_helm_bin $(COMMON_CHARTS_DIR) $(SUBMODS) $(HELM_CHARTS) $(PARENT_CHART) helm-repo-update plugins -$(COMMON_CHARTS): +$(COMMON_CHARTS_DIR): @echo "\n[$@]" @make package-$@ -$(HELM_CHARTS): +$(HELM_CHARTS): $(COMMON_CHARTS_DIR) @echo "\n[$@]" @make package-$@ -$(SUBMODS): +$(SUBMODS): $(COMMON_CHARTS_DIR) @echo "\n[$@]" @make submod-$@ @make package-$@ +$(PARENT_CHART): $(HELM_CHARTS) + @echo "\n[$@]" + @make package-$@ + submod-%: @make $*/Chart.yaml @@ -76,7 +80,8 @@ lint-%: dep-% package-%: lint-% @mkdir -p $(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 + @if [ -f $*/Chart.yaml ]; then PACKAGE_NAME=$$($(HELM_BIN) package -d $(PACKAGE_DIR) $* | cut -d":" -f2) && $(HELM_BIN) cm-push -f $$PACKAGE_NAME $(HELM_REPO); fi + @sleep 3 clean: @rm -f */Chart.lock @@ -85,13 +90,14 @@ clean: # publish helm plugins via distrubtion directory plugins: + @mkdir -p $(PACKAGE_DIR) @cp -R helm $(PACKAGE_DIR)/ check-for-staging-images: $(ROOT_DIR)/../.ci/check-for-staging-images.sh -helm-repo-update: +helm-repo-update: $(PARENT_CHART) @$(HELM_BIN) repo update %: - @: + @:
\ No newline at end of file |