Skip to content

Commit 0b29fd9

Browse files
committed
update CI scripting
On-behalf-of: @SAP [email protected]
1 parent 7100995 commit 0b29fd9

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

hack/ci/render-helm-charts.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ set -euo pipefail
55
cd "$(dirname "$0")/../.."
66

77
if ! [ -x "$(command -v helm)" ]; then
8-
echo "missing helm command in PATH"
9-
exit 1
8+
echo "missing helm command in PATH"
9+
exit 1
1010
fi
1111

1212
if ! [ -x "$(command -v kubeconform)" ]; then
13-
echo "missing kubeconform command in PATH"
14-
exit 1
13+
echo "missing kubeconform command in PATH"
14+
exit 1
1515
fi
1616

1717
for dir in ./charts/*/; do
@@ -21,6 +21,8 @@ for dir in ./charts/*/; do
2121
helm template \
2222
--debug \
2323
--set=externalHostname=ci.kcp.io \
24+
--set=apiExportName=my-api \
25+
--set=platformKubeconfig=kcp-kubeconfig \
2426
kcp ./charts/${chart}/ | tee ${chart}-templated.yaml
2527

2628
echo "---"

0 commit comments

Comments
 (0)