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