woodpecker-helm3/internal/run/config.go

19 lines
314 B
Go
Raw Normal View History

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
}