blob: 313cca8c277d18fc545c8e2320c6f217a1d7e01f [file] [log] [blame]
Krzysztof Opasiakaae2da92020-05-08 18:56:39 +02001# 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# FIXME OOM-765
16ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
17OUTPUT_DIR := $(ROOT_DIR)/../../dist
18PACKAGE_DIR := $(OUTPUT_DIR)/packages
19SECRET_DIR := $(OUTPUT_DIR)/secrets
20
21EXCLUDES :=
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020022HELM_BIN := helm
Krzysztof Opasiakaae2da92020-05-08 18:56:39 +020023HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.))))
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020024HELM_VER := $(shell $(HELM_BIN) version --template "{{.Version}}")
Krzysztof Opasiakaae2da92020-05-08 18:56:39 +020025
26.PHONY: $(EXCLUDES) $(HELM_CHARTS)
27
28all: $(HELM_CHARTS)
29
30$(HELM_CHARTS):
31 @echo "\n[$@]"
32 @make package-$@
33
34make-%:
35 @if [ -f $*/Makefile ]; then make -C $*; fi
36
37dep-%: make-%
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020038 @if [ -f $*/requirements.yaml ]; then $(HELM_BIN) dep up $*; fi
Krzysztof Opasiakaae2da92020-05-08 18:56:39 +020039
40lint-%: dep-%
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020041 @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) lint $*; fi
Krzysztof Opasiakaae2da92020-05-08 18:56:39 +020042
43package-%: lint-%
44 @mkdir -p $(PACKAGE_DIR)
Jakub Latusekdd13b4d2020-09-25 10:45:59 +020045ifeq "$(findstring v3,$(HELM_VER))" "v3"
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020046 @if [ -f $*/Chart.yaml ]; then PACKAGE_NAME=$$($(HELM_BIN) package -d $(PACKAGE_DIR) $* | cut -d":" -f2) && $(HELM_BIN) push -f $$PACKAGE_NAME local; fi
Jakub Latusekdd13b4d2020-09-25 10:45:59 +020047else
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020048 @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) package -d $(PACKAGE_DIR) $*; fi
Jakub Latusekdd13b4d2020-09-25 10:45:59 +020049endif
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020050 @$(HELM_BIN) repo index $(PACKAGE_DIR)
Krzysztof Opasiakaae2da92020-05-08 18:56:39 +020051
52clean:
53 @rm -f */requirements.lock
54 @rm -f *tgz */charts/*tgz
55 @rm -rf $(PACKAGE_DIR)
56%:
57 @: