mirror of https://git.rancher.io/charts
21 lines
824 B
YAML
21 lines
824 B
YAML
{{- if and .Values.prometheus.enabled .Values.prometheus.serviceAccount.create }}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ template "kube-prometheus-stack.prometheus.serviceAccountName" . }}
|
|
namespace: {{ template "kube-prometheus-stack.namespace" . }}
|
|
labels:
|
|
app: {{ template "kube-prometheus-stack.name" . }}-prometheus
|
|
app.kubernetes.io/name: {{ template "kube-prometheus-stack.name" . }}-prometheus
|
|
app.kubernetes.io/component: prometheus
|
|
{{ include "kube-prometheus-stack.labels" . | indent 4 }}
|
|
{{- if .Values.prometheus.serviceAccount.annotations }}
|
|
annotations:
|
|
{{ toYaml .Values.prometheus.serviceAccount.annotations | indent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.global.imagePullSecrets }}
|
|
imagePullSecrets:
|
|
{{ toYaml .Values.global.imagePullSecrets | indent 2 }}
|
|
{{- end }}
|
|
{{- end }}
|