woodpecker-helm3/internal/run/config.go
Erin Call 6d28b7b28a
Return an error on unknown commands [#15]
I'm probably overthinking this--explicitly calling help is a strange and
unusual case--but it doesn't really hurt, so I'm going for it.
2019-12-26 11:29:33 -08:00

19 lines
314 B
Go

package run
import (
"io"
)
// Config contains configuration applicable to all helm commands
type Config struct {
HelmCommand string
Debug bool
KubeConfig string
Values string
StringValues string
ValuesFiles []string
Namespace string
Stdout io.Writer
Stderr io.Writer
}