Files
app-istio/istio-helm/files/Makefile
Teresa Ho b36b751f38 FluxCD app Istio and helm charts configuration
This commit introduces the application Istio which is to be manually
uploaded.

The istio-helm and kiali-helm repackages the helm charts from the
upstream Istio and Kiali. The stx-istio-helm packages these charts
into the fluxCD app.

Test Plan:
Pass: Centos: istio application uploaded manually
Pass: Debian build successful

Story: 2009912
Task: 44929

Change-Id: Ie0badb9a8d8de7fe63a82bc04c676bee90b2fb3d
Signed-off-by: Teresa Ho <teresa.ho@windriver.com>
2022-04-11 13:46:35 -04:00

44 lines
945 B
Makefile

#
# Copyright 2017 The Openstack-Helm Authors.
#
# Copyright (c) 2022 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
# It's necessary to set this because some environments don't link sh -> bash.
SHELL := /bin/bash
TASK := build
EXCLUDES := helm-toolkit doc tests tools logs tmp
CHARTS := helm-toolkit $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.)))
.PHONY: $(EXCLUDES) $(CHARTS)
all: $(CHARTS)
$(CHARTS):
@if [ -d $@ ]; then \
echo; \
echo "===== Processing [$@] chart ====="; \
make $(TASK)-$@; \
fi
init-%:
if [ -f $*/Makefile ]; then make -C $*; fi
if [ -f $*/requirements.yaml ]; then helm dep up $*; fi
lint-%: init-%
if [ -d $* ]; then helm lint $*; fi
build-%:
if [ -d $* ]; then helm package $*; fi
clean:
@echo "Clean all build artifacts"
rm -f */templates/_partials.tpl */templates/_globals.tpl
rm -f *tgz */charts/*tgz */requirements.lock
rm -rf */charts */tmpcharts
%:
@: