2023-12-24 15:34:33 +00:00
|
|
|
apiVersion: networking.k8s.io/v1
|
|
|
|
kind: Ingress
|
|
|
|
metadata:
|
2024-02-17 20:54:12 +00:00
|
|
|
name: open-webui-ingress
|
2024-02-17 13:18:45 +00:00
|
|
|
namespace: open-webui
|
2023-12-24 15:34:33 +00:00
|
|
|
#annotations:
|
|
|
|
# Use appropriate annotations for your Ingress controller, e.g., for NGINX:
|
|
|
|
# nginx.ingress.kubernetes.io/rewrite-target: /
|
|
|
|
spec:
|
|
|
|
rules:
|
2024-02-17 20:18:21 +00:00
|
|
|
- host: open-webui.minikube.local
|
2023-12-24 15:34:33 +00:00
|
|
|
http:
|
|
|
|
paths:
|
|
|
|
- path: /
|
|
|
|
pathType: Prefix
|
|
|
|
backend:
|
|
|
|
service:
|
2024-02-17 20:54:12 +00:00
|
|
|
name: open-webui-service
|
2023-12-24 15:34:33 +00:00
|
|
|
port:
|
|
|
|
number: 8080
|