gcloud-lab/apps/base/customer1/hermes-agent/open-webui-service.yaml
Hermes Agent 72866d0044 fix: force plain HTTP on hermes-webui Tailscale proxy
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.
2026-05-06 18:50:09 +00:00

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