| COMMON_CHARTS_DIR := common |
| ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) |
| OUTPUT_DIR := $(ROOT_DIR)/dist |
| PACKAGE_DIR := $(OUTPUT_DIR)/packages |
| SECRET_DIR := $(OUTPUT_DIR)/secrets |
| EXCLUDES := $(COMMON_CHARTS_DIR) config oneclick readiness test dist helm $(PARENT_CHART) dcae |
| HELM_CHARTS := $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) $(PARENT_CHART) |
| .PHONY: $(EXCLUDES) $(HELM_CHARTS) |
| all: $(COMMON_CHARTS_DIR) $(HELM_CHARTS) |
| @if [ -f $*/Makefile ]; then make -C $*; fi |
| @if [ -f $*/requirements.yaml ]; then helm dep up $*; fi |
| @if [ -f $*/Chart.yaml ]; then helm lint $*; fi |
| @if [ -f $*/Chart.yaml ]; then helm package -d $(PACKAGE_DIR) $*; fi |
| @rm -f */requirements.lock |
| @rm -f *tgz */charts/*tgz |