blob: dfad45ff247a16d3f0aed3d94182b3b6c55c0695 [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
Jakub Latusek6a74e0d2020-10-12 11:55:56 +000022HELM_VER := $(shell helm version --template "{{.Version}}")
Mike Elliottae51de82018-02-16 10:48:59 -050023
Krzysztof Opasiak2d35b232020-02-21 13:50:42 +010024ifneq ($(SKIP_LINT),TRUE)
25 HELM_LINT_CMD := helm lint
26else
27 HELM_LINT_CMD := echo "Skipping linting of"
28endif
29
Ubuntu5e0f3402019-12-12 23:01:28 +000030SUBMODS := robot aai
31EXCLUDES := config oneclick readiness test dist helm $(PARENT_CHART) dcae $(SUBMODS)
Mateusz Pilat613343a2020-05-15 12:19:48 +020032HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.)))) $(PARENT_CHART)
Mike Elliottae51de82018-02-16 10:48:59 -050033
Krzysztof Opasiakaae2da92020-05-08 18:56:39 +020034.PHONY: $(EXCLUDES) $(HELM_CHARTS)
Mike Elliottae51de82018-02-16 10:48:59 -050035
Ubuntu5e0f3402019-12-12 23:01:28 +000036all: $(COMMON_CHARTS_DIR) $(SUBMODS) $(HELM_CHARTS) plugins
Mandeep Khindaa57d8dd2018-03-09 14:29:37 +000037
Mike Elliott003d7292018-03-26 12:28:53 -040038$(COMMON_CHARTS):
Mandeep Khindaa57d8dd2018-03-09 14:29:37 +000039 @echo "\n[$@]"
40 @make package-$@
41
Mike Elliottae51de82018-02-16 10:48:59 -050042$(HELM_CHARTS):
43 @echo "\n[$@]"
44 @make package-$@
45
Ubuntu5e0f3402019-12-12 23:01:28 +000046$(SUBMODS):
47 @echo "\n[$@]"
48 @make submod-$@
49 @make package-$@
50
51submod-%:
52 @make $*/requirements.yaml
53
54%/requirements.yaml:
55 $(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
56
57
Mike Elliottae51de82018-02-16 10:48:59 -050058make-%:
59 @if [ -f $*/Makefile ]; then make -C $*; fi
60
61dep-%: make-%
62 @if [ -f $*/requirements.yaml ]; then helm dep up $*; fi
63
64lint-%: dep-%
Krzysztof Opasiak2d35b232020-02-21 13:50:42 +010065 @if [ -f $*/Chart.yaml ]; then $(HELM_LINT_CMD) $*; fi
Mike Elliottae51de82018-02-16 10:48:59 -050066
67package-%: lint-%
68 @mkdir -p $(PACKAGE_DIR)
Jakub Latusek6a74e0d2020-10-12 11:55:56 +000069ifeq "$(findstring v3,$(HELM_VER))" "v3"
70 @if [ -f $*/Chart.yaml ]; then PACKAGE_NAME=$$(helm package -d $(PACKAGE_DIR) $* | cut -d":" -f2) && helm push -f $$PACKAGE_NAME local; fi
71else
Mike Elliottae51de82018-02-16 10:48:59 -050072 @if [ -f $*/Chart.yaml ]; then helm package -d $(PACKAGE_DIR) $*; fi
Jakub Latusek6a74e0d2020-10-12 11:55:56 +000073endif
74
Mike Elliottcb047cb2018-03-27 12:34:57 -040075 @helm repo index $(PACKAGE_DIR)
Mike Elliottae51de82018-02-16 10:48:59 -050076
77clean:
78 @rm -f */requirements.lock
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000079 @find . -type f -name '*.tgz' -delete
Mike Elliottcb047cb2018-03-27 12:34:57 -040080 @rm -rf $(PACKAGE_DIR)/*
Mike Elliott6a84df32018-03-26 09:37:37 -040081
Mike Elliott2034ea72018-11-26 16:41:54 -050082# publish helm plugins via distrubtion directory
83plugins:
84 @cp -R helm $(PACKAGE_DIR)/
85
Mike Elliottcb047cb2018-03-27 12:34:57 -040086# start up a local helm repo to serve up helm chart packages
Mike Elliott6a84df32018-03-26 09:37:37 -040087repo:
88 @mkdir -p $(PACKAGE_DIR)
89 @helm serve --repo-path $(PACKAGE_DIR) &
Krzysztof Opasiak21731c92020-07-22 14:02:03 +020090 @sleep 3
Mike Elliott6a84df32018-03-26 09:37:37 -040091 @helm repo index $(PACKAGE_DIR)
92 @helm repo add local http://127.0.0.1:8879
Mike Elliottcb047cb2018-03-27 12:34:57 -040093
94# stop local helm repo
95repo-stop:
96 @pkill helm
97 @helm repo remove local
Mike Elliottae51de82018-02-16 10:48:59 -050098%:
Mike Elliott13fed112018-02-28 08:33:33 -050099 @: