Documentation
¶
Index ¶
- Variables
- func IsHelmOciChart(chart string) bool
- func IsMissingDependencyErr(err error) bool
- func IsVersion(text string) bool
- func Version(shortForm bool) (string, error)
- type Client
- type Cmd
- func (c *Cmd) ChartExport(repo string, chartName string, version string, destination string) (string, error)
- func (c *Cmd) ChartPull(repo string, chart string, version string) (string, error)
- func (c *Cmd) Close()
- func (c *Cmd) Fetch(repo, chartName, version, destination string, creds Creds) (string, error)
- func (c *Cmd) Init() (string, error)
- func (c *Cmd) Login(repo string, creds Creds) (string, error)
- func (c *Cmd) Logout(repo string, creds Creds) (string, error)
- func (c *Cmd) RepoAdd(name string, url string, opts Creds) (string, error)
- type Creds
- type Entries
- type Entry
- type Helm
- type HelmRepository
- type HelmVer
- type Index
- type TemplateOpts
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // HelmV2 represents helm V2 specific settings HelmV2 = HelmVer{ // contains filtered or unexported fields } // HelmV3 represents helm V3 specific settings HelmV3 = HelmVer{ // contains filtered or unexported fields } )
Functions ¶
func IsHelmOciChart ¶ added in v1.8.2
Only OCI registries support storing charts under sub-directories.
func IsMissingDependencyErr ¶ added in v0.11.0
IsMissingDependencyErr tests if the error is related to a missing chart dependency
Types ¶
type Client ¶ added in v1.2.4
type Cmd ¶ added in v1.2.4
type Cmd struct {
HelmVer
WorkDir string
IsLocal bool
IsHelmOci bool
// contains filtered or unexported fields
}
A thin wrapper around the "helm" command, adding logging and error translation.
func NewCmdWithVersion ¶ added in v1.5.0
func (*Cmd) ChartExport ¶ added in v1.8.2
type Helm ¶
type Helm interface {
// Template returns a list of unstructured objects from a `helm template` command
Template(opts *TemplateOpts) (string, error)
// GetParameters returns a list of chart parameters taking into account values in provided YAML files.
GetParameters(valuesFiles []string) (map[string]string, error)
// DependencyBuild runs `helm dependency build` to download a chart's dependencies
DependencyBuild() error
// Init runs `helm init --client-only`
Init() error
// Dispose deletes temp resources
Dispose()
}
Helm provides wrapper functionality around the `helm` command.
func NewHelmApp ¶
NewHelmApp create a new wrapper to run commands on the `helm` command-line tool.
type HelmRepository ¶ added in v1.2.4
type HelmVer ¶ added in v1.5.0
type HelmVer struct {
// contains filtered or unexported fields
}
HelmVer contains Helm version specific settings such as helm binary and command names
Click to show internal directories.
Click to hide internal directories.