-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
Enhancement proposal : Helm repo add to support --insecure-skip-verify #3113
Comments
This is already supported in CLI: The checkbox is missing in UI. |
@alexmt I tried using --insecure-skip-server-verification for helm charts but does not have any effect only for git it works fine. |
This is because the insecure option is not passed to the Helm client here. It is only passed if the type of the repo is 'git'. |
PR #3420 partially addresses this issue. However, helm CLI itself does not have --insecure flag. So above PR will allow adding repository but it still will be impossible to use charts from the repo ( The Lets keep ticket open and wait for helm release. |
@mayzhang2000 lets keep it open until we upgrade to the helm 3.20 which adds |
Summary
Adding helm repo does not support insecure options, as supported while adding git repository.
Motivation
Many of the self-hosted helm repositories like harbor etc would be using self-signed certs. It would be a helpful option.
Proposal
The addition of helm repo should also support the insecure-skip-verify option to skip cert verification.
The text was updated successfully, but these errors were encountered: