Enabled with `logging.fileMode`: true - disables elasticsearch, kibana and ingress - only enables fluentd to write logs in the node's volume - lightweight logging into files (in JSON format and compressed in gzip) - log file rotation (default: rotating files every 4 hours, retention 3 days)
12 lines
220 B
YAML
12 lines
220 B
YAML
{{ if .Values.logging.enabled }}
|
|
|
|
{{ if not .Values.logging.fileMode }}
|
|
{{ include "es.install" . }}
|
|
{{ include "kb.install" . }}
|
|
{{ include "ingress.install" . }}
|
|
{{ end }}
|
|
|
|
{{ include "fluentd.install" . }}
|
|
|
|
{{ end }}
|