summaryrefslogtreecommitdiff
path: root/apps/heimdall/templates/ingress.yaml
diff options
context:
space:
mode:
authorR-man3000 <rasmus.luha@gmail.com>2026-05-31 23:33:55 +0300
committerR-man3000 <rasmus.luha@gmail.com>2026-05-31 23:33:55 +0300
commit67a4a03569d6545b18bc9f1d598e45e5a1b44d6c (patch)
treee80ad706950c46dde3cd9bcef65e204f108efe6c /apps/heimdall/templates/ingress.yaml
parent92a6fe3322c86c290a0f50cca9255fcb82e42e72 (diff)
update heimdall ingress to open heimdall at localhostHEADmaster
Diffstat (limited to 'apps/heimdall/templates/ingress.yaml')
-rw-r--r--apps/heimdall/templates/ingress.yaml11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/heimdall/templates/ingress.yaml b/apps/heimdall/templates/ingress.yaml
index cd07205..74c522c 100644
--- a/apps/heimdall/templates/ingress.yaml
+++ b/apps/heimdall/templates/ingress.yaml
@@ -19,4 +19,15 @@ spec:
name: {{ include "heimdall.name" . }}-service
port:
number: {{ .Values.service.port }}
+ {{- if .Values.ingress.defaultHomepage }}
+ - http:
+ paths:
+ - path: /
+ pathType: Prefix
+ backend:
+ service:
+ name: {{ include "heimdall.name" . }}-service
+ port:
+ number: {{ .Values.service.port }}
+ {{- end }}
{{- end }}