whoogle-search/charts/whoogle/templates/serviceaccount.yaml
Robbie Blaine 6c1e00fa51
feat: Simple Helm Chart
* Add a simple Kubernetes Helm Chart to deploy Whoogle
2021-11-04 12:05:37 +02:00

13 lines
320 B
YAML

{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "whoogle.serviceAccountName" . }}
labels:
{{- include "whoogle.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}