christmas/chart/templates/serviceaccount.yaml
Nathan Lanier 31531b607d
Create Helm Chart (#43)
* chore: initial commit of helm chart yaml

* chore: add docs and reset ingress classname default

* chore: helm repo add and install documentation

* chore: add env variables to deployment and values

* fix: remove port env variable
2022-10-18 14:59:34 -04:00

12 lines
344 B
YAML

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