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 | |
Krzysztof Opasiak | 2d35b23 | 2020-02-21 13:50:42 +0100 | [diff] [blame] | 23 | ifneq ($(SKIP_LINT),TRUE) |
| 24 | HELM_LINT_CMD := helm lint |
| 25 | else |
| 26 | HELM_LINT_CMD := echo "Skipping linting of" |
| 27 | endif |
| 28 | |
Ubuntu | 5e0f340 | 2019-12-12 23:01:28 +0000 | [diff] [blame] | 29 | SUBMODS := robot aai |
| 30 | EXCLUDES := config oneclick readiness test dist helm $(PARENT_CHART) dcae $(SUBMODS) |
Mandeep Khinda | a57d8dd | 2018-03-09 14:29:37 +0000 | [diff] [blame] | 31 | HELM_CHARTS := $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) $(PARENT_CHART) |
Mike Elliott | ae51de8 | 2018-02-16 10:48:59 -0500 | [diff] [blame] | 32 | |
Ubuntu | 5e0f340 | 2019-12-12 23:01:28 +0000 | [diff] [blame] | 33 | .PHONY: $(EXCLUDES) $(HELM_CHARTS) $(SUBMODS) |
Mike Elliott | ae51de8 | 2018-02-16 10:48:59 -0500 | [diff] [blame] | 34 | |
Ubuntu | 5e0f340 | 2019-12-12 23:01:28 +0000 | [diff] [blame] | 35 | all: $(COMMON_CHARTS_DIR) $(SUBMODS) $(HELM_CHARTS) plugins |
Mandeep Khinda | a57d8dd | 2018-03-09 14:29:37 +0000 | [diff] [blame] | 36 | |
Mike Elliott | 003d729 | 2018-03-26 12:28:53 -0400 | [diff] [blame] | 37 | $(COMMON_CHARTS): |
Mandeep Khinda | a57d8dd | 2018-03-09 14:29:37 +0000 | [diff] [blame] | 38 | @echo "\n[$@]" |
| 39 | @make package-$@ |
| 40 | |
Mike Elliott | ae51de8 | 2018-02-16 10:48:59 -0500 | [diff] [blame] | 41 | $(HELM_CHARTS): |
| 42 | @echo "\n[$@]" |
| 43 | @make package-$@ |
| 44 | |
Ubuntu | 5e0f340 | 2019-12-12 23:01:28 +0000 | [diff] [blame] | 45 | $(SUBMODS): |
| 46 | @echo "\n[$@]" |
| 47 | @make submod-$@ |
| 48 | @make package-$@ |
| 49 | |
| 50 | submod-%: |
| 51 | @make $*/requirements.yaml |
| 52 | |
| 53 | %/requirements.yaml: |
| 54 | $(error Submodule $* needs to be retrieved from gerrit. See https://wiki.onap.org/display/DW/OOM+-+Development+workflow+after+code+transfer+to+tech+teams ); fi |
| 55 | |
| 56 | |
Mike Elliott | ae51de8 | 2018-02-16 10:48:59 -0500 | [diff] [blame] | 57 | make-%: |
| 58 | @if [ -f $*/Makefile ]; then make -C $*; fi |
| 59 | |
| 60 | dep-%: make-% |
| 61 | @if [ -f $*/requirements.yaml ]; then helm dep up $*; fi |
| 62 | |
| 63 | lint-%: dep-% |
Krzysztof Opasiak | 2d35b23 | 2020-02-21 13:50:42 +0100 | [diff] [blame] | 64 | @if [ -f $*/Chart.yaml ]; then $(HELM_LINT_CMD) $*; fi |
Mike Elliott | ae51de8 | 2018-02-16 10:48:59 -0500 | [diff] [blame] | 65 | |
| 66 | package-%: lint-% |
| 67 | @mkdir -p $(PACKAGE_DIR) |
| 68 | @if [ -f $*/Chart.yaml ]; then helm package -d $(PACKAGE_DIR) $*; fi |
Mike Elliott | cb047cb | 2018-03-27 12:34:57 -0400 | [diff] [blame] | 69 | @helm repo index $(PACKAGE_DIR) |
Mike Elliott | ae51de8 | 2018-02-16 10:48:59 -0500 | [diff] [blame] | 70 | |
| 71 | clean: |
| 72 | @rm -f */requirements.lock |
Dominic Lunanuova | e825fee | 2018-04-12 14:40:34 +0000 | [diff] [blame] | 73 | @find . -type f -name '*.tgz' -delete |
Mike Elliott | cb047cb | 2018-03-27 12:34:57 -0400 | [diff] [blame] | 74 | @rm -rf $(PACKAGE_DIR)/* |
Mike Elliott | 6a84df3 | 2018-03-26 09:37:37 -0400 | [diff] [blame] | 75 | |
Mike Elliott | 2034ea7 | 2018-11-26 16:41:54 -0500 | [diff] [blame] | 76 | # publish helm plugins via distrubtion directory |
| 77 | plugins: |
| 78 | @cp -R helm $(PACKAGE_DIR)/ |
| 79 | |
Mike Elliott | cb047cb | 2018-03-27 12:34:57 -0400 | [diff] [blame] | 80 | # start up a local helm repo to serve up helm chart packages |
Mike Elliott | 6a84df3 | 2018-03-26 09:37:37 -0400 | [diff] [blame] | 81 | repo: |
| 82 | @mkdir -p $(PACKAGE_DIR) |
| 83 | @helm serve --repo-path $(PACKAGE_DIR) & |
| 84 | @helm repo index $(PACKAGE_DIR) |
| 85 | @helm repo add local http://127.0.0.1:8879 |
Mike Elliott | cb047cb | 2018-03-27 12:34:57 -0400 | [diff] [blame] | 86 | |
| 87 | # stop local helm repo |
| 88 | repo-stop: |
| 89 | @pkill helm |
| 90 | @helm repo remove local |
Mike Elliott | ae51de8 | 2018-02-16 10:48:59 -0500 | [diff] [blame] | 91 | %: |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 92 | @: |