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