blob: 3f41c3cc4bae27ca2eba5018f1dd45f399882993 [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
Ubuntu5e0f3402019-12-12 23:01:28 +000023SUBMODS := robot aai
24EXCLUDES := config oneclick readiness test dist helm $(PARENT_CHART) dcae $(SUBMODS)
Mandeep Khindaa57d8dd2018-03-09 14:29:37 +000025HELM_CHARTS := $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) $(PARENT_CHART)
Mike Elliottae51de82018-02-16 10:48:59 -050026
Ubuntu5e0f3402019-12-12 23:01:28 +000027.PHONY: $(EXCLUDES) $(HELM_CHARTS) $(SUBMODS)
Mike Elliottae51de82018-02-16 10:48:59 -050028
Ubuntu5e0f3402019-12-12 23:01:28 +000029all: $(COMMON_CHARTS_DIR) $(SUBMODS) $(HELM_CHARTS) plugins
Mandeep Khindaa57d8dd2018-03-09 14:29:37 +000030
Mike Elliott003d7292018-03-26 12:28:53 -040031$(COMMON_CHARTS):
Mandeep Khindaa57d8dd2018-03-09 14:29:37 +000032 @echo "\n[$@]"
33 @make package-$@
34
Mike Elliottae51de82018-02-16 10:48:59 -050035$(HELM_CHARTS):
36 @echo "\n[$@]"
37 @make package-$@
38
Ubuntu5e0f3402019-12-12 23:01:28 +000039$(SUBMODS):
40 @echo "\n[$@]"
41 @make submod-$@
42 @make package-$@
43
44submod-%:
45 @make $*/requirements.yaml
46
47%/requirements.yaml:
48 $(error Submodule $* needs to be retrieved from gerrit. See https://wiki.onap.org/display/DW/OOM+-+Development+workflow+after+code+transfer+to+tech+teams ); fi
49
50
Mike Elliottae51de82018-02-16 10:48:59 -050051make-%:
52 @if [ -f $*/Makefile ]; then make -C $*; fi
53
54dep-%: make-%
55 @if [ -f $*/requirements.yaml ]; then helm dep up $*; fi
56
57lint-%: dep-%
58 @if [ -f $*/Chart.yaml ]; then helm lint $*; fi
59
60package-%: lint-%
61 @mkdir -p $(PACKAGE_DIR)
62 @if [ -f $*/Chart.yaml ]; then helm package -d $(PACKAGE_DIR) $*; fi
Mike Elliottcb047cb2018-03-27 12:34:57 -040063 @helm repo index $(PACKAGE_DIR)
Mike Elliottae51de82018-02-16 10:48:59 -050064
65clean:
66 @rm -f */requirements.lock
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000067 @find . -type f -name '*.tgz' -delete
Mike Elliottcb047cb2018-03-27 12:34:57 -040068 @rm -rf $(PACKAGE_DIR)/*
Mike Elliott6a84df32018-03-26 09:37:37 -040069
Mike Elliott2034ea72018-11-26 16:41:54 -050070# publish helm plugins via distrubtion directory
71plugins:
72 @cp -R helm $(PACKAGE_DIR)/
73
Mike Elliottcb047cb2018-03-27 12:34:57 -040074# start up a local helm repo to serve up helm chart packages
Mike Elliott6a84df32018-03-26 09:37:37 -040075repo:
76 @mkdir -p $(PACKAGE_DIR)
77 @helm serve --repo-path $(PACKAGE_DIR) &
78 @helm repo index $(PACKAGE_DIR)
79 @helm repo add local http://127.0.0.1:8879
Mike Elliottcb047cb2018-03-27 12:34:57 -040080
81# stop local helm repo
82repo-stop:
83 @pkill helm
84 @helm repo remove local
Mike Elliottae51de82018-02-16 10:48:59 -050085%:
Mike Elliott13fed112018-02-28 08:33:33 -050086 @: