Created
October 30, 2019 18:22
-
-
Save zimmertr/13fd094ca7abfdadc568a08be6069758 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
kind: ClusterRole | |
metadata: | |
name: grafana-prometheus-scraper | |
rules: | |
- apiGroups: [""] | |
resources: | |
- configmaps | |
- secrets | |
- nodes | |
- pods | |
- services | |
- resourcequotas | |
- replicationcontrollers | |
- limitranges | |
- persistentvolumeclaims | |
- persistentvolumes | |
- namespaces | |
- endpoints | |
- nodes/proxy | |
- nodes/metrics | |
verbs: ["list", "watch"] | |
- apiGroups: ["extensions"] | |
resources: | |
- daemonsets | |
- deployments | |
- replicasets | |
- ingresses | |
verbs: ["list", "watch"] | |
- apiGroups: ["apps"] | |
resources: | |
- daemonsets | |
- deployments | |
- replicasets | |
- statefulsets | |
verbs: ["list", "watch"] | |
- apiGroups: ["batch"] | |
resources: | |
- cronjobs | |
- jobs | |
verbs: ["list", "watch"] | |
- apiGroups: ["autoscaling"] | |
resources: | |
- horizontalpodautoscalers | |
verbs: ["list", "watch"] | |
- apiGroups: ["policy"] | |
resources: | |
- poddisruptionbudgets | |
verbs: ["list", "watch"] | |
- apiGroups: ["certificates.k8s.io"] | |
resources: | |
- certificatesigningrequests | |
verbs: ["list", "watch"] | |
- apiGroups: ["storage.k8s.io"] | |
resources: | |
- storageclasses | |
verbs: ["list", "watch"] | |
- apiGroups: ["autoscaling.k8s.io"] | |
resources: | |
- verticalpodautoscalers | |
verbs: ["list", "watch"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment