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

Commit

Permalink
support tpl in logstashConfig, logstashPipeline and kibanaConfig (#717)
Browse files Browse the repository at this point in the history
  • Loading branch information
qqshfox authored and jmlrt committed Oct 2, 2020
1 parent 2613565 commit 534d2c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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 -}}

0 comments on commit 534d2c0

Please sign in to comment.