You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
helm install my-app oci://URL/my-app --version 1.0 --insecure-skip-tls-verify When I run this command, I should use option --insecure-skip-tls-verify when helm install.
However, go-helm-client doesn't seem to provide an option to include the --insecure-skip-tls-verify option for helm install.
So I get an error as below:
failed to do request: Head "https://REPOSITORY_URL" tls: failed to verify certificate: x509: certificate signed by unknown authority
Therefore, how about adding the code below to include the insecure-skip-tls-verify option?
// Options defines the options of a client. If Output is not set, os.Stdout will be used.typeOptionsstruct {
NamespacestringRepositoryConfigstringRepositoryCachestringDebugboolLintingboolDebugLog action.DebugLogRegistryConfigstringOutput io.Writer// [Add Option for --insecure-skip-tls-verify]InsecureSkipTlsVerifybool
}
helm install my-app oci://URL/my-app --version 1.0 --insecure-skip-tls-verify
When I run this command, I should use option--insecure-skip-tls-verify
when helm install.However, go-helm-client doesn't seem to provide an option to include the
--insecure-skip-tls-verify
option for helm install.So I get an error as below:
failed to do request: Head "https://REPOSITORY_URL" tls: failed to verify certificate: x509: certificate signed by unknown authority
Therefore, how about adding the code below to include the
insecure-skip-tls-verify
option?The text was updated successfully, but these errors were encountered: