postgresql-with-exts-chart/postgresql-with-ext/templates/serviceaccount.yaml

14 lines
413 B
YAML
Raw Permalink Normal View History

2024-05-07 10:54:45 +00:00
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "postgresql-with-ext.serviceAccountName" . }}
labels:
{{- include "postgresql-with-ext.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
{{- end }}