tailscale.com/https-only: 'false' still attempts TLS termination, causing ERR_SSL_PROTOCOL_ERROR when the backend speaks plain HTTP. Replaced with tailscale.com/ports: 'http:8080' to explicitly tell the operator to serve unencrypted HTTP on this port.
19 lines
386 B
YAML
19 lines
386 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/ports: "http:8080"
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: open-webui
|
|
ports:
|
|
- port: 8080
|
|
targetPort: 8080
|
|
name: http
|