2023-05-31 08:47:58 +00:00
|
|
|
{{- if .Values.serviceAccount.create }}
|
|
|
|
apiVersion: v1
|
|
|
|
kind: ServiceAccount
|
|
|
|
metadata:
|
|
|
|
name: {{ include "gitea.serviceAccountName" . }}
|
2024-10-08 16:40:23 +00:00
|
|
|
namespace: {{ .Values.namespace | default .Release.Namespace }}
|
2023-05-31 08:47:58 +00:00
|
|
|
labels:
|
|
|
|
{{- include "gitea.labels" . | nindent 4 }}
|
|
|
|
{{- with .Values.serviceAccount.labels }}
|
|
|
|
{{- . | toYaml | nindent 4 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.serviceAccount.annotations }}
|
|
|
|
annotations:
|
|
|
|
{{- . | toYaml | nindent 4 }}
|
|
|
|
{{- end }}
|
|
|
|
automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}
|
|
|
|
{{- with .Values.serviceAccount.imagePullSecrets }}
|
|
|
|
imagePullSecrets:
|
|
|
|
{{- . | toYaml | nindent 2 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|