Skip to content

Commit b8d7229

Browse files
committed
Fake helm values in list-helm-containers.sh
Ported from M3.5.1
1 parent 62b4cf8 commit b8d7229

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

nix/scripts/list-helm-containers.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ function optionally_complain() {
3030
while IFS= read -r chart; do
3131
echo "Running helm template on chart ${chart}" >&2
3232

33-
helm template "$chart" \
33+
helm template --debug "$chart" \
34+
--set secrets.zrestSecret=emptyString \
35+
--set federate.dtls.tls.key=emptyString \
36+
--set federate.dtls.tls.crt=emptyString \
3437
$( [[ -f ./values/$(basename $chart)/prod-values.example.yaml ]] && echo "-f ./values/$(basename $chart)/prod-values.example.yaml" ) \
3538
$( [[ -f ./values/$(basename $chart)/prod-secrets.example.yaml ]] && echo "-f ./values/$(basename $chart)/prod-secrets.example.yaml" ) \
3639
| yq -r '..|.image? | select(.)' | optionally_complain | sort -u

0 commit comments

Comments
 (0)