open-webui/kubernetes/helm/templates/webui-ingress.yaml

25 lines
574 B
YAML
Raw Normal View History

2023-12-28 01:49:51 +01:00
{{- if .Values.webui.ingress.enabled }}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
2024-02-19 21:58:25 +01:00
name: {{ include "open-webui.name" . }}
2024-02-19 22:23:36 +01:00
labels:
{{- include "open-webui.labels" . | nindent 4 }}
2024-02-19 23:22:10 +01:00
{{- with .Values.webui.ingress.annotations }}
2023-12-28 01:49:51 +01:00
annotations:
2024-02-19 22:23:36 +01:00
{{- toYaml . | nindent 4 }}
2024-02-19 23:22:10 +01:00
{{- end }}
spec:
rules:
- host: {{ .Values.webui.ingress.host }}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: {{ include "open-webui.name" . }}
port:
2024-02-19 23:32:50 +01:00
name: http
2023-12-28 01:49:51 +01:00
{{- end }}