allow libhelm to use forward proxy (#10330)

pull/10367/head 2.19.1
Matt Hook 2023-09-19 18:07:41 +12:00 committed by GitHub
parent 6f81fcc169
commit 8f42ba0254
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -57,7 +57,8 @@ func (hbpm *helmBinaryPackageManager) SearchRepo(searchRepoOpts options.SearchRe
// I'm seeing 3 - 4s over wifi.
// Give ample time but timeout for now. Can be improved in the future
client = &http.Client{
Timeout: 60 * time.Second,
Timeout: 60 * time.Second,
Transport: http.DefaultTransport,
}
}