woodpecker-helm3/internal/run/config.go

17 lines
272 B
Go

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