mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-06 06:53:25 +00:00
12 lines
312 B
Go
12 lines
312 B
Go
package configStructs
|
|
|
|
const (
|
|
OutInstallName = "out"
|
|
)
|
|
|
|
type InstallConfig struct {
|
|
TemplateUrl string `yaml:"template-url" default:"https://storage.googleapis.com/static.up9.io/mizu/helm-template"`
|
|
TemplateName string `yaml:"template-name" default:"helm-template.yaml"`
|
|
Out bool `yaml:"out"`
|
|
}
|