woodpecker-helm3/internal/run/config.go

18 lines
293 B
Go

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