We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7100995 commit 0b29fd9Copy full SHA for 0b29fd9
hack/ci/render-helm-charts.sh
@@ -5,13 +5,13 @@ set -euo pipefail
5
cd "$(dirname "$0")/../.."
6
7
if ! [ -x "$(command -v helm)" ]; then
8
- echo "missing helm command in PATH"
9
- exit 1
+ echo "missing helm command in PATH"
+ exit 1
10
fi
11
12
if ! [ -x "$(command -v kubeconform)" ]; then
13
- echo "missing kubeconform command in PATH"
14
+ echo "missing kubeconform command in PATH"
15
16
17
for dir in ./charts/*/; do
@@ -21,6 +21,8 @@ for dir in ./charts/*/; do
21
helm template \
22
--debug \
23
--set=externalHostname=ci.kcp.io \
24
+ --set=apiExportName=my-api \
25
+ --set=platformKubeconfig=kcp-kubeconfig \
26
kcp ./charts/${chart}/ | tee ${chart}-templated.yaml
27
28
echo "---"
0 commit comments