helm

package
v0.11.0-rc4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 4, 2019 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsMissingDependencyErr added in v0.11.0

func IsMissingDependencyErr(err error) bool

IsMissingDependencyErr tests if the error is related to a missing chart dependency

Types

type Helm

type Helm interface {
	// Template returns a list of unstructured objects from a `helm template` command
	Template(appName string, opts HelmTemplateOpts, 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

func NewHelmApp(path string, helmRepos []*argoappv1.HelmRepository) Helm

NewHelmApp create a new wrapper to run commands on the `helm` command-line tool.

type HelmTemplateOpts added in v0.11.0

type HelmTemplateOpts struct {
	// Values is list of multiple --values flag
	ValueFiles []string
	// Namespace maps to the --namespace flag
	Namespace string
}

HelmTemplateOpts are various options to send to a `helm template` command

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL