Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func IsMissingDependencyErr ¶ added in v0.11.0
IsMissingDependencyErr tests if the error is related to a missing chart dependency
Types ¶
type Client ¶
type Cmd ¶
type Cmd struct { WorkDir string // contains filtered or unexported fields }
A thin wrapper around the "helm" command, adding logging and error translation.
func (*Cmd) RepoUpdate ¶
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 ¶
func NewHelmApp(workDir string, repos []HelmRepository) (Helm, error)
NewHelmApp create a new wrapper to run commands on the `helm` command-line tool.
type HelmRepository ¶
Click to show internal directories.
Click to hide internal directories.