[GENERAL] Fix setting of HELM_VER variable
[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
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 HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.)))) $(PARENT_CHART)
45
46 .PHONY: $(EXCLUDES) $(HELM_CHARTS) check-for-staging-images
47
48 all: $(COMMON_CHARTS_DIR) $(SUBMODS) $(HELM_CHARTS) helm-repo-update plugins
49
50 $(COMMON_CHARTS):
51         @echo "\n[$@]"
52         @make package-$@
53
54 $(HELM_CHARTS):
55         @echo "\n[$@]"
56         @make package-$@
57
58 $(SUBMODS):
59         @echo "\n[$@]"
60         @make submod-$@
61         @make package-$@
62
63 submod-%:
64         @make $*/requirements.yaml
65
66 %/requirements.yaml:
67         $(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
68
69
70 make-%:
71         @if [ -f $*/Makefile ]; then make -C $*; fi
72
73 dep-%: make-%
74         @if [ -f $*/requirements.yaml ]; then $(HELM_BIN) dep up $*; fi
75
76 lint-%: dep-%
77         @if [ -f $*/Chart.yaml ]; then $(HELM_LINT_CMD) $*; fi
78
79 package-%: lint-%
80         @mkdir -p $(PACKAGE_DIR)
81 ifeq "$(findstring v3,$(HELM_VER))" "v3"
82         @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
83 else
84         @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) package -d $(PACKAGE_DIR) $*; fi
85         @$(HELM_BIN) repo index $(PACKAGE_DIR)
86 endif
87
88 clean:
89         @rm -f */requirements.lock
90         @find . -type f -name '*.tgz' -delete
91         @rm -rf $(PACKAGE_DIR)/*
92
93 # publish helm plugins via distrubtion directory
94 plugins:
95         @cp -R helm $(PACKAGE_DIR)/
96
97 # start up a local helm repo to serve up helm chart packages
98 # WARNING: Only helm < v3 supported
99 repo:
100         @mkdir -p $(PACKAGE_DIR)
101         @$(HELM_BIN) serve --repo-path $(PACKAGE_DIR) &
102         @sleep 3
103         @$(HELM_BIN) repo index $(PACKAGE_DIR)
104         @$(HELM_BIN) repo add local http://127.0.0.1:8879
105
106 # stop local helm repo
107 # WARNING: Only helm < v3 supported
108 repo-stop:
109         @pkill $(HELM_BIN)
110         @$(HELM_BIN) repo remove local
111
112 check-for-staging-images:
113         $(ROOT_DIR)/contrib/tools/check-for-staging-images.sh
114
115 helm-repo-update:
116 ifeq "$(findstring v3,$(HELM_VER))" "v3"
117         @$(HELM_BIN) repo update
118 endif
119
120 %:
121         @: