Skip to content
This repository has been archived by the owner on Aug 28, 2021. It is now read-only.

Commit

Permalink
fix: the 'hide' argument did not work
Browse files Browse the repository at this point in the history
It was renamed to 'hidden' during the refactoring, this commit changes it back to 'hide'
  • Loading branch information
msiegenthaler authored Jul 25, 2018
1 parent cfa5047 commit f8346a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/out
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ set_overridden_values() {

overridden_args+=("$helm_set_opt" "$key=$value")
scrubbed_overridden_args+=("$helm_set_opt" "$key=$scrubbed_value")
done < <(jq -j '.params.override_values[]? | if .key and (.value or .path) then (.key, .value // "", .path // "", .hidden // false, .type) else empty end | tostring + "\u0000"' < $payload)
done < <(jq -j '.params.override_values[]? | if .key and (.value or .path) then (.key, .value // "", .path // "", .hide // false, .type) else empty end | tostring + "\u0000"' < $payload)
}

# Find the current revision of a helm release
Expand Down

0 comments on commit f8346a4

Please sign in to comment.