1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-09-18 18:47:56 +00:00
bramw_baserow/deploy/helm/baserow/templates/service-account.yaml
2024-07-18 15:29:01 +00:00

19 lines
644 B
YAML

{{- if .Values.global.baserow.serviceAccount.shared -}}
{{- if .Values.global.baserow.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "baserow.global.serviceAccountName" . }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "baserow.global.labels" . | nindent 4 }}
annotations:
helm.sh/hook: pre-install, pre-upgrade
helm.sh/hook-weight: "2"
{{- with .Values.global.baserow.serviceAccount.annotations }}
{{- toYaml . | nindent 4 }}
{{- end }}
automountServiceAccountToken: {{ .Values.global.baserow.serviceAccount.automountServiceAccountToken }}
{{- end }}
{{- end }}