aboutsummaryrefslogtreecommitdiffstats
path: root/deployments/helm/v2/emco/fluentd/templates/aggregator-configmap.yaml
diff options
context:
space:
mode:
authorRitu Sood <ritu.sood@intel.com>2021-05-07 00:51:53 +0000
committerGerrit Code Review <gerrit@onap.org>2021-05-07 00:51:53 +0000
commite168465a7a266c4e1450a50ece19ed6db1aa9379 (patch)
tree4864a03c270dd02b67b8f8ea2d4ef282ed0180d6 /deployments/helm/v2/emco/fluentd/templates/aggregator-configmap.yaml
parent76ca3e628144931a657bab39dd175f6fe3c26e47 (diff)
parent33ed381b13ad004f9d1ba52e4e77f71c6c390140 (diff)
Merge "Remove unused deployments/helm/v2/emco"
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 -}}