URLShortener/k8s/shortener-chart/templates/serviceaccount.yaml

14 lines
405 B
YAML
Raw Normal View History

2024-02-22 21:39:09 +05:30
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "shortener-chart.serviceAccountName" . }}
labels:
{{- include "shortener-chart.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
{{- end }}