blob: fa63bd894260a89e7e16d9d9df5aaa8559f7944a [file] [log] [blame]
Mike Elliott003d7292018-03-26 12:28:53 -04001# Copyright © 2017 Amdocs, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Mike Elliottae51de82018-02-16 10:48:59 -050015PARENT_CHART := onap
16COMMON_CHARTS_DIR := common
Mike Elliottae51de82018-02-16 10:48:59 -050017# FIXME OOM-765
18ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
19OUTPUT_DIR := $(ROOT_DIR)/dist
20PACKAGE_DIR := $(OUTPUT_DIR)/packages
21SECRET_DIR := $(OUTPUT_DIR)/secrets
22
Mike Elliott003d7292018-03-26 12:28:53 -040023EXCLUDES := config oneclick readiness test dist helm $(PARENT_CHART) dcae
Mandeep Khindaa57d8dd2018-03-09 14:29:37 +000024HELM_CHARTS := $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) $(PARENT_CHART)
Mike Elliottae51de82018-02-16 10:48:59 -050025
26.PHONY: $(EXCLUDES) $(HELM_CHARTS)
27
Mike Elliott2034ea72018-11-26 16:41:54 -050028all: $(COMMON_CHARTS_DIR) $(HELM_CHARTS) plugins
Mandeep Khindaa57d8dd2018-03-09 14:29:37 +000029
Mike Elliott003d7292018-03-26 12:28:53 -040030$(COMMON_CHARTS):
Mandeep Khindaa57d8dd2018-03-09 14:29:37 +000031 @echo "\n[$@]"
32 @make package-$@
33
Mike Elliottae51de82018-02-16 10:48:59 -050034$(HELM_CHARTS):
35 @echo "\n[$@]"
36 @make package-$@
37
38make-%:
39 @if [ -f $*/Makefile ]; then make -C $*; fi
40
41dep-%: make-%
42 @if [ -f $*/requirements.yaml ]; then helm dep up $*; fi
43
44lint-%: dep-%
45 @if [ -f $*/Chart.yaml ]; then helm lint $*; fi
46
47package-%: lint-%
48 @mkdir -p $(PACKAGE_DIR)
49 @if [ -f $*/Chart.yaml ]; then helm package -d $(PACKAGE_DIR) $*; fi
Mike Elliottcb047cb2018-03-27 12:34:57 -040050 @helm repo index $(PACKAGE_DIR)
Mike Elliottae51de82018-02-16 10:48:59 -050051
52clean:
53 @rm -f */requirements.lock
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000054 @find . -type f -name '*.tgz' -delete
Mike Elliottcb047cb2018-03-27 12:34:57 -040055 @rm -rf $(PACKAGE_DIR)/*
Mike Elliott6a84df32018-03-26 09:37:37 -040056
Mike Elliott2034ea72018-11-26 16:41:54 -050057# publish helm plugins via distrubtion directory
58plugins:
59 @cp -R helm $(PACKAGE_DIR)/
60
Mike Elliottcb047cb2018-03-27 12:34:57 -040061# start up a local helm repo to serve up helm chart packages
Mike Elliott6a84df32018-03-26 09:37:37 -040062repo:
63 @mkdir -p $(PACKAGE_DIR)
64 @helm serve --repo-path $(PACKAGE_DIR) &
65 @helm repo index $(PACKAGE_DIR)
66 @helm repo add local http://127.0.0.1:8879
Mike Elliottcb047cb2018-03-27 12:34:57 -040067
68# stop local helm repo
69repo-stop:
70 @pkill helm
71 @helm repo remove local
Mike Elliottae51de82018-02-16 10:48:59 -050072%:
Mike Elliott13fed112018-02-28 08:33:33 -050073 @: