Skip to content

Commit

Permalink
allow libhelm to use forward proxy (#10330)
Browse files Browse the repository at this point in the history
  • Loading branch information
hookenz committed Sep 19, 2023
1 parent 6f81fcc commit 8f42ba0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/libhelm/binary/search_repo.go
Expand Up @@ -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,
}
}

Expand Down

0 comments on commit 8f42ba0

Please sign in to comment.