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.
17 lines
403 B
17 lines
403 B
package helm
|
|
|
|
const (
|
|
errNotImplemented = Error("helm api not implemented")
|
|
errMissingSrvAddr = Error("missing tiller address")
|
|
errMissingTpls = Error("missing chart templates")
|
|
errMissingChart = Error("missing chart metadata")
|
|
errMissingValues = Error("missing chart values")
|
|
)
|
|
|
|
// Error represents a Helm client error.
|
|
type Error string
|
|
|
|
func (e Error) Error() string {
|
|
return string(e)
|
|
}
|