webui-ingress.yaml 489 B

1234567891011121314151617181920
  1. apiVersion: networking.k8s.io/v1
  2. kind: Ingress
  3. metadata:
  4. name: open-webui-ingress
  5. namespace: open-webui
  6. #annotations:
  7. # Use appropriate annotations for your Ingress controller, e.g., for NGINX:
  8. # nginx.ingress.kubernetes.io/rewrite-target: /
  9. spec:
  10. rules:
  11. - host: open-webui.minikube.local
  12. http:
  13. paths:
  14. - path: /
  15. pathType: Prefix
  16. backend:
  17. service:
  18. name: open-webui-service
  19. port:
  20. number: 8080