charts/dial-core/templates/logger-configmap.yaml (26 lines of code) (raw):

{{- if .Values.logger.enabled }} apiVersion: v1 kind: ConfigMap metadata: name: {{ template "dialCoreLogger.names.fullname" . }} namespace: {{ include "common.names.namespace" . | quote }} labels: {{ include "dialCore.labels.standard" . | nindent 4 }} {{- if .Values.commonLabels }} {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }} {{- end }} {{- if .Values.labels }} {{- include "common.tplvalues.render" ( dict "value" .Values.labels "context" $ ) | nindent 4 }} {{- end }} {{- if or .Values.annotations .Values.commonAnnotations }} annotations: {{- if .Values.annotations }} {{- include "common.tplvalues.render" ( dict "value" .Values.annotations "context" $ ) | nindent 4 }} {{- end }} {{- if .Values.commonAnnotations }} {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} {{- end }} {{- end }} data: vector.yaml: | {{- .Values.logger.config | nindent 4 }} {{- end }}