From ec8369cfc90f375125451f7ad8093393ad63791a Mon Sep 17 00:00:00 2001 From: gitea-admin Date: Sat, 9 May 2026 18:18:59 +0000 Subject: [PATCH] chore: remove broken AI-generated Tailscale manifests --- tailscale/daemonset.yaml | 56 ---------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 tailscale/daemonset.yaml diff --git a/tailscale/daemonset.yaml b/tailscale/daemonset.yaml deleted file mode 100644 index 9f154e3..0000000 --- a/tailscale/daemonset.yaml +++ /dev/null @@ -1,56 +0,0 @@ -apiVersion: apps/v1 -kind: DaemonSet -metadata: - name: tailscaled - namespace: tailscale - labels: - app: tailscale -spec: - selector: - matchLabels: - app: tailscale - template: - metadata: - labels: - app: tailscale - spec: - hostNetwork: true - serviceAccountName: tailscale - containers: - - name: tailscale - image: tailscale/tailscale:latest - env: - - name: TS_KUBE_SECRET - value: "tailscale-auth" - - name: TS_STATE_DIR - value: "/var/lib/tailscale" - envFrom: - - secretRef: - name: tailscale-auth - volumeMounts: - - name: var-lib-tailscale - mountPath: /var/lib/tailscale - - name: tailscale-tmp - mountPath: /tmp - - name: dev-tun - mountPath: /dev/net/tun - readOnly: true - securityContext: - privileged: true - capabilities: - add: ["NET_ADMIN", "NET_RAW"] - resources: - requests: - cpu: 50m - memory: 100Mi - limits: - memory: 200Mi - volumes: - - name: var-lib-tailscale - persistentVolumeClaim: - claimName: tailscale - - name: tailscale-tmp - emptyDir: {} - - name: dev-tun - hostPath: - path: /dev/net/tun