helm-charts/postgres-operator/templates/serviceaccount.yaml

13 lines
447 B
YAML
Raw Normal View History

2021-01-17 01:09:41 +00:00
{{ if .Values.serviceAccount.create }}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "postgres-operator.serviceAccountName" . }}
2021-11-14 22:17:20 +00:00
namespace: {{ .Release.Namespace }}
2021-01-17 01:09:41 +00:00
labels:
app.kubernetes.io/name: {{ template "postgres-operator.name" . }}
helm.sh/chart: {{ template "postgres-operator.chart" . }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{ end }}