Skip to content

Commit

Permalink
[azure-loganalytics-exporter] fix additionalMonitor params
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Blaschke <[email protected]>
  • Loading branch information
mblaschke committed Dec 22, 2023
1 parent e873d37 commit 580ac9e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/azure-loganalytics-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: azure-loganalytics-exporter
type: application
description: A Helm chart for azure-loganalytics-exporter
home: https://github.com/webdevops/azure-loganalytics-exporter
version: 1.0.5
version: 1.0.6
# renovate: image=webdevops/azure-loganalytics-exporter
appVersion: 23.6.0
keywords:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,12 @@ spec:
path: {{ $moduleOptions.path }}
{{- if $moduleOptions.tplConfig }}
{{- if eq (typeOf $moduleOptions.params) "string" }}
params:
{{ tpl ($moduleOptions.params) $ | nindent 8 }}
params: {{ tpl ($moduleOptions.params) $ | nindent 8 }}
{{- else }}
params:
{{ tpl (toYaml $moduleOptions.params) $ | nindent 8 }}
params: {{ tpl (toYaml $moduleOptions.params) $ | nindent 8 }}
{{- end }}
{{- else if $moduleOptions.params }}
{{ toYaml $moduleOptions.params | nindent 8 }}
params: {{ toYaml $moduleOptions.params | nindent 8 }}
{{- end }}
{{- with $.Values.prometheus.monitor.basicAuth }}
basicAuth: {{- toYaml . | nindent 8 }}
Expand Down

0 comments on commit 580ac9e

Please sign in to comment.