Update k8s/apps/n8n/rbac.yaml
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 6s

This commit is contained in:
ab
2026-02-06 15:46:46 +00:00
parent cacc5ef02b
commit a2f4f989e7

View File

@@ -9,19 +9,27 @@ kind: ClusterRole
metadata: metadata:
name: n8n-clusterrole name: n8n-clusterrole
rules: rules:
- apiGroups: # Core API group ("")
- "" - apiGroups: [""]
resources: resources: ["*"]
- pods verbs: ["get", "list", "watch"]
- jobs
- cronjobs # Common built-in API groups
- deployments - apiGroups: ["apps", "batch", "autoscaling", "extensions", "policy"]
- statefulsets resources: ["*"]
verbs: verbs: ["get", "list", "watch"]
- get
- list - apiGroups: ["networking.k8s.io", "rbac.authorization.k8s.io", "apiextensions.k8s.io"]
- watch resources: ["*"]
- create verbs: ["get", "list", "watch"]
- apiGroups: ["coordination.k8s.io", "discovery.k8s.io", "events.k8s.io"]
resources: ["*"]
verbs: ["get", "list", "watch"]
- apiGroups: ["storage.k8s.io", "admissionregistration.k8s.io", "authentication.k8s.io", "authorization.k8s.io"]
resources: ["*"]
verbs: ["get", "list", "watch"]
--- ---
apiVersion: rbac.authorization.k8s.io/v1 apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding kind: ClusterRoleBinding