2022-12-01 14:27:49 +13:00
|
|
|
package options
|
|
|
|
|
2025-03-26 11:32:26 +13:00
|
|
|
import "time"
|
|
|
|
|
2022-12-01 14:27:49 +13:00
|
|
|
type InstallOptions struct {
|
|
|
|
Name string
|
|
|
|
Chart string
|
2025-05-13 22:15:04 +12:00
|
|
|
Version string
|
2022-12-01 14:27:49 +13:00
|
|
|
Namespace string
|
|
|
|
Repo string
|
|
|
|
Wait bool
|
|
|
|
ValuesFile string
|
|
|
|
PostRenderer string
|
2025-05-14 16:31:42 +12:00
|
|
|
Atomic bool
|
2025-03-26 11:32:26 +13:00
|
|
|
Timeout time.Duration
|
2022-12-01 14:27:49 +13:00
|
|
|
KubernetesClusterAccess *KubernetesClusterAccess
|
2023-04-14 14:50:37 +12:00
|
|
|
|
|
|
|
// Optional environment vars to pass when running helm
|
|
|
|
Env []string
|
2022-12-01 14:27:49 +13:00
|
|
|
}
|