-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathlint-render.sh
executable file
·67 lines (59 loc) · 1.9 KB
/
lint-render.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env bash
#
# Script to Render all charts
#
echo "Render all Charts..."
set -e
trap 'echo "Command failed...exiting. Please fix me!"' ERR
rm -rf test
mkdir test
if [ "$1" ]; then
declare -a charts=("$1")
else
declare -a charts=(
example-mojaloop-backend
ml-testing-toolkit
ml-testing-toolkit-cli
sdk-scheme-adapter/chart-service
sdk-scheme-adapter
mojaloop-ttk-simulators/chart-sim1
mojaloop-ttk-simulators/chart-sim2
mojaloop-ttk-simulators/chart-sim3
mojaloop-ttk-simulators
eventstreamprocessor
simulator
# monitoring/promfana - Disabled linting due to outdated versions
# monitoring/efk - Disabled linting due to outdated versions
account-lookup-service
als-oracle-pathfinder
als-msisdn-oracle
# centralkms # Deprecated - No longer supported
# forensicloggingsidecar # Deprecated - No longer supported
centralledger
# centralenduserregistry # Deprecated - No longer supported
centralsettlement
emailnotifier
centraleventprocessor
ml-api-adapter
quoting-service
# finance-portal # Deprecated - No longer supported
# finance-portal-settlement-management # Deprecated - No longer supported
transaction-requests-service
bulk-centralledger/
bulk-api-adapter/
mojaloop-bulk/
mojaloop-simulator
mojaloop
# kube-system/ntpd/ # Deprecated - No longer supported
ml-operator
thirdparty/chart-auth-svc
thirdparty/chart-consent-oracle
thirdparty/chart-tp-api-svc
inter-scheme-proxy-adapter
)
fi
for chart in "${charts[@]}"
do
echo "---=== Rendering $chart ===---"
helm template --api-versions apps/v1/Deployment --api-versions batch/v1 $chart | yq -s '"test/'$chart'/" + .kind + "-" + .metadata.name'
done