Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Helm ¶
type Helm interface { // Template returns a list of unstructured objects from a `helm template` command Template(name, namespace string, valuesFiles []string, overrides []*argoappv1.ComponentParameter) ([]*unstructured.Unstructured, error) // GetParameters returns a list of chart parameters taking into account values in provided YAML files. GetParameters(valuesFiles []string) ([]*argoappv1.ComponentParameter, error) // DependencyBuild runs `helm dependency build` to download a chart's dependencies DependencyBuild() error // SetHome sets the helm home location (default "~/.helm") SetHome(path string) // Init runs `helm init --client-only` Init() error }
Helm provides wrapper functionality around the `helm` command.
func NewHelmApp ¶
NewHelmApp create a new wrapper to run commands on the `helm` command-line tool.
Click to show internal directories.
Click to hide internal directories.