Files
beelzebub/beelzebub-chart/templates/serviceaccount.yaml
Mario Candela ffd64b63e3 feature: helm chart configurations to deploy beelzebub on kubernetes (#63)
* Initial helm chart configuration

* configure config map with beelzebub configuration

* edit README.md add helm docs

* configured config maps

*parametric configmaps using values.yaml

* addd services confgiuration by chart values

* update readme.md
2023-09-21 23:19:56 +02:00

13 lines
336 B
YAML

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