From 781496c02f0c021cc447c1f575c9144a4ca44ceb Mon Sep 17 00:00:00 2001 From: gitea-admin Date: Fri, 15 May 2026 01:59:57 +0000 Subject: [PATCH] chore: remove duplicate tailscale-operator dir, consolidated into deployments/tailscale/operator/ --- deployments/tailscale-operator/rbac.yaml | 33 ------------------------ 1 file changed, 33 deletions(-) delete mode 100644 deployments/tailscale-operator/rbac.yaml diff --git a/deployments/tailscale-operator/rbac.yaml b/deployments/tailscale-operator/rbac.yaml deleted file mode 100644 index ac2a657..0000000 --- a/deployments/tailscale-operator/rbac.yaml +++ /dev/null @@ -1,33 +0,0 @@ -apiVersion: v1 -kind: ServiceAccount -metadata: - name: tailscale-operator - namespace: tailscale ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: ClusterRole -metadata: - name: tailscale-operator -rules: - - apiGroups: [""] - resources: ["secrets", "services", "endpoints", "namespaces", "nodes"] - verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] - - apiGroups: ["apps"] - resources: ["deployments", "statefulsets", "daemonsets"] - verbs: ["get", "list", "watch", "update", "patch"] - - apiGroups: ["tailscale.com"] - resources: ["*"] - verbs: ["*"] ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: ClusterRoleBinding -metadata: - name: tailscale-operator -roleRef: - apiGroup: rbac.authorization.k8s.io - kind: ClusterRole - name: tailscale-operator -subjects: - - kind: ServiceAccount - name: tailscale-operator - namespace: tailscale