Tailscale defaults to HTTPS (443) but Open WebUI only serves HTTP (8080). - Add tailscale.com/https-only: "false" annotation - Now hermes-webui.tail14a963.ts.net:8080 works without SSL errors Fixes ERR_SSL_PROTOCOL_ERROR
19 lines
387 B
YAML
19 lines
387 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: open-webui-service
|
|
namespace: customer1
|
|
annotations:
|
|
tailscale.com/expose: "true"
|
|
tailscale.com/hostname: "hermes-webui"
|
|
tailscale.com/tags: "tag:k8s-operator"
|
|
tailscale.com/https-only: "false"
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: open-webui
|
|
ports:
|
|
- port: 8080
|
|
targetPort: 8080
|
|
name: http
|