mirror of
https://github.com/bitnami/charts.git
synced 2026-03-10 15:07:49 +08:00
* [bitnami/fluentd] Add forward TLS encryption and support for autogenerated certs * Reduce TLS secretName size * Fix linting issue * Fluentd major update. Replace fluentd.* helpers with common library * Drop mountedTLS feature * Fix linting * Add validation check and minor fix * Fix issues for aggregator disabled and forwarder disabled * Update _helpers.tpl * Fix typo
14 lines
486 B
YAML
14 lines
486 B
YAML
{{- if and .Values.forwarder.enabled (not .Values.forwarder.configMap) -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "common.names.fullname" . }}-forwarder-cm
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
app.kubernetes.io/component: forwarder
|
|
data:
|
|
{{- range $key, $value := .Values.forwarder.configMapFiles }}
|
|
{{ $key }}: |
|
|
{{- include "common.tplvalues.render" (dict "value" $value "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
{{- end -}}
|