You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
557 B
15 lines
557 B
{{- if and (or .Values.deployment.kong.enabled .Values.ingressController.enabled) .Values.deployment.serviceAccount.create -}}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ template "kong.serviceAccountName" . }}
|
|
namespace: {{ template "kong.namespace" . }}
|
|
{{- if .Values.deployment.serviceAccount.annotations }}
|
|
annotations:
|
|
{{- range $key, $value := .Values.deployment.serviceAccount.annotations }}
|
|
{{ $key }}: {{ $value | quote }}
|
|
{{- end }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "kong.metaLabels" . | nindent 4 }}
|
|
{{- end -}}
|
|
|