github.com/argoproj/argo-events@v1.9.1/manifests/extensions/validating-webhook/rbac/argo-events-webhook-cluster-role.yaml (about) 1 apiVersion: rbac.authorization.k8s.io/v1 2 kind: ClusterRole 3 metadata: 4 name: argo-events-webhook 5 rules: 6 - apiGroups: 7 - "" 8 resources: 9 - secrets 10 verbs: 11 - get 12 - list 13 - create 14 - update 15 - delete 16 - patch 17 - watch 18 - apiGroups: 19 - "" 20 resources: 21 - configmaps 22 verbs: 23 - get 24 - list 25 - watch 26 - apiGroups: 27 - apps 28 resources: 29 - deployments 30 verbs: 31 - get 32 - list 33 - apiGroups: 34 - admissionregistration.k8s.io 35 resources: 36 - validatingwebhookconfigurations 37 verbs: 38 - get 39 - list 40 - create 41 - update 42 - delete 43 - patch 44 - watch 45 - apiGroups: 46 - argoproj.io 47 verbs: 48 - get 49 - list 50 - watch 51 resources: 52 - eventbus 53 - eventsources 54 - sensors 55 - apiGroups: 56 - rbac.authorization.k8s.io 57 resources: 58 - clusterroles 59 verbs: 60 - get 61 - list