helmfile/helmexec/helmexec.go

13 lines
279 B
Go

package helmexec
type Interface interface {
SetExtraArgs(args ...string)
AddRepo(name, repository string) error
UpdateRepo() error
SyncChart(name, chart string, flags ...string) error
DiffChart(name, chart string, flags ...string) error
DeleteChart(name string) error
}