Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Bridge ¶
type Bridge struct {
// contains filtered or unexported fields
}
Bridge represents a helm client and open conn to tiller
type Chart ¶
type Chart struct {
Name string `yaml:"name"` // name of chart
Repo string `yaml:"repo"` // chart repo
Version string `yaml:"version"` // chart version
Release string `yaml:"release"` // release name
Timeout int64 `yaml:"timeout"` // install / upgrade wait time
Namespace string `yaml:"namespace"` // namespace
Abandon bool `yaml:"abandon"` // install only
Values string `yaml:"values"` // chart specific values
Requires []string `yaml:"requires"` // env requirements
Depends []string `yaml:"depends"` // dependencies
Jobs Jobs `yaml:"jobs"` // bash jobs
Templates []string `yaml:"templates"` // templates
}
Chart represents a single stage of the deployment pipeline.
Click to show internal directories.
Click to hide internal directories.