mirror of https://github.com/helm/helm.git
Add timeout flag to repo add and update flags
Signed-off-by: Reinhard Nägele <unguiculus@gmail.com> # Conflicts: # pkg/cmd/repo_update.go
This commit is contained in:
parent
39305fc160
commit
d448cf1943
|
@ -52,6 +52,7 @@ type repoAddOptions struct {
|
|||
passCredentialsAll bool
|
||||
forceUpdate bool
|
||||
allowDeprecatedRepos bool
|
||||
timeout time.Duration
|
||||
|
||||
certFile string
|
||||
keyFile string
|
||||
|
@ -96,6 +97,7 @@ func newRepoAddCmd(out io.Writer) *cobra.Command {
|
|||
f.BoolVar(&o.insecureSkipTLSverify, "insecure-skip-tls-verify", false, "skip tls certificate checks for the repository")
|
||||
f.BoolVar(&o.allowDeprecatedRepos, "allow-deprecated-repos", false, "by default, this command will not allow adding official repos that have been permanently deleted. This disables that behavior")
|
||||
f.BoolVar(&o.passCredentialsAll, "pass-credentials", false, "pass credentials to all domains")
|
||||
f.DurationVar(&o.timeout, "timeout", getter.DefaultHTTPTimeout*time.Second, "time to wait for the index file download to complete")
|
||||
|
||||
return cmd
|
||||
}
|
||||
|
@ -199,7 +201,7 @@ func (o *repoAddOptions) run(out io.Writer) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
r, err := repo.NewChartRepository(&c, getter.All(settings))
|
||||
r, err := repo.NewChartRepository(&c, getter.All(settings, getter.WithTimeout(o.timeout)))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
|
@ -22,6 +22,7 @@ import (
|
|||
"io"
|
||||
"slices"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
|
@ -46,6 +47,7 @@ type repoUpdateOptions struct {
|
|||
repoFile string
|
||||
repoCache string
|
||||
names []string
|
||||
timeout time.Duration
|
||||
}
|
||||
|
||||
func newRepoUpdateCmd(out io.Writer) *cobra.Command {
|
||||
|
@ -68,6 +70,9 @@ func newRepoUpdateCmd(out io.Writer) *cobra.Command {
|
|||
},
|
||||
}
|
||||
|
||||
f := cmd.Flags()
|
||||
f.DurationVar(&o.timeout, "timeout", getter.DefaultHTTPTimeout*time.Second, "time to wait for the index file download to complete")
|
||||
|
||||
return cmd
|
||||
}
|
||||
|
||||
|
@ -94,7 +99,7 @@ func (o *repoUpdateOptions) run(out io.Writer) error {
|
|||
|
||||
for _, cfg := range f.Repositories {
|
||||
if updateAllRepos || isRepoRequested(cfg.Name, o.names) {
|
||||
r, err := repo.NewChartRepository(cfg, getter.All(settings))
|
||||
r, err := repo.NewChartRepository(cfg, getter.All(settings, getter.WithTimeout(o.timeout)))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
|
@ -191,24 +191,32 @@ const (
|
|||
|
||||
var defaultOptions = []Option{WithTimeout(time.Second * DefaultHTTPTimeout)}
|
||||
|
||||
var httpProvider = Provider{
|
||||
Schemes: []string{"http", "https"},
|
||||
New: func(options ...Option) (Getter, error) {
|
||||
options = append(options, defaultOptions...)
|
||||
return NewHTTPGetter(options...)
|
||||
},
|
||||
}
|
||||
|
||||
var ociProvider = Provider{
|
||||
Schemes: []string{registry.OCIScheme},
|
||||
New: NewOCIGetter,
|
||||
func Getters(extraOpts ...Option) Providers {
|
||||
return Providers{
|
||||
Provider{
|
||||
Schemes: []string{"http", "https"},
|
||||
New: func(options ...Option) (Getter, error) {
|
||||
options = append(options, defaultOptions...)
|
||||
options = append(options, extraOpts...)
|
||||
return NewHTTPGetter(options...)
|
||||
},
|
||||
},
|
||||
Provider{
|
||||
Schemes: []string{registry.OCIScheme},
|
||||
New: func(options ...Option) (Getter, error) {
|
||||
options = append(options, defaultOptions...)
|
||||
options = append(options, extraOpts...)
|
||||
return NewOCIGetter(options...)
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
// All finds all of the registered getters as a list of Provider instances.
|
||||
// Currently, the built-in getters and the discovered plugins with downloader
|
||||
// notations are collected.
|
||||
func All(settings *cli.EnvSettings) Providers {
|
||||
result := Providers{httpProvider, ociProvider}
|
||||
func All(settings *cli.EnvSettings, opts ...Option) Providers {
|
||||
result := Getters(opts...)
|
||||
pluginDownloaders, _ := collectPlugins(settings)
|
||||
result = append(result, pluginDownloaders...)
|
||||
return result
|
||||
|
|
|
@ -17,6 +17,7 @@ package getter
|
|||
|
||||
import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"helm.sh/helm/v4/pkg/cli"
|
||||
)
|
||||
|
@ -52,6 +53,23 @@ func TestProviders(t *testing.T) {
|
|||
}
|
||||
}
|
||||
|
||||
func TestProvidersWithTimeout(t *testing.T) {
|
||||
want := time.Hour
|
||||
getters := Getters(WithTimeout(want))
|
||||
getter, err := getters.ByScheme("http")
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
client, err := getter.(*HTTPGetter).httpClient()
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
got := client.Timeout
|
||||
if got != want {
|
||||
t.Errorf("Expected %q, got %q", want, got)
|
||||
}
|
||||
}
|
||||
|
||||
func TestAll(t *testing.T) {
|
||||
env := cli.New()
|
||||
env.PluginsDirectory = pluginDir
|
||||
|
|
Loading…
Reference in New Issue