github.com/smartcontractkit/chainlink-testing-framework/libs@v0.0.0-20240227141906-ec710b4eb1a3/charts/foundry/templates/serviceaccount.yaml (about)

     1  {{- if .Values.serviceAccount.create -}}
     2  apiVersion: v1
     3  kind: ServiceAccount
     4  metadata:
     5    name: {{ include "foundry.serviceAccountName" . }}
     6    labels:
     7      {{- include "foundry.labels" . | nindent 4 }}
     8    {{- with .Values.serviceAccount.annotations }}
     9    annotations:
    10      {{- toYaml . | nindent 4 }}
    11    {{- end }}
    12  automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
    13  {{- end }}