{{- if and .Values.rbac.create (not .Values.rbac.namespaced) }} kind: ClusterRole apiVersion: rbac.authorization.k8s.io/v1 metadata: labels: app: {{ template "grafana.name" . }} chart: {{ template "grafana.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} {{- with .Values.annotations }} annotations: {{ toYaml . | indent 4 }} {{- end }} name: {{ template "grafana.fullname" . }}-clusterrole {{- if or .Values.sidecar.dashboards.enabled .Values.sidecar.datasources.enabled }} rules: - apiGroups: [""] # "" indicates the core API group resources: ["configmaps"] verbs: ["get", "watch", "list"] {{- else }} rules: [] {{- end}} {{- end}}