40 lines
788 B
YAML
40 lines
788 B
YAML
|
{{ if .Values.global.prometheus.enabled }}
|
||
|
{{- if and .Values.prometheus.server.enabled .Values.prometheus.rbac.create -}}
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
kind: ClusterRole
|
||
|
metadata:
|
||
|
labels:
|
||
|
{{- include "prometheus.server.labels" . | nindent 4 }}
|
||
|
name: {{ template "prometheus.server.fullname" . }}
|
||
|
rules:
|
||
|
- apiGroups:
|
||
|
- ""
|
||
|
resources:
|
||
|
- nodes
|
||
|
- nodes/proxy
|
||
|
- nodes/metrics
|
||
|
- services
|
||
|
- endpoints
|
||
|
- pods
|
||
|
- ingresses
|
||
|
- configmaps
|
||
|
verbs:
|
||
|
- get
|
||
|
- list
|
||
|
- watch
|
||
|
- apiGroups:
|
||
|
- networking.k8s.io
|
||
|
resources:
|
||
|
- ingresses/status
|
||
|
- ingresses
|
||
|
verbs:
|
||
|
- get
|
||
|
- list
|
||
|
- watch
|
||
|
- nonResourceURLs:
|
||
|
- "/metrics"
|
||
|
verbs:
|
||
|
- get
|
||
|
{{- end }}
|
||
|
{{ end }}
|