rancher-charts/charts/rancher-project-monitoring/0.1.0/templates/prometheus/clusterrole.yaml

26 lines
762 B
YAML

{{- if and .Values.prometheus.enabled .Values.global.rbac.create }}
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: {{ template "project-prometheus-stack.fullname" . }}-prometheus
labels:
app: {{ template "project-prometheus-stack.name" . }}-prometheus
{{ include "project-prometheus-stack.labels" . | indent 4 }}
rules:
# This permission are not in the kube-prometheus repo
# they're grabbed from https://github.com/prometheus/prometheus/blob/master/documentation/examples/rbac-setup.yml
- apiGroups: [""]
resources:
- nodes
- nodes/metrics
- services
- endpoints
- pods
verbs: ["get", "list", "watch"]
- apiGroups:
- "networking.k8s.io"
resources:
- ingresses
verbs: ["get", "list", "watch"]
{{- end }}