26 lines
843 B
YAML
26 lines
843 B
YAML
|
{{- if and .Values.rbac.create (not .Values.rbac.namespaced) (not .Values.rbac.useExistingRole) }}
|
||
|
kind: ClusterRole
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
metadata:
|
||
|
labels:
|
||
|
{{- include "grafana.labels" . | nindent 4 }}
|
||
|
{{- with .Values.annotations }}
|
||
|
annotations:
|
||
|
{{ toYaml . | indent 4 }}
|
||
|
{{- end }}
|
||
|
name: {{ template "grafana.fullname" . }}-clusterrole
|
||
|
{{- if or .Values.sidecar.dashboards.enabled (or .Values.sidecar.datasources.enabled .Values.rbac.extraClusterRoleRules) }}
|
||
|
rules:
|
||
|
{{- if or .Values.sidecar.dashboards.enabled .Values.sidecar.datasources.enabled }}
|
||
|
- apiGroups: [""] # "" indicates the core API group
|
||
|
resources: ["configmaps", "secrets"]
|
||
|
verbs: ["get", "watch", "list"]
|
||
|
{{- end}}
|
||
|
{{- with .Values.rbac.extraClusterRoleRules }}
|
||
|
{{ toYaml . | indent 0 }}
|
||
|
{{- end}}
|
||
|
{{- else }}
|
||
|
rules: []
|
||
|
{{- end}}
|
||
|
{{- end}}
|