Near RT RIC Platform new-installer initial release
[ric-plt/ric-dep.git] / new-installer / helm / charts / Makefile
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Copyright (c) 2023 hypheOs Software Labs
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 COMMON_CHARTS_DIR := nonrtric nearrtric
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 $(PARENT_CHART)
46 HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.)))) $(PARENT_CHART)
47 HELM_CHARTS_CLEAN := $(sort $(patsubst %,clean-%, $(HELM_CHARTS)))
48
49 .PHONY: $(EXCLUDES)  $(HELM_CHARTS) check-for-staging-images helm-repo-update
50
51 all: print_helm_bin $(HELM_CHARTS) helm-repo-update
52
53 $(HELM_CHARTS): | $(OUTPUT_DIR)
54         @echo "\n[$@]"
55         @make package-$@
56
57 $(HELM_CHARTS_CLEAN):
58         @echo "\n[clean $(patsubst clean-%,%,$@)]"
59         @rm -f $(patsubst clean-%,%,$@)/Chart.lock;
60         @rm -rf $(patsubst clean-%,%,$@)/charts;
61
62 print_helm_bin:
63         $(info Using Helm binary ${HELM_BIN} which is helm version ${HELM_VER})
64
65 make-%:
66         @if [ -f $*/Makefile ]; then make -C $*; fi
67
68 dep-%: make-%
69         @echo $(HELM_DIR) dep up $*
70         @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) dep up $*; fi
71
72 lint-%: dep-%
73         @if [ -f $*/Chart.yaml ]; then $(HELM_LINT_CMD) $*; fi
74
75 package-%: lint-%
76         @mkdir -p $(PACKAGE_DIR)
77 ifeq "$(findstring v3,$(HELM_VER))" "v3"
78         @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
79 else
80         @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) package -d $(PACKAGE_DIR) $*; fi
81         @$(HELM_BIN) repo index $(PACKAGE_DIR)
82 endif
83
84 clean: $(HELM_CHARTS_CLEAN)
85         @rm -f */Chart.lock
86         @find . -type f -name '*.tgz' -delete
87         @rm -rf $(PACKAGE_DIR)/*
88
89 distclean: clean
90         @rm -rf $(OUTPUT_DIR)
91
92 # publish helm plugins via distrubtion directory
93 plugins:
94         @cp -R helm $(PACKAGE_DIR)/
95
96 # start up a local helm repo to serve up helm chart packages
97 # WARNING: Only helm < v3 supported
98 repo:
99         @mkdir -p $(PACKAGE_DIR)
100         @$(HELM_BIN) serve --repo-path $(PACKAGE_DIR) &
101         @sleep 3
102         @$(HELM_BIN) repo index $(PACKAGE_DIR)
103         @$(HELM_BIN) repo add local http://127.0.0.1:8879
104
105 # stop local helm repo
106 # WARNING: Only helm < v3 supported
107 repo-stop:
108         @pkill $(HELM_BIN)
109         @$(HELM_BIN) repo remove local
110
111 check-for-staging-images:
112         $(ROOT_DIR)/contrib/tools/check-for-staging-images.sh
113
114 helm-repo-update:
115 ifeq "$(findstring v3,$(HELM_VER))" "v3"
116         @$(HELM_BIN) repo update
117 endif
118
119 %:
120         @: