Files
charts/bitnami/fluentd/templates/aggregator-configmap.yaml
Alejandro Moreno 96e2640cb6 Add Fluentd chart
2019-09-19 15:20:08 +00:00

25 lines
426 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "fluentd.fullname" . }}-aggregator-cm
labels: {{ include "fluentd.labels" . | nindent 4 }}
data:
aggregator.conf: |
# TCP input
<source>
@type forward
bind 0.0.0.0
port 24444
</source>
# HTTP input
<source>
@type http
bind 0.0.0.0
port 9880
</source>
<filter **>
@type stdout
</filter>