Documentation
¶
Overview ¶
Package getter provides a generalize tool for fetching data by scheme.
This provides a method by which the plugin system can load arbitrary protocol handlers based upon a URL scheme.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Constructor ¶
type Constructor func(URL, CertFile, KeyFile, CAFile string) (Getter, error)
Constructor is the function for every getter which creates a specific instance according to the configuration
type Getter ¶
type Getter interface {
//Get file content by url string
Get(url string) (*bytes.Buffer, error)
}
Getter is an interface to support GET to the specified URL.
type HttpGetter ¶
type HttpGetter struct {
// contains filtered or unexported fields
}
HttpGetter is the efault HTTP(/S) backend handler TODO: change the name to HTTPGetter in Helm 3
func NewHTTPGetter ¶
func NewHTTPGetter(URL, CertFile, KeyFile, CAFile string) (*HttpGetter, error)
NewHTTPGetter constructs a valid http/https client as HttpGetter
func (*HttpGetter) Get ¶
func (g *HttpGetter) Get(href string) (*bytes.Buffer, error)
Get performs a Get from repo.Getter and returns the body.
func (*HttpGetter) SetCredentials ¶
func (g *HttpGetter) SetCredentials(username, password string)
SetCredentials sets the credentials for the getter
type Provider ¶
type Provider struct {
Schemes []string
New Constructor
}
Provider represents any getter and the schemes that it supports.
For example, an HTTP provider may provide one getter that handles both 'http' and 'https' schemes.
type Providers ¶
type Providers []Provider
Providers is a collection of Provider objects.