blob: 88bcb82057e708f469792379ca498eb083f8a74c [file] [log] [blame]
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -04001# 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
Krzysztof Opasiakaae2da92020-05-08 18:56:39 +020021EXCLUDES := dist resources templates charts
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}}")
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040025
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-%
efiacor370c6dc2021-10-12 14:10:49 +010038 @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) dep up $*; fi
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040039
40lint-%: dep-%
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020041 @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) lint $*; fi
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040042
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)
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040051
52clean:
efiacor370c6dc2021-10-12 14:10:49 +010053 @rm -f */Chart.lock
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040054 @rm -f *tgz */charts/*tgz
55 @rm -rf $(PACKAGE_DIR)
56%:
Krzysztof Opasiakaae2da92020-05-08 18:56:39 +020057 @: