diff options
Diffstat (limited to 'apps/heimdall')
| -rw-r--r-- | apps/heimdall/templates/ingress.yaml | 11 | ||||
| -rw-r--r-- | apps/heimdall/values.yaml | 1 |
2 files changed, 12 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 }} diff --git a/apps/heimdall/values.yaml b/apps/heimdall/values.yaml index 72a6338..db99c80 100644 --- a/apps/heimdall/values.yaml +++ b/apps/heimdall/values.yaml @@ -18,6 +18,7 @@ ingress: enabled: true className: nginx host: heimdall.local + defaultHomepage: true persistence: enabled: true |
