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 # Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 PARENT_CHART := nonrtric
17 COMMON_CHARTS_DIR := nonrtric-common aux-common ric-common
18 # FIXME OOM-765
19 ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
20 OUTPUT_DIR := $(ROOT_DIR)/dist
21 PACKAGE_DIR := $(OUTPUT_DIR)/packages
22 SECRET_DIR := $(OUTPUT_DIR)/secrets
23 HELM_BIN := helm
24
25 # Helm v2 and helm v3 uses different version format so we first try in helm v3 format
26 # and if it fails then we fallback to helm v2 one
27 HELM_VER := $(shell $(HELM_BIN) version --template "{{.Version}}" 2>/dev/null)
28 ifneq "$(findstring v3,$(HELM_VER))" "v3"
29         HELM_VER := $(shell $(HELM_BIN) version -c --template "{{.Client.SemVer}}")
30 endif
31
32 # use this if you would like to cm-push onap charts to repo with other name
33 # WARNING: Helm v3+ only
34 # WARNING: Make sure to edit also requirements files
35 HELM_REPO := local
36
37 ifneq ($(SKIP_LINT),TRUE)
38         HELM_LINT_CMD := $(HELM_BIN) lint
39 else
40         HELM_LINT_CMD := echo "Skipping linting of"
41 endif
42
43 #SUBMODS := robot
44 #EXCLUDES := config oneclick readiness test dist helm $(PARENT_CHART) dcae $(SUBMODS)
45 EXCLUDES := config oneclick readiness test dist helm policy-clamp-ac-dme-ppnt $(PARENT_CHART)
46 HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.)))) $(PARENT_CHART)
47
48 .PHONY: $(EXCLUDES) $(HELM_CHARTS) check-for-staging-images
49
50 all: print_helm_bin $(COMMON_CHARTS_DIR) $(SUBMODS) $(HELM_CHARTS) helm-repo-update
51
52 $(COMMON_CHARTS):
53         @echo "\n[$@]"
54         @make package-$@
55
56 $(HELM_CHARTS):
57         @echo "\n[$@]"
58         @make package-$@
59
60 $(SUBMODS):
61         @echo "\n[$@]"
62         @make submod-$@
63         @make package-$@
64
65 submod-%:
66         @make $*/Chart.yaml
67
68 %/Chart.yaml:
69         $(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
70
71 print_helm_bin:
72         $(info Using Helm binary ${HELM_BIN} which is helm version ${HELM_VER})
73
74 make-%:
75         @if [ -f $*/Makefile ]; then make -C $*; fi
76
77 dep-%: make-%
78         @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) dep up $*; fi
79
80 lint-%: dep-%
81         @if [ -f $*/Chart.yaml ]; then $(HELM_LINT_CMD) $*; fi
82
83 package-%: lint-%
84         @mkdir -p $(PACKAGE_DIR)
85 ifeq "$(findstring v3,$(HELM_VER))" "v3"
86         @if [ -f $*/Chart.yaml ]; then PACKAGE_NAME=$$($(HELM_BIN) package -d $(PACKAGE_DIR) $* | cut -d":" -f2) && $(HELM_BIN) cm-push -f $$PACKAGE_NAME $(HELM_REPO); fi
87 else
88         @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) package -d $(PACKAGE_DIR) $*; fi
89         @$(HELM_BIN) repo index $(PACKAGE_DIR)
90 endif
91
92 clean:
93         @rm -f */Chart.lock
94         @find . -type f -name '*.tgz' -delete
95         @rm -rf $(PACKAGE_DIR)/*
96
97 # publish helm plugins via distrubtion directory
98 plugins:
99         @cp -R helm $(PACKAGE_DIR)/
100
101 # start up a local helm repo to serve up helm chart packages
102 # WARNING: Only helm < v3 supported
103 repo:
104         @mkdir -p $(PACKAGE_DIR)
105         @$(HELM_BIN) serve --repo-path $(PACKAGE_DIR) &
106         @sleep 3
107         @$(HELM_BIN) repo index $(PACKAGE_DIR)
108         @$(HELM_BIN) repo add local http://127.0.0.1:8879
109
110 # stop local helm repo
111 # WARNING: Only helm < v3 supported
112 repo-stop:
113         @pkill $(HELM_BIN)
114         @$(HELM_BIN) repo remove local
115
116 check-for-staging-images:
117         $(ROOT_DIR)/contrib/tools/check-for-staging-images.sh
118
119 helm-repo-update:
120 ifeq "$(findstring v3,$(HELM_VER))" "v3"
121         @$(HELM_BIN) repo update
122 endif
123
124 %:
125         @: