chore(ingress): Allow tls activation

This commit is contained in:
2024-11-08 15:51:36 +01:00
parent 8ab1763902
commit 9358076a36
3 changed files with 38 additions and 0 deletions

View File

@@ -27,6 +27,9 @@ type IngressValue struct {
Path string `yaml:"path"`
Class string `yaml:"class"`
Enabled bool `yaml:"enabled"`
TLS struct {
Enabled bool `yaml:"enabled"`
} `yaml:"tls"`
}
// Value will be saved in values.yaml. It contains configuraiton for all deployment and services.