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 62b4cf8 commit b8d7229Copy full SHA for b8d7229
nix/scripts/list-helm-containers.sh
@@ -30,7 +30,10 @@ function optionally_complain() {
30
while IFS= read -r chart; do
31
echo "Running helm template on chart ${chart}…" >&2
32
33
- helm template "$chart" \
+ helm template --debug "$chart" \
34
+ --set secrets.zrestSecret=emptyString \
35
+ --set federate.dtls.tls.key=emptyString \
36
+ --set federate.dtls.tls.crt=emptyString \
37
$( [[ -f ./values/$(basename $chart)/prod-values.example.yaml ]] && echo "-f ./values/$(basename $chart)/prod-values.example.yaml" ) \
38
$( [[ -f ./values/$(basename $chart)/prod-secrets.example.yaml ]] && echo "-f ./values/$(basename $chart)/prod-secrets.example.yaml" ) \
39
| yq -r '..|.image? | select(.)' | optionally_complain | sort -u
0 commit comments