Merge "[MULTICLOUD] Uses new tpls for repos / images"
[oom.git] / kubernetes / Makefile
1 # 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
15 PARENT_CHART := onap
16 COMMON_CHARTS_DIR := common
17 # FIXME OOM-765
18 ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
19 OUTPUT_DIR := $(ROOT_DIR)/dist
20 PACKAGE_DIR := $(OUTPUT_DIR)/packages
21 SECRET_DIR := $(OUTPUT_DIR)/secrets
22 HELM_BIN := helm
23 HELM_VER := $(shell $(HELM_BIN) version --template "{{.Version}}")
24 # use this if you would like to push onap charts to repo with other name
25 # WARNING: Helm v3+ only
26 # WARNING: Make sure to edit also requirements files
27 HELM_REPO := local
28
29 ifneq ($(SKIP_LINT),TRUE)
30         HELM_LINT_CMD := $(HELM_BIN) lint
31 else
32         HELM_LINT_CMD := echo "Skipping linting of"
33 endif
34
35 SUBMODS := robot aai
36 EXCLUDES := config oneclick readiness test dist helm $(PARENT_CHART) dcae $(SUBMODS)
37 HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.)))) $(PARENT_CHART)
38
39 .PHONY: $(EXCLUDES) $(HELM_CHARTS) check-for-staging-images
40
41 all: $(COMMON_CHARTS_DIR) $(SUBMODS) $(HELM_CHARTS) helm-repo-update plugins
42
43 $(COMMON_CHARTS):
44         @echo "\n[$@]"
45         @make package-$@
46
47 $(HELM_CHARTS):
48         @echo "\n[$@]"
49         @make package-$@
50
51 $(SUBMODS):
52         @echo "\n[$@]"
53         @make submod-$@
54         @make package-$@
55
56 submod-%:
57         @make $*/requirements.yaml
58
59 %/requirements.yaml:
60         $(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
61
62
63 make-%:
64         @if [ -f $*/Makefile ]; then make -C $*; fi
65
66 dep-%: make-%
67         @if [ -f $*/requirements.yaml ]; then $(HELM_BIN) dep up $*; fi
68
69 lint-%: dep-%
70         @if [ -f $*/Chart.yaml ]; then $(HELM_LINT_CMD) $*; fi
71
72 package-%: lint-%
73         @mkdir -p $(PACKAGE_DIR)
74 ifeq "$(findstring v3,$(HELM_VER))" "v3"
75         @if [ -f $*/Chart.yaml ]; then PACKAGE_NAME=$$($(HELM_BIN) package -d $(PACKAGE_DIR) $* | cut -d":" -f2) && $(HELM_BIN) push -f $$PACKAGE_NAME $(HELM_REPO); fi
76 else
77         @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) package -d $(PACKAGE_DIR) $*; fi
78         @$(HELM_BIN) repo index $(PACKAGE_DIR)
79 endif
80
81 clean:
82         @rm -f */requirements.lock
83         @find . -type f -name '*.tgz' -delete
84         @rm -rf $(PACKAGE_DIR)/*
85
86 # publish helm plugins via distrubtion directory
87 plugins:
88         @cp -R $(HELM_BIN) $(PACKAGE_DIR)/
89
90 # start up a local helm repo to serve up helm chart packages
91 # WARNING: Only helm < v3 supported
92 repo:
93         @mkdir -p $(PACKAGE_DIR)
94         @$(HELM_BIN) serve --repo-path $(PACKAGE_DIR) &
95         @sleep 3
96         @$(HELM_BIN) repo index $(PACKAGE_DIR)
97         @$(HELM_BIN) repo add local http://127.0.0.1:8879
98
99 # stop local helm repo
100 # WARNING: Only helm < v3 supported
101 repo-stop:
102         @pkill $(HELM_BIN)
103         @$(HELM_BIN) repo remove local
104
105 check-for-staging-images:
106         $(ROOT_DIR)/contrib/tools/check-for-staging-images.sh
107
108 helm-repo-update:
109 ifeq "$(findstring v3,$(HELM_VER))" "v3"
110         @$(HELM_BIN) repo update
111 endif
112
113 %:
114         @: