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