mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 08:56:39 +00:00
23 lines
563 B
YAML
23 lines
563 B
YAML
{{- if .Values.webui.ingress.enabled }}
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: {{ include "open-webui.name" . }}
|
|
{{- if .Values.webui.ingress.annotations }}
|
|
annotations:
|
|
{{ toYaml .Values.webui.ingress.annotations | trimSuffix "\n" | indent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
rules:
|
|
- host: {{ .Values.webui.ingress.host }}
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: open-webui-service
|
|
port:
|
|
number: {{ .Values.webui.servicePort }}
|
|
{{- end }}
|