Skip to content

Instantly share code, notes, and snippets.

@richarddli
Created January 4, 2018 21:38
Show Gist options
  • Save richarddli/6b564ca785daf104b9a38c6f36e64251 to your computer and use it in GitHub Desktop.
Save richarddli/6b564ca785daf104b9a38c6f36e64251 to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: ServiceAccount
metadata:
name: prometheus
---
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRole
metadata:
name: prometheus
rules:
- apiGroups: [""]
resources:
- nodes
- services
- endpoints
- pods
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources:
- configmaps
verbs: ["get"]
- nonResourceURLs: ["/metrics"]
verbs: ["get"]
---
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRoleBinding
metadata:
name: prometheus
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: prometheus
subjects:
- kind: ServiceAccount
name: prometheus
namespace: default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment