mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 21:37:11 -04:00
14 lines
391 B
YAML
14 lines
391 B
YAML
![]() |
{{- if .Values.serviceAccount.create -}}
|
||
|
apiVersion: v1
|
||
|
kind: ServiceAccount
|
||
|
metadata:
|
||
|
name: {{ include "it-tools.serviceAccountName" . }}
|
||
|
labels:
|
||
|
{{- include "it-tools.labels" . | nindent 4 }}
|
||
|
{{- with .Values.serviceAccount.annotations }}
|
||
|
annotations:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
|
||
|
{{- end }}
|