blob: 2fd1980ed0f3f23802047f71b18d5c9e80ce6b39 [file] [log] [blame]
Maciej Malewski955e39d2020-08-27 10:43:09 +02001# Copyright © 2020 Samsung Electronics
2# Modifications Copyright © 2020 Nokia
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
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
Maciej Malewski955e39d2020-08-27 10:43:09 +020023HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.))))
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020024HELM_VER := $(shell $(HELM_BIN) version --template "{{.Version}}")
Maciej Malewski955e39d2020-08-27 10:43:09 +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
Maciej Malewski955e39d2020-08-27 10:43:09 +020039
40lint-%: dep-%
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020041 @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) lint $*; fi
Maciej Malewski955e39d2020-08-27 10:43:09 +020042
43package-%: lint-%
44 @mkdir -p $(PACKAGE_DIR)
Jakub Latusekfc2f37e2020-09-28 16:41:22 +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 Latusekfc2f37e2020-09-28 16:41:22 +020047else
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020048 @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) package -d $(PACKAGE_DIR) $*; fi
Jakub Latusekfc2f37e2020-09-28 16:41:22 +020049endif
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020050 @$(HELM_BIN) repo index $(PACKAGE_DIR)
Maciej Malewski955e39d2020-08-27 10:43:09 +020051
52clean:
53 @rm -f */requirements.lock
54 @rm -f *tgz */charts/*tgz
55 @rm -rf $(PACKAGE_DIR)
56%:
57 @: