From a1e399c4bda5be5044ae661616a303f6b162c520 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 --- deployments/tailscale/operator/clusterrole.yaml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 deployments/tailscale/operator/clusterrole.yaml diff --git a/deployments/tailscale/operator/clusterrole.yaml b/deployments/tailscale/operator/clusterrole.yaml deleted file mode 100644 index a7782e3..0000000 --- a/deployments/tailscale/operator/clusterrole.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: rbac.authorization.k8s.io/v1 -kind: ClusterRole -metadata: - name: tailscale-operator -rules: - - apiGroups: [""] - resources: ["secrets", "configmaps", "services", "pods", "endpoints"] - verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] - - apiGroups: ["apps"] - resources: ["deployments", "statefulsets", "daemonsets"] - verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] - - apiGroups: ["networking.k8s.io"] - resources: ["ingresses"] - verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] - - apiGroups: ["tailscale.com"] - resources: ["*"] - verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]