From e285401341afda9b56b04386aa07225409819483 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Wed, 6 May 2026 16:00:17 +0000 Subject: [PATCH] fix: use Grafana Tailscale annotations on Open WebUI service - tailscale.com/expose: "true" - tailscale.com/hostname: "hermes-webui" - tailscale.com/tags: "tag:k8s-operator" - port: 8080 -> 8080 (match Open WebUI default) - type: ClusterIP explicit --- apps/base/customer1/hermes-agent/open-webui-service.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/base/customer1/hermes-agent/open-webui-service.yaml b/apps/base/customer1/hermes-agent/open-webui-service.yaml index a8390ad..b73df43 100644 --- a/apps/base/customer1/hermes-agent/open-webui-service.yaml +++ b/apps/base/customer1/hermes-agent/open-webui-service.yaml @@ -5,12 +5,14 @@ metadata: name: open-webui-service namespace: customer1 annotations: - tailscale.com/proxy: "true" + tailscale.com/expose: "true" tailscale.com/hostname: "hermes-webui" + tailscale.com/tags: "tag:k8s-operator" spec: + type: ClusterIP selector: app: open-webui ports: - - port: 80 + - port: 8080 targetPort: 8080 name: http