mirror of
https://github.com/pelotech/drone-helm3.git
synced 2026-06-14 14:02:54 +08:00
4330728215
This is just something that's been bugging me for a while--they're specific to Lint and Upgrade, so that's where they belong.
14 lines
195 B
Go
14 lines
195 B
Go
package run
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// Config contains configuration applicable to all helm commands
|
|
type Config struct {
|
|
Debug bool
|
|
Namespace string
|
|
Stdout io.Writer
|
|
Stderr io.Writer
|
|
}
|