Mike Elliott | 003d729 | 2018-03-26 12:28:53 -0400 | [diff] [blame] | 1 | # 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 | |
Mike Elliott | ae51de8 | 2018-02-16 10:48:59 -0500 | [diff] [blame] | 15 | PARENT_CHART := onap |
| 16 | COMMON_CHARTS_DIR := common |
Mike Elliott | ae51de8 | 2018-02-16 10:48:59 -0500 | [diff] [blame] | 17 | # FIXME OOM-765 |
| 18 | ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) |
| 19 | OUTPUT_DIR := $(ROOT_DIR)/dist |
| 20 | PACKAGE_DIR := $(OUTPUT_DIR)/packages |
| 21 | SECRET_DIR := $(OUTPUT_DIR)/secrets |
| 22 | |
Mike Elliott | 003d729 | 2018-03-26 12:28:53 -0400 | [diff] [blame] | 23 | EXCLUDES := config oneclick readiness test dist helm $(PARENT_CHART) dcae |
Mandeep Khinda | a57d8dd | 2018-03-09 14:29:37 +0000 | [diff] [blame] | 24 | HELM_CHARTS := $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) $(PARENT_CHART) |
Mike Elliott | ae51de8 | 2018-02-16 10:48:59 -0500 | [diff] [blame] | 25 | |
| 26 | .PHONY: $(EXCLUDES) $(HELM_CHARTS) |
| 27 | |
Mike Elliott | 2670b0e | 2018-03-21 12:18:40 -0400 | [diff] [blame] | 28 | all: $(COMMON_CHARTS_DIR) $(HELM_CHARTS) |
Mandeep Khinda | a57d8dd | 2018-03-09 14:29:37 +0000 | [diff] [blame] | 29 | |
Mike Elliott | 003d729 | 2018-03-26 12:28:53 -0400 | [diff] [blame] | 30 | $(COMMON_CHARTS): |
Mandeep Khinda | a57d8dd | 2018-03-09 14:29:37 +0000 | [diff] [blame] | 31 | @echo "\n[$@]" |
| 32 | @make package-$@ |
| 33 | |
Mike Elliott | ae51de8 | 2018-02-16 10:48:59 -0500 | [diff] [blame] | 34 | $(HELM_CHARTS): |
| 35 | @echo "\n[$@]" |
| 36 | @make package-$@ |
| 37 | |
| 38 | make-%: |
| 39 | @if [ -f $*/Makefile ]; then make -C $*; fi |
| 40 | |
| 41 | dep-%: make-% |
| 42 | @if [ -f $*/requirements.yaml ]; then helm dep up $*; fi |
| 43 | |
| 44 | lint-%: dep-% |
| 45 | @if [ -f $*/Chart.yaml ]; then helm lint $*; fi |
| 46 | |
| 47 | package-%: lint-% |
| 48 | @mkdir -p $(PACKAGE_DIR) |
| 49 | @if [ -f $*/Chart.yaml ]; then helm package -d $(PACKAGE_DIR) $*; fi |
| 50 | |
| 51 | clean: |
| 52 | @rm -f */requirements.lock |
| 53 | @rm -f *tgz */charts/*tgz |
| 54 | @rm -rf $(PACKAGE_DIR) |
Mike Elliott | 6a84df3 | 2018-03-26 09:37:37 -0400 | [diff] [blame^] | 55 | |
| 56 | # start up a local helm repo to serve up |
| 57 | repo: |
| 58 | @mkdir -p $(PACKAGE_DIR) |
| 59 | @helm serve --repo-path $(PACKAGE_DIR) & |
| 60 | @helm repo index $(PACKAGE_DIR) |
| 61 | @helm repo add local http://127.0.0.1:8879 |
Mike Elliott | ae51de8 | 2018-02-16 10:48:59 -0500 | [diff] [blame] | 62 | %: |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 63 | @: |