kubezero/charts/kubezero-metrics/charts/kube-prometheus-stack/charts/grafana/templates/serviceaccount.yaml

15 lines
390 B
YAML
Raw Normal View History

{{- if .Values.serviceAccount.create }}
apiVersion: v1
kind: ServiceAccount
metadata:
labels:
{{- include "grafana.labels" . | nindent 4 }}
2022-08-24 15:13:39 +00:00
{{- $root := . }}
{{- with .Values.serviceAccount.annotations }}
annotations:
2022-08-24 15:13:39 +00:00
{{ tpl (toYaml . | indent 4) $root }}
{{- end }}
name: {{ template "grafana.serviceAccountName" . }}
namespace: {{ template "grafana.namespace" . }}
{{- end }}