blob: eef28dad80c796c01218c81bef30522cee9298f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{{- if and .Values.prometheus.enabled .Values.global.rbac.create }}
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: {{ template "prometheus-operator.fullname" . }}-prometheus-config
labels:
app: {{ template "prometheus-operator.name" . }}-prometheus
{{ include "prometheus-operator.labels" . | indent 4 }}
rules:
- apiGroups:
- ""
resources:
- configmaps
verbs:
- get
{{- end}}
|