aboutsummaryrefslogtreecommitdiffstats
path: root/deployments/helm/v2/emco/fluentd/templates/aggregator-configmap.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'deployments/helm/v2/emco/fluentd/templates/aggregator-configmap.yaml')
-rw-r--r--deployments/helm/v2/emco/fluentd/templates/aggregator-configmap.yaml65
1 files changed, 0 insertions, 65 deletions
diff --git a/deployments/helm/v2/emco/fluentd/templates/aggregator-configmap.yaml b/deployments/helm/v2/emco/fluentd/templates/aggregator-configmap.yaml
deleted file mode 100644
index 885e3b99..00000000
--- a/deployments/helm/v2/emco/fluentd/templates/aggregator-configmap.yaml
+++ /dev/null
@@ -1,65 +0,0 @@
-{{- if and .Values.aggregator.enabled (not .Values.aggregator.configMap) -}}
-apiVersion: v1
-kind: ConfigMap
-metadata:
- name: {{ include "fluentd.fullname" . }}-aggregator-cm
- labels: {{- include "fluentd.labels" . | nindent 4 }}
- app.kubernetes.io/component: aggregator
-data:
- fluentd.conf: |
- {{- if .Values.metrics.enabled -}}
- # Prometheus Exporter Plugin
- # input plugin that exports metrics
- <source>
- @type prometheus
- port {{ .Values.metrics.service.port }}
- </source>
-
- # input plugin that collects metrics from MonitorAgent
- <source>
- @type prometheus_monitor
- <labels>
- host ${hostname}
- </labels>
- </source>
-
- # input plugin that collects metrics for output plugin
- <source>
- @type prometheus_output_monitor
- <labels>
- host ${hostname}
- </labels>
- </source>
- {{- end }}
-
- # Ignore fluentd own events
- <match fluent.**>
- @type null
- </match>
-
- # TCP input to receive logs from
- {{- if and .Values.aggregator.port }}
- <source>
- @type forward
- bind 0.0.0.0
- port {{ .Values.aggregator.port }}
- </source>
- {{- end }}
-
- # HTTP input for the liveness and readiness probes
- <source>
- @type http
- bind 0.0.0.0
- port 9880
- </source>
-
- # Throw the healthcheck to the standard output instead of forwarding it
- <match fluentd.healthcheck>
- @type stdout
- </match>
-
- # Send the logs to the standard output
- <match **>
- @type stdout
- </match>
-{{- end -}}