blob: 467e14b3357e944ad1272050d503680098462953 [file] [log] [blame]
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +02001{{- /*
Mohammed Naser7d1623e2024-06-17 09:12:39 -04002Copyright Broadcom, Inc. All Rights Reserved.
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +02003SPDX-License-Identifier: APACHE-2.0
4*/}}
5
6{{- if .Values.serviceAccount.create }}
7apiVersion: v1
8kind: ServiceAccount
9metadata:
10 name: {{ template "keycloak.serviceAccountName" . }}
11 namespace: {{ include "common.names.namespace" . | quote }}
Mohammed Naser65cda132024-05-02 14:34:08 -040012 labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020013 app.kubernetes.io/component: keycloak
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020014 {{- if .Values.serviceAccount.extraLabels }}
15 {{- include "common.tplvalues.render" (dict "value" .Values.serviceAccount.extraLabels "context" $) | nindent 4 }}
16 {{- end }}
17 {{- if or .Values.serviceAccount.annotations .Values.commonAnnotations }}
Mohammed Naser65cda132024-05-02 14:34:08 -040018 {{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.serviceAccount.annotations .Values.commonAnnotations ) "context" . ) }}
19 annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020020 {{- end }}
21automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}
22{{- end }}