mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-05 23:40:11 +01:00
14 lines
331 B
YAML
14 lines
331 B
YAML
|
{{- if .Values.serviceAccount.create -}}
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: ServiceAccount
|
||
|
metadata:
|
||
|
name: {{ include "stirlingpdf.serviceAccountName" . }}
|
||
|
{{- with .Values.serviceAccount.annotations }}
|
||
|
annotations:
|
||
|
{{ toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
labels:
|
||
|
{{- include "stirlingpdf.labels" . | nindent 4 }}
|
||
|
{{- end }}
|