From dcae162d0fd092eebb68a49c0e8eb12f337bbb62 Mon Sep 17 00:00:00 2001 From: gitea-admin Date: Sat, 9 May 2026 17:29:19 +0000 Subject: [PATCH] feat: deploy Tailscale Operator for secure cluster access --- infra/tailscale/deployment.yaml | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 infra/tailscale/deployment.yaml diff --git a/infra/tailscale/deployment.yaml b/infra/tailscale/deployment.yaml new file mode 100644 index 0000000..b5b4a9a --- /dev/null +++ b/infra/tailscale/deployment.yaml @@ -0,0 +1,34 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: tailscale-operator + namespace: tailscale + labels: + app.kubernetes.io/name: tailscale-operator +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: tailscale-operator + template: + metadata: + labels: + app.kubernetes.io/name: tailscale-operator + spec: + serviceAccountName: tailscale-operator + containers: + - name: operator + image: ghcr.io/tailscale/kubernetes-operator:v1.70.1 + env: + - name: TS_AUTH_KEY + valueFrom: + secretKeyRef: + name: tailscale-auth + key: TS_AUTH_KEY + resources: + requests: + cpu: 50m + memory: 64Mi + limits: + cpu: 100m + memory: 128Mi \ No newline at end of file