mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 23:09:41 +02:00
18 lines
445 B
Go
18 lines
445 B
Go
package options
|
|
|
|
import "time"
|
|
|
|
type InstallOptions struct {
|
|
Name string
|
|
Chart string
|
|
Namespace string
|
|
Repo string
|
|
Wait bool
|
|
ValuesFile string
|
|
PostRenderer string
|
|
Timeout time.Duration
|
|
KubernetesClusterAccess *KubernetesClusterAccess
|
|
|
|
// Optional environment vars to pass when running helm
|
|
Env []string
|
|
}
|