mirror of
https://github.com/bitnami/charts.git
synced 2026-03-12 06:47:32 +08:00
Signed-off-by: Gang Liu <gang.liu@daocloud.io> Signed-off-by: Gang Liu <gang.liu@daocloud.io>
21 lines
905 B
YAML
21 lines
905 B
YAML
{{- if and .Values.forwarder.enabled (not .Values.forwarder.configMap) -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ printf "%s-forwarder-cm" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
app.kubernetes.io/component: forwarder
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
data:
|
|
{{- range $key, $value := .Values.forwarder.configMapFiles }}
|
|
{{ $key }}: |
|
|
{{- include "common.tplvalues.render" (dict "value" $value "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
{{- end -}}
|