Documentation
¶
Index ¶
- Variables
- func ProhibitDst(values []ValuesReference) error
- type Chart
- type Config
- type Configs
- type PendingStrategy
- type ValuesReference
- func (v *ValuesReference) Download() error
- func (v ValuesReference) MarshalYAML() (interface{}, error)
- func (v *ValuesReference) SetUniq(dir string, name uniqname.UniqName) *ValuesReference
- func (v *ValuesReference) SetViaRelease(rel Config, dir, templater string) error
- func (v *ValuesReference) UnmarshalYAML(node *yaml.Node) error
Constants ¶
This section is empty.
Variables ¶
var ( // ErrNotFound is an error for not found release. ErrNotFound = driver.ErrReleaseNotFound // ErrFoundMultiple is an error for multiple releases found by name. ErrFoundMultiple = errors.New("found multiple releases o_0") // ErrDepFailed is an error thrown when dependency release fails. ErrDepFailed = errors.New("dependency failed") )
var ErrPendingRelease = errors.New("release is in pending status")
ErrPendingRelease is an error for fail strategy that release is in pending status.
var ErrSkipValues = errors.New("values have been skipped")
ErrSkipValues is returned when values cannot be used and are skipped.
Functions ¶
func ProhibitDst ¶ added in v0.20.2
func ProhibitDst(values []ValuesReference) error
ProhibitDst Dst now is public method. Dst needs to marshal for export. Also, dst needs to unmarshal for import from plan.
Types ¶
type Chart ¶ added in v0.12.0
type Chart struct {
action.ChartPathOptions `yaml:",inline"`
Name string `yaml:"name"`
}
Chart is structure for chart download options.
type Config ¶
type Config interface {
helper.EqualChecker[Config]
log.LoggerGetter
Uniq() uniqname.UniqName
Sync(context.Context) (*release.Release, error)
SyncDryRun(context.Context) (*release.Release, error)
AllowFailure() bool
DryRun(bool)
ChartDepsUpd() error
BuildValues(string, string) error
Uninstall(context.Context) (*release.UninstallReleaseResponse, error)
Get() (*release.Release, error)
List() (*release.Release, error)
Rollback(int) error
Status() (*release.Release, error)
Name() string
Namespace() string
Chart() Chart
DependsOn() []uniqname.UniqName
Tags() []string
Repo() string
Values() []ValuesReference
HelmWait() bool
}
Config is an interface to manage particular helm release.
type PendingStrategy ¶ added in v0.21.0
type PendingStrategy string
PendingStrategy is a type for enumerating strategies for handling pending releases.
const ( // PendingStrategyRollback rolls back pending release. PendingStrategyRollback PendingStrategy = "rollback" // PendingStrategyUninstall uninstalls pending release. PendingStrategyUninstall PendingStrategy = "uninstall" )
type ValuesReference ¶ added in v0.11.0
type ValuesReference struct {
Src string `yaml:"src"`
Dst string `yaml:"dst"`
Strict bool `yaml:"strict"`
Render bool `yaml:"render"`
}
ValuesReference is used to match source values file path and temporary.
func (*ValuesReference) Download ¶ added in v0.11.0
func (v *ValuesReference) Download() error
Download downloads values by source URL and places to destination path.
func (ValuesReference) MarshalYAML ¶ added in v0.12.0
func (v ValuesReference) MarshalYAML() (interface{}, error)
MarshalYAML is used to implement Marshaler interface of gopkg.in/yaml.v3.
func (*ValuesReference) SetUniq ¶ added in v0.12.5
func (v *ValuesReference) SetUniq(dir string, name uniqname.UniqName) *ValuesReference
SetUniq generates unique file path based on provided base directory, release uniqname and sha1 of source path.
func (*ValuesReference) SetViaRelease ¶ added in v0.12.0
func (v *ValuesReference) SetViaRelease(rel Config, dir, templater string) error
SetViaRelease downloads and templates values file. Returns ErrSkipValues if values cannot be downloaded or doesn't exist in local FS.
func (*ValuesReference) UnmarshalYAML ¶ added in v0.11.0
func (v *ValuesReference) UnmarshalYAML(node *yaml.Node) error
UnmarshalYAML is used to implement Unmarshaler interface of gopkg.in/yaml.v3.