From 935906c25650174f4c2a9ee638a9305429098f43 Mon Sep 17 00:00:00 2001 From: gitea-admin Date: Fri, 15 May 2026 01:59:11 +0000 Subject: [PATCH] chore: remove files from wrong directory (ArgoCD does not watch this path) --- tailscale/rbac.yaml | 48 --------------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 tailscale/rbac.yaml diff --git a/tailscale/rbac.yaml b/tailscale/rbac.yaml deleted file mode 100644 index 8712bbd..0000000 --- a/tailscale/rbac.yaml +++ /dev/null @@ -1,48 +0,0 @@ -apiVersion: v1 -kind: ServiceAccount -metadata: - name: tailscale-operator - namespace: tailscale - labels: - app.kubernetes.io/name: tailscale - app.kubernetes.io/component: operator ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: ClusterRole -metadata: - name: tailscale-operator - labels: - app.kubernetes.io/name: tailscale - app.kubernetes.io/component: operator -rules: -- apiGroups: [''] - resources: ['secrets', 'services', 'endpoints'] - verbs: ['get', 'list', 'watch', 'create', 'update', 'patch', 'delete'] -- apiGroups: [''] - resources: ['nodes'] - verbs: ['get', 'list', 'update', 'patch'] -- apiGroups: ['apps'] - resources: ['daemonsets'] - verbs: ['get', 'list', 'watch'] -- apiGroups: ['tailscale.com'] - resources: ['*'] - verbs: ['get', 'list', 'watch', 'create', 'update', 'patch', 'delete'] -- apiGroups: ['coordination.k8s.io'] - resources: ['leases'] - verbs: ['get', 'create', 'update'] ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: ClusterRoleBinding -metadata: - name: tailscale-operator - labels: - app.kubernetes.io/name: tailscale - app.kubernetes.io/component: operator -roleRef: - apiGroup: rbac.authorization.k8s.io - kind: ClusterRole - name: tailscale-operator -subjects: -- kind: ServiceAccount - name: tailscale-operator - namespace: tailscale