deploy-templates/templates/config-watcher-serviceaccount.yaml (16 lines of code) (raw):
{{- if or (not .Values.global.excludePortals) (not (has "citizen" .Values.global.excludePortals)) }}
{{- if .Values.configWatcher.deploy -}}
{{- if .Values.configWatcher.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "ddm-notification-service.configWatcher.serviceAccountName" . }}
labels:
{{- include "ddm-notification-service.configWatcher.labels" . | nindent 4 }}
{{- with .Values.configWatcher.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}