Merge "[SO] Remove so-db-secrets"
[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 HELM_VER := $(shell $(HELM_BIN) version --template "{{.Version}}")
24
25 ifneq ($(SKIP_LINT),TRUE)
26         HELM_LINT_CMD := $(HELM_BIN) lint
27 else
28         HELM_LINT_CMD := echo "Skipping linting of"
29 endif
30
31 SUBMODS := robot aai
32 EXCLUDES := config oneclick readiness test dist helm $(PARENT_CHART) dcae $(SUBMODS)
33 HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.)))) $(PARENT_CHART)
34
35 .PHONY: $(EXCLUDES) $(HELM_CHARTS) check-for-staging-images
36
37 all: $(COMMON_CHARTS_DIR) $(SUBMODS) $(HELM_CHARTS) plugins
38
39 $(COMMON_CHARTS):
40         @echo "\n[$@]"
41         @make package-$@
42
43 $(HELM_CHARTS):
44         @echo "\n[$@]"
45         @make package-$@
46
47 $(SUBMODS):
48         @echo "\n[$@]"
49         @make submod-$@
50         @make package-$@
51
52 submod-%:
53         @make $*/requirements.yaml
54
55 %/requirements.yaml:
56         $(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
57
58
59 make-%:
60         @if [ -f $*/Makefile ]; then make -C $*; fi
61
62 dep-%: make-%
63         @if [ -f $*/requirements.yaml ]; then $(HELM_BIN) dep up $*; fi
64
65 lint-%: dep-%
66         @if [ -f $*/Chart.yaml ]; then $(HELM_LINT_CMD) $*; fi
67
68 package-%: lint-%
69         @mkdir -p $(PACKAGE_DIR)
70 ifeq "$(findstring v3,$(HELM_VER))" "v3"
71         @if [ -f $*/Chart.yaml ]; then PACKAGE_NAME=$$($(HELM_BIN) package -d $(PACKAGE_DIR) $* | cut -d":" -f2) && $(HELM_BIN) push -f $$PACKAGE_NAME local; fi
72 else
73         @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) package -d $(PACKAGE_DIR) $*; fi
74 endif
75
76         @$(HELM_BIN) repo index $(PACKAGE_DIR)
77
78 clean:
79         @rm -f */requirements.lock
80         @find . -type f -name '*.tgz' -delete
81         @rm -rf $(PACKAGE_DIR)/*
82
83 # publish helm plugins via distrubtion directory
84 plugins:
85         @cp -R $(HELM_BIN) $(PACKAGE_DIR)/
86
87 # start up a local helm repo to serve up helm chart packages
88 repo:
89         @mkdir -p $(PACKAGE_DIR)
90         @$(HELM_BIN) serve --repo-path $(PACKAGE_DIR) &
91         @sleep 3
92         @$(HELM_BIN) repo index $(PACKAGE_DIR)
93         @$(HELM_BIN) repo add local http://127.0.0.1:8879
94
95 # stop local helm repo
96 repo-stop:
97         @pkill $(HELM_BIN)
98         @$(HELM_BIN) repo remove local
99
100 check-for-staging-images:
101         $(ROOT_DIR)/contrib/tools/check-for-staging-images.sh
102
103 %:
104         @:
105