15 lines
503 B
YAML
15 lines
503 B
YAML
# This file and its contents are licensed under the Apache License 2.0.
|
|
# Please see the included NOTICE for copyright information and LICENSE for a copy of the license.
|
|
|
|
{{- if .Values.serviceAccount.create }}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ template "timescaledb.serviceAccountName" . }}
|
|
labels:
|
|
app: {{ template "timescaledb.fullname" . }}
|
|
chart: {{ template "timescaledb.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
{{- end }}
|