aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/operator/charts/prometheus-operator/templates/prometheus/serviceaccount.yaml
blob: 88df10ad24d909c2dc3e9dcc7ec6da363d4c2f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{- if and .Values.prometheus.enabled .Values.global.rbac.create .Values.prometheus.serviceAccount.create }}
apiVersion: v1
kind: ServiceAccount
metadata:
  name: {{ template "prometheus-operator.prometheus.serviceAccountName" . }}
  labels:
    app: {{ template "prometheus-operator.name" . }}-prometheus
{{ include "prometheus-operator.labels" . | indent 4 }}
imagePullSecrets:
{{ toYaml .Values.global.imagePullSecrets | indent 2 }}
{{- end }}