Open hstenzel opened 1 year ago
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Hello
today I've run into the same issue. I'm using diff upgrade to compare a released chart from a repo that needs credentials. helm repo add
did help in my use case. You need to add the repo with an alias (say "rpoName") and then do helm repo update
. After this you can run helm diff releseName rpoName/chartName
and don't have to provide any credentials because the chart is already downloaded.
Currently,
helm upgrade
supports--repo
,--username
, and--password
However,
helm diff upgrade
only supports--repo
I'd like to be able to pass in the the credentials to the helm repo when using the
--repo
arg. While it's currently possible to achieve the same result byhelm repo add
ing the the repo with user then changing the chart, this introduces config changes on the local system and causes the command usage to diverge.Thanks in advance! Great project!