From ebce53f9982defb8967ced4ee0ea99074b2aeda6 Mon Sep 17 00:00:00 2001 From: gitea-admin Date: Sun, 17 May 2026 22:29:09 +0000 Subject: [PATCH] restructure: move tailscale into namespace folder --- .../tailscale/tailscale/deployment.yaml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 deployments/tailscale/tailscale/deployment.yaml diff --git a/deployments/tailscale/tailscale/deployment.yaml b/deployments/tailscale/tailscale/deployment.yaml new file mode 100644 index 0000000..a9bad8f --- /dev/null +++ b/deployments/tailscale/tailscale/deployment.yaml @@ -0,0 +1,31 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: tailscale-operator + namespace: tailscale + labels: + app: tailscale-operator +spec: + replicas: 1 + selector: + matchLabels: + app: tailscale-operator + template: + metadata: + labels: + app: tailscale-operator + spec: + serviceAccountName: tailscale-operator + containers: + - name: operator + image: ghcr.io/tailscale/operator:v1.70.0 + env: + - name: DEPLOY_TYPE + value: k8s + volumeMounts: + - name: config + mountPath: /config + volumes: + - name: config + secret: + secretName: tailscale-operator-config \ No newline at end of file