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 12246ef commit 9175d5dCopy full SHA for 9175d5d
nix/scripts/list-helm-containers.sh
@@ -102,8 +102,8 @@ while IFS= read -r chart; do
102
secrets_file="${VALUES_DIR}/$(basename "${chart}")/demo-secrets.example.yaml"
103
fi
104
105
- # Separate helm stderr from stdout to avoid yq parsing errors
106
- # Save helm output to temp file to capture exit code
+ # Save helm output to temp file to check exit code before parsing
+ # This prevents yq from attempting to parse helm error messages
107
temp_helm_output=$(mktemp)
108
helm template "${chart}" \
109
$( [[ -n "$values_file" ]] && echo "-f $values_file" ) \
0 commit comments