12 lines
418 B
YAML
12 lines
418 B
YAML
|
{{ if .Values.serviceAccount.create }}
|
||
|
apiVersion: v1
|
||
|
kind: ServiceAccount
|
||
|
metadata:
|
||
|
name: {{ include "postgres-operator-ui.serviceAccountName" . }}
|
||
|
labels:
|
||
|
app.kubernetes.io/name: {{ template "postgres-operator-ui.name" . }}
|
||
|
helm.sh/chart: {{ template "postgres-operator-ui.chart" . }}
|
||
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||
|
{{ end }}
|