vision-agent / chart /templates /serviceaccount.yaml
Zhichao
GitHub action for build and deploy to aws dev (#67)
f2de1e7 unverified
raw
history blame contribute delete
No virus
385 Bytes
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "chart.serviceAccountName" . }}
labels:
{{- include "chart.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
{{- end }}