Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

support tpl in logstashConfig, logstashPipeline and kibanaConfig #717

Merged
merged 3 commits into from
Oct 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion kibana/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ metadata:
data:
{{- range $path, $config := .Values.kibanaConfig }}
{{ $path }}: |
{{ $config | indent 4 -}}
{{ tpl $config $ | indent 4 -}}
{{- end -}}
{{- end -}}
2 changes: 1 addition & 1 deletion logstash/templates/configmap-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ metadata:
data:
{{- range $path, $config := .Values.logstashConfig }}
{{ $path }}: |
{{ $config | indent 4 -}}
{{ tpl $config $ | indent 4 -}}
{{- end -}}
{{- end -}}
2 changes: 1 addition & 1 deletion logstash/templates/configmap-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ metadata:
data:
{{- range $path, $config := .Values.logstashPipeline }}
{{ $path }}: |
{{ $config | indent 4 -}}
{{ tpl $config $ | indent 4 -}}
{{- end -}}
{{- end -}}