2023-12-24 15:34:33 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
2024-02-19 20:58:25 +00:00
|
|
|
name: {{ include "open-webui.name" . }}
|
2023-12-24 15:34:33 +00:00
|
|
|
spec:
|
2023-12-28 15:28:09 +00:00
|
|
|
type: {{ .Values.webui.service.type }} # Default: NodePort # Use LoadBalancer if you're on a cloud that supports it
|
2023-12-24 15:34:33 +00:00
|
|
|
selector:
|
2024-02-17 20:18:21 +00:00
|
|
|
app: open-webui
|
2023-12-24 15:34:33 +00:00
|
|
|
ports:
|
|
|
|
- protocol: TCP
|
|
|
|
port: {{ .Values.webui.servicePort }}
|
|
|
|
targetPort: {{ .Values.webui.servicePort }}
|
|
|
|
# If using NodePort, you can optionally specify the nodePort:
|
2024-02-19 20:49:30 +00:00
|
|
|
# nodePort: 30000
|