-
Notifications
You must be signed in to change notification settings - Fork 563
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for --insecure-skip-tls-verify flag on helm repo add command #1990
Add support for --insecure-skip-tls-verify flag on helm repo add command #1990
Conversation
README.md
Outdated
# Advanced configuration: You can skip the verification of TLS for an https repo | ||
- name: skipTls | ||
url: https://ss.my-insecure-domain.com | ||
skipTlsVerify: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer skipTLSVerify
so that it is consistent with e.g. the existing tlsCACert. Let me do that change and merge this soon. Thank you for your patience and contribution!
Made the change everywhere to keep the code consistent. Should be ok |
…and. Co-authored-by: Yusuke Kuoka <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks a lot for your contribution @BabisK!
I noticed something though- would you also need --insecure-skip-tls-verify
on helm upgrade
commands run by helmfile? Otherwise, you might end up failing on a chart download. Anyway, that's an another story. I'm merging this. Thanks again for your contribution!
@mumoshu if I'm not mistaken, helmfile only calls |
…and (roboll#1990) Parses a new field in repositories named `skipTLSVerify` and if set to `true`, it appends `--insecure-skip-tls-verify` in `helm repo add` command. This should be useful with internal self-signed repos, mitm proxies etc. Resolves roboll#1871
This PR fixes #1871. It parses a new field in repositories named
skipTlsVerify
and if set totrue
, it appends--insecure-skip-tls-verify
inhelm repo add
command.This should be useful with internal self-signed repos, mitm proxies etc.