deploy-templates/charts/postgresql/templates/serviceaccount.yaml (14 lines of code) (raw):

{{- if and (.Values.serviceAccount.enabled) (not .Values.serviceAccount.name) }} apiVersion: v1 kind: ServiceAccount metadata: labels: app: {{ template "postgresql.name" . }} chart: {{ template "postgresql.chart" . }} release: {{ .Release.Name | quote }} heritage: {{ .Release.Service | quote }} name: {{ template "postgresql.fullname" . }} {{- if .Values.commonAnnotations }} annotations: {{- include "postgresql.tplValue" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} {{- end }} {{- end }}