mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/traefik] Fix Prometheus Bucket precision truncation (#14929)
* [stable/traefik] Fix Prometheus Bucket precision truncation Signed-off-by: Yong Wen Chua <lawliet89@users.noreply.github.com> * Bump chart Signed-off-by: Yong Wen Chua <lawliet89@users.noreply.github.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
40813444ed
commit
1751629340
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: traefik
|
||||
version: 1.74.0
|
||||
version: 1.75.0
|
||||
appVersion: 1.7.12
|
||||
description: A Traefik based Kubernetes ingress controller with Let's Encrypt support
|
||||
keywords:
|
||||
|
||||
@@ -327,7 +327,7 @@ data:
|
||||
buckets = [
|
||||
{{- range $idx, $element := .Values.metrics.prometheus.buckets }}
|
||||
{{- if $idx }},{{ end }}
|
||||
{{- printf "%.1f" $element }}
|
||||
{{- printf "%f" $element }}
|
||||
{{- end -}}
|
||||
]
|
||||
{{- end -}}
|
||||
|
||||
Reference in New Issue
Block a user