mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 08:56:39 +00:00
21 lines
489 B
YAML
21 lines
489 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: ollama-webui-ingress
|
|
namespace: open-webui
|
|
#annotations:
|
|
# Use appropriate annotations for your Ingress controller, e.g., for NGINX:
|
|
# nginx.ingress.kubernetes.io/rewrite-target: /
|
|
spec:
|
|
rules:
|
|
- host: ollama.minikube.local
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: ollama-webui-service
|
|
port:
|
|
number: 8080
|