open-webui/kubernetes/helm/templates/webui-service.yaml
2024-02-19 21:58:25 +01:00

14 lines
453 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "open-webui.name" . }}
spec:
type: {{ .Values.webui.service.type }} # Default: NodePort # Use LoadBalancer if you're on a cloud that supports it
selector:
app: open-webui
ports:
- protocol: TCP
port: {{ .Values.webui.servicePort }}
targetPort: {{ .Values.webui.servicePort }}
# If using NodePort, you can optionally specify the nodePort:
# nodePort: 30000