Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ChartValidFiles specifies accepted Helm chart metadata filename ChartValidFiles [2]string = [2]string{"Chart.yaml", "Chart.yml"} )
Functions ¶
This section is empty.
Types ¶
type Helm ¶
type Helm struct {
// contains filtered or unexported fields
}
Helm hold all information needed to generate helm manifest.
func (Helm) DiscoverManifests ¶
type MatchingRule ¶
type MatchingRule struct {
// Path specifies a Helm chart path pattern, the pattern requires to match all of name, not just a subpart of the path.
Path string
}
MatchingRule allows to specifies rules to identify manifest
type MatchingRules ¶
type MatchingRules []MatchingRule
type Spec ¶
type Spec struct {
// rootdir defines the root directory used to recursively search for Helm Chart
RootDir string `yaml:",omitempty"`
// Ignore specifies rule to ignore Helm chart update.
Ignore MatchingRules `yaml:",omitempty"`
// Only specify required rule to restrict Helm chart update.
Only MatchingRules `yaml:",omitempty"`
// Auths provides a map of registry credentials where the key is the registry URL without scheme
Auths map[string]docker.InlineKeyChain `yaml:",omitempty"`
}
Spec defines the Helm parameters.
Click to show internal directories.
Click to hide internal directories.