add filebeat to k8s log demo
[logging-analytics.git] / reference / logging-kubernetes / Makefile
1 # Copyright © 2018 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 # copy of oom/kubernetes/Makefile
15 # usage
16 # sudo helm make all
17 # sudo helm make logdemonode
18
19 PARENT_CHART := logdemonode
20 COMMON_CHARTS_DIR := common
21 # FIXME OOM-765
22 ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
23 OUTPUT_DIR := $(ROOT_DIR)/dist
24 PACKAGE_DIR := $(OUTPUT_DIR)/packages
25 SECRET_DIR := $(OUTPUT_DIR)/secrets
26
27 EXCLUDES := config oneclick readiness test dist helm $(PARENT_CHART) dcae
28 HELM_CHARTS := $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) $(PARENT_CHART)
29
30 .PHONY: $(EXCLUDES) $(HELM_CHARTS)
31
32 all: $(COMMON_CHARTS_DIR) $(HELM_CHARTS)
33
34 $(COMMON_CHARTS):
35         @echo "\n[$@]"
36         @make package-$@
37
38 $(HELM_CHARTS):
39         @echo "\n[$@]"
40         @make package-$@
41
42 make-%:
43         @if [ -f $*/Makefile ]; then make -C $*; fi
44
45 dep-%: make-%
46         @if [ -f $*/requirements.yaml ]; then helm dep up $*; fi
47
48 lint-%: dep-%
49         @if [ -f $*/Chart.yaml ]; then helm lint $*; fi
50
51 package-%: lint-%
52         @mkdir -p $(PACKAGE_DIR)
53         @if [ -f $*/Chart.yaml ]; then helm package -d $(PACKAGE_DIR) $*; fi
54         @helm repo index $(PACKAGE_DIR)
55
56 clean:
57         @rm -f */requirements.lock
58         @find . -type f -name '*.tgz' -delete
59         @rm -rf $(PACKAGE_DIR)/*
60
61 # start up a local helm repo to serve up helm chart packages
62 repo:
63         @mkdir -p $(PACKAGE_DIR)
64         @helm serve --repo-path $(PACKAGE_DIR) &
65         @helm repo index $(PACKAGE_DIR)
66         @helm repo add local http://127.0.0.1:8879
67
68 # stop local helm repo
69 repo-stop:
70         @pkill helm
71         @helm repo remove local
72 %:
73         @: