mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
809 B
23 lines
809 B
package helm
|
|
|
|
const (
|
|
// ErrNotImplemented indicates that this API is not implemented.
|
|
ErrNotImplemented = Error("helm api not implemented")
|
|
// ErrInvalidSrvAddr indicates an invalid address to the Tiller server.
|
|
ErrInvalidSrvAddr = Error("invalid tiller address")
|
|
// ErrMissingTpls indicates that the templates are missing from a chart.
|
|
ErrMissingTpls = Error("missing chart templates")
|
|
// ErrMissingChart indicates that the Chart.yaml data is missing.
|
|
ErrMissingChart = Error("missing chart metadata")
|
|
// ErrMissingValues indicates that the config values.toml data is missing.
|
|
ErrMissingValues = Error("missing chart values")
|
|
)
|
|
|
|
// Error represents a Helm client error.
|
|
type Error string
|
|
|
|
// Error returns a string representation of this error.
|
|
func (e Error) Error() string {
|
|
return string(e)
|
|
}
|