puthuparambil.aditya | b35e2de | 2021-07-23 13:57:22 +0100 | [diff] [blame] | 1 | # Copyright © 2020 Samsung Electronics |
| 2 | # Copyright (c) 2021 AT&T. All rights reserved. |
| 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 | |
| 16 | ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) |
| 17 | OUTPUT_DIR := $(ROOT_DIR)/../../dist |
| 18 | PACKAGE_DIR := $(OUTPUT_DIR)/packages |
| 19 | SECRET_DIR := $(OUTPUT_DIR)/secrets |
| 20 | |
| 21 | HELM_REPO := local |
| 22 | |
| 23 | EXCLUDES := |
| 24 | HELM_BIN := helm |
| 25 | # Helm v2 and helm v3 uses different version format so we first try in helm v3 format |
| 26 | # and if it fails then we fallback to helm v2 one |
| 27 | HELM_VER := $(shell $(HELM_BIN) version --template "{{.Version}}" 2>/dev/null) |
| 28 | ifneq "$(findstring v3,$(HELM_VER))" "v3" |
| 29 | HELM_VER := $(shell $(HELM_BIN) version -c --template "{{.Client.SemVer}}") |
| 30 | endif |
| 31 | |
| 32 | HELM_CHARTS := $(filter-out $(EXCLUDES), $(sort $(patsubst %/.,%,$(wildcard */.)))) |
| 33 | |
| 34 | .PHONY: $(EXCLUDES) $(HELM_CHARTS) |
| 35 | |
| 36 | all: $(HELM_CHARTS) helm-repo-update |
| 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_BIN) dep up $*; fi |
| 47 | |
| 48 | lint-%: dep-% |
| 49 | @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) lint $*; fi |
| 50 | |
| 51 | package-%: lint-% |
| 52 | @mkdir -p $(PACKAGE_DIR) |
| 53 | @if [ -f $*/Chart.yaml ]; then PACKAGE_NAME=$$($(HELM_BIN) package -d $(PACKAGE_DIR) $* | cut -d":" -f2) && $(HELM_BIN) push -f $$PACKAGE_NAME $(HELM_REPO); fi |
| 54 | @sleep 3 |
| 55 | |
| 56 | clean: |
| 57 | @rm -f */requirements.lock |
| 58 | @rm -f *tgz */charts/*tgz |
| 59 | @rm -rf $(PACKAGE_DIR) |
| 60 | |
| 61 | helm-repo-update: |
| 62 | ifeq "$(findstring v3,$(HELM_VER))" "v3" |
| 63 | @$(HELM_BIN) repo update |
| 64 | endif |
| 65 | |
| 66 | %: |
| 67 | @: |