From fa47a7f745786d13d5a24eca6973a34ac1c77da9 Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 3 May 2026 13:01:14 +0200 Subject: [PATCH] feat: add tailscale service for openclaw --- clusters/homelab/apps/openclaw/kustomization.yaml | 1 + .../homelab/apps/openclaw/tailscale-service.yaml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 clusters/homelab/apps/openclaw/tailscale-service.yaml diff --git a/clusters/homelab/apps/openclaw/kustomization.yaml b/clusters/homelab/apps/openclaw/kustomization.yaml index e0a4fbf..734f1cd 100644 --- a/clusters/homelab/apps/openclaw/kustomization.yaml +++ b/clusters/homelab/apps/openclaw/kustomization.yaml @@ -4,4 +4,5 @@ resources: - namespace.yaml - helmrepository.yaml - helmrelease.yaml + - tailscale-service.yaml - secret.sops.yaml diff --git a/clusters/homelab/apps/openclaw/tailscale-service.yaml b/clusters/homelab/apps/openclaw/tailscale-service.yaml new file mode 100644 index 0000000..6c6f2b5 --- /dev/null +++ b/clusters/homelab/apps/openclaw/tailscale-service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: openclaw-tailscale + namespace: openclaw + annotations: + tailscale.com/expose: "true" + tailscale.com/hostname: "openclaw" +spec: + selector: + app.kubernetes.io/name: openclaw + ports: + - port: 18789 + targetPort: 18789 + type: ClusterIP