Skip to content

Commit

Permalink
Merge pull request #5 from Evaneos/feat/private_generic_registry
Browse files Browse the repository at this point in the history
fix: syntax error in registry configuration
  • Loading branch information
ulrich-giraud authored Sep 13, 2024
2 parents caceea4 + 212e60c commit 5ecef9a
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 @@ -156,7 +156,7 @@ helm_registry_login() {
elif [ "${generic}" = true ]; then
registry_host=$(jq -r '.params.private_registry.generic.host // ""' < $payload)
registry_username=$(jq -r '.params.private_registry.generic.username // ""' < $payload)
registry_password=$(jq -r '.params.private_registry.generic.password // ""' < $payload
registry_password=$(jq -r '.params.private_registry.generic.password // ""' < $payload)
echo "$registry_password" | helm registry login $host --username $registry_username --password-stdin
echo "done logging in to generic registry"
else
Expand Down

0 comments on commit 5ecef9a

Please sign in to comment.