mirror of https://github.com/easzlab/kubeasz.git
24 lines
651 B
YAML
24 lines
651 B
YAML
{{- if .Values.rbac.create }}
|
|
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}}
|