From b3527c2b16bbcc1052449ee1633e869512c5ea7e Mon Sep 17 00:00:00 2001 From: gitea-admin Date: Sat, 9 May 2026 19:03:18 +0000 Subject: [PATCH] feat: deploy Tailscale Operator for remote cluster access --- tailscale/service.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tailscale/service.yaml diff --git a/tailscale/service.yaml b/tailscale/service.yaml new file mode 100644 index 0000000..d31be8f --- /dev/null +++ b/tailscale/service.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: Service +metadata: + name: tailscale-operator + namespace: tailscale + labels: + app.kubernetes.io/name: tailscale + app.kubernetes.io/component: operator +spec: + type: ClusterIP + ports: + - name: metrics + port: 8080 + targetPort: 8080 + protocol: TCP + selector: + app.kubernetes.io/name: tailscale + app.kubernetes.io/component: operator