Merge "[SDNC] Fix sdnrdb discovery issue"
[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: print_helm_bin $(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 print_helm_bin:
70         $(info Using Helm binary ${HELM_BIN} which is helm version ${HELM_VER})
71
72 make-%:
73         @if [ -f $*/Makefile ]; then make -C $*; fi
74
75 dep-%: make-%
76         @if [ -f $*/requirements.yaml ]; then $(HELM_BIN) dep up $*; fi
77
78 lint-%: dep-%
79         @if [ -f $*/Chart.yaml ]; then $(HELM_LINT_CMD) $*; fi
80
81 package-%: lint-%
82         @mkdir -p $(PACKAGE_DIR)
83 ifeq "$(findstring v3,$(HELM_VER))" "v3"
84         @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
85 else
86         @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) package -d $(PACKAGE_DIR) $*; fi
87         @$(HELM_BIN) repo index $(PACKAGE_DIR)
88 endif
89
90 clean:
91         @rm -f */requirements.lock
92         @find . -type f -name '*.tgz' -delete
93         @rm -rf $(PACKAGE_DIR)/*
94
95 # publish helm plugins via distrubtion directory
96 plugins:
97         @cp -R helm $(PACKAGE_DIR)/
98
99 # start up a local helm repo to serve up helm chart packages
100 # WARNING: Only helm < v3 supported
101 repo:
102         @mkdir -p $(PACKAGE_DIR)
103         @$(HELM_BIN) serve --repo-path $(PACKAGE_DIR) &
104         @sleep 3
105         @$(HELM_BIN) repo index $(PACKAGE_DIR)
106         @$(HELM_BIN) repo add local http://127.0.0.1:8879
107
108 # stop local helm repo
109 # WARNING: Only helm < v3 supported
110 repo-stop:
111         @pkill $(HELM_BIN)
112         @$(HELM_BIN) repo remove local
113
114 check-for-staging-images:
115         $(ROOT_DIR)/contrib/tools/check-for-staging-images.sh
116
117 helm-repo-update:
118 ifeq "$(findstring v3,$(HELM_VER))" "v3"
119         @$(HELM_BIN) repo update
120 endif
121
122 %:
123         @: