Skip to content

Commit

Permalink
Fix the template
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Villacorta <[email protected]>
  • Loading branch information
h0tbird committed May 2, 2024
1 parent 3bc720b commit b0237b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/prometheus/templates/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ spec:
{{- end }}
- --reload-url={{ default $default_url .Values.configmapReload.reloadUrl }}
{{- range $key, $value := .Values.configmapReload.prometheus.extraArgs }}
{{- if eq ($value | default "") "" }}
{{- if eq (toString $value) "" }}
- --{{ $key }}
{{- else }}
- --{{ $key }}={{ $value }}
Expand Down Expand Up @@ -148,7 +148,7 @@ spec:
- --{{ . }}
{{- end }}
{{- range $key, $value := .Values.server.extraArgs }}
{{- if eq ($value | default "") "" }}
{{- if eq (toString $value) "" }}
- --{{ $key }}
{{- else }}
- --{{ $key }}={{ $value }}
Expand Down

0 comments on commit b0237b6

Please sign in to comment.