add support to expose via NodePort for vault, argoCD and Grafana

This commit is contained in:
2024-04-29 10:36:30 +03:00
parent 6aac54a915
commit d78b71fb1f
6 changed files with 32 additions and 14 deletions

View File

@@ -9,9 +9,11 @@ type Cicd struct {
Autoscaling bool `yaml:"autoscaling"`
} `yaml:"ha"`
Expose struct {
Type string `yaml:"type"`
Domain string `yaml:"domain"`
Tls struct {
Type string `yaml:"type"`
Domain string `yaml:"domain"`
NodePortHttp int `yaml:"node_port_http" env-default:"30005"`
NodePortHttps int `yaml:"node_port_https" env-default:"30006"`
Tls struct {
Enabled bool `yaml:"enabled"`
} `yaml:"tls"`
} `yaml:"expose"`