NONRTRIC-946: Servicemanager - Add Kong data plane and control plane
[it/dep.git] / smo-install / oran_oom / 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 := nonrtric
16 COMMON_CHARTS_DIR := nonrtric-common aux-common ric-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
24 # Helm v2 and helm v3 uses different version format so we first try in helm v3 format
25 # and if it fails then we fallback to helm v2 one
26 HELM_VER := $(shell $(HELM_BIN) version --template "{{.Version}}" 2>/dev/null)
27 ifneq "$(findstring v3,$(HELM_VER))" "v3"
28         HELM_VER := $(shell $(HELM_BIN) version -c --template "{{.Client.SemVer}}")
29 endif
30
31 # use this if you would like to push onap charts to repo with other name
32 # WARNING: Helm v3+ only
33 # WARNING: Make sure to edit also requirements files
34 HELM_REPO := local
35
36 ifneq ($(SKIP_LINT),TRUE)
37         HELM_LINT_CMD := $(HELM_BIN) lint
38 else
39         HELM_LINT_CMD := echo "Skipping linting of"
40 endif
41
42 #SUBMODS := robot
43 #EXCLUDES := config oneclick readiness test dist helm $(PARENT_CHART) dcae $(SUBMODS)
44 EXCLUDES := config oneclick readiness test dist helm $(PARENT_CHART)
45 HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.)))) $(PARENT_CHART)
46
47 .PHONY: $(EXCLUDES) $(HELM_CHARTS) check-for-staging-images
48
49 all: print_helm_bin $(COMMON_CHARTS_DIR) $(SUBMODS) $(HELM_CHARTS) helm-repo-update
50
51 $(COMMON_CHARTS):
52         @echo "\n[$@]"
53         @make package-$@
54
55 $(HELM_CHARTS):
56         @echo "\n[$@]"
57         @make package-$@
58
59 $(SUBMODS):
60         @echo "\n[$@]"
61         @make submod-$@
62         @make package-$@
63
64 submod-%:
65         @make $*/Chart.yaml
66
67 %/Chart.yaml:
68         $(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
69
70 print_helm_bin:
71         $(info Using Helm binary ${HELM_BIN} which is helm version ${HELM_VER})
72
73 make-%:
74         @if [ -f $*/Makefile ]; then make -C $*; fi
75
76 dep-%: make-%
77         @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) dep up $*; fi
78
79 lint-%: dep-%
80         @if [ -f $*/Chart.yaml ]; then $(HELM_LINT_CMD) $*; fi
81
82 package-%: lint-%
83         @mkdir -p $(PACKAGE_DIR)
84 ifeq "$(findstring v3,$(HELM_VER))" "v3"
85         @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
86 else
87         @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) package -d $(PACKAGE_DIR) $*; fi
88         @$(HELM_BIN) repo index $(PACKAGE_DIR)
89 endif
90
91 clean:
92         @rm -f */Chart.lock
93         @find . -type f -name '*.tgz' -delete
94         @rm -rf $(PACKAGE_DIR)/*
95
96 # publish helm plugins via distrubtion directory
97 plugins:
98         @cp -R helm $(PACKAGE_DIR)/
99
100 # start up a local helm repo to serve up helm chart packages
101 # WARNING: Only helm < v3 supported
102 repo:
103         @mkdir -p $(PACKAGE_DIR)
104         @$(HELM_BIN) serve --repo-path $(PACKAGE_DIR) &
105         @sleep 3
106         @$(HELM_BIN) repo index $(PACKAGE_DIR)
107         @$(HELM_BIN) repo add local http://127.0.0.1:8879
108
109 # stop local helm repo
110 # WARNING: Only helm < v3 supported
111 repo-stop:
112         @pkill $(HELM_BIN)
113         @$(HELM_BIN) repo remove local
114
115 check-for-staging-images:
116         $(ROOT_DIR)/contrib/tools/check-for-staging-images.sh
117
118 helm-repo-update:
119 ifeq "$(findstring v3,$(HELM_VER))" "v3"
120         @$(HELM_BIN) repo update
121 endif
122
123 %:
124         @: