diff options
author | Mike Elliott <mike.elliott@amdocs.com> | 2018-02-16 10:48:59 -0500 |
---|---|---|
committer | Alexis de Talhouƫt <alexis.de_talhouet@bell.ca> | 2018-02-23 20:35:00 +0000 |
commit | ae51de89e201b39aee5ef5d414b28eb946f33209 (patch) | |
tree | 4d2fc28386ad1abbb39afa72a28506aa79c46ba0 /kubernetes/common/Makefile | |
parent | a70775c54d244fe769293ea3bba1d99881416e6e (diff) |
Add Makefile to OOM project
Executing 'make' provides:
- linting of all charts
- resolution of chart/subchart dependencies
- creation and deployment of Helm packages to a local Helm repo
Prerequisite:
Start up a local repo and register with Helm as 'local'.
Example:
> helm serve
> helm repo add local http://127.0.0.1:8879
Change-Id: Ie08e8fc2593ac7e67b01f93e266953b962adef5d
Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
Issue-ID: OOM-265
Diffstat (limited to 'kubernetes/common/Makefile')
-rw-r--r-- | kubernetes/common/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/kubernetes/common/Makefile b/kubernetes/common/Makefile new file mode 100644 index 0000000000..1900f31a44 --- /dev/null +++ b/kubernetes/common/Makefile @@ -0,0 +1,25 @@ +EXCLUDES := test +HELM_CHARTS := $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) + +.PHONY: $(EXCLUDES) $(HELM_CHARTS) + +all: $(HELM_CHARTS) + +$(HELM_CHARTS): + @echo "\n[$@]" + @make lint-$@ + +make-%: + @if [ -f $*/Makefile ]; then make -C $*; fi + +dep-%: make-% + @if [ -f $*/requirements.yaml ]; then helm dep up $*; fi + +lint-%: dep-% + @if [ -f $*/Chart.yaml ]; then helm lint $*; fi + +clean: + @rm -f */requirements.lock + @rm -f *tgz */charts/*tgz +%: + @:
\ No newline at end of file |