You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/pkg/libhelm/options/install_options.go

16 lines
391 B

package options
type InstallOptions struct {
Name string
Chart string
Namespace string
Repo string
Wait bool
ValuesFile string
PostRenderer string
KubernetesClusterAccess *KubernetesClusterAccess
// Optional environment vars to pass when running helm
Env []string
}