
This commit creates the manifests for Istio deployment and Kiali. Istio operator is used to deploy the Istio components (data-plane, control-plane, gateway and cni). This commit also up-versioned Istio from 1.13.2 to 1.13.3. Test Plan: Pass: Centos: istio application uploaded/applied manually Pass: Debian build successfully Story: 2009912 Task: 45191 Change-Id: I3e9dc0605c53e329277fc507aada565b5182b484 Signed-off-by: Teresa Ho <teresa.ho@windriver.com>
20 lines
355 B
Makefile
Executable File
20 lines
355 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# export DH_VERBOSE = 1
|
|
|
|
export ROOT = debian/tmp
|
|
export CHART_FOLDER = $(ROOT)/usr/lib/helm
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_build:
|
|
# Create the TGZ file.
|
|
make build-helm-charts
|
|
|
|
override_dh_auto_install:
|
|
# Install the app tar file.
|
|
install -d -m 755 $(CHART_FOLDER)
|
|
install -p -D -m 755 *.tgz $(CHART_FOLDER)
|
|
|
|
override_dh_auto_test:
|