From 5f4be0a66830cff39059a07f4e36c38d614a46c0 Mon Sep 17 00:00:00 2001 From: gitea-admin Date: Sun, 17 May 2026 22:29:11 +0000 Subject: [PATCH] restructure: move tailscale into namespace folder --- .../tailscale/operator/deployment.yaml | 43 ------------------- 1 file changed, 43 deletions(-) delete mode 100644 deployments/tailscale/operator/deployment.yaml diff --git a/deployments/tailscale/operator/deployment.yaml b/deployments/tailscale/operator/deployment.yaml deleted file mode 100644 index 7e0d039..0000000 --- a/deployments/tailscale/operator/deployment.yaml +++ /dev/null @@ -1,43 +0,0 @@ -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/k8s-operator:v1.78.3 - imagePullPolicy: IfNotPresent - env: - - name: POD_NAME - valueFrom: - fieldRef: - fieldPath: metadata.name - - name: POD_NAMESPACE - valueFrom: - fieldRef: - fieldPath: metadata.namespace - - name: CLIENT_ID_FILE - value: /etc/tailscale/oauth/client-id - - name: CLIENT_SECRET_FILE - value: /etc/tailscale/oauth/client-secret - volumeMounts: - - name: oauth-secret - mountPath: /etc/tailscale/oauth - readOnly: true - volumes: - - name: oauth-secret - secret: - secretName: tailscale-operator-secret