[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:
Yong Wen Chua
2019-07-27 05:31:56 -07:00
committed by Kubernetes Prow Robot
parent 40813444ed
commit 1751629340
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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:
+1 -1
View File
@@ -327,7 +327,7 @@ data:
buckets = [
{{- range $idx, $element := .Values.metrics.prometheus.buckets }}
{{- if $idx }},{{ end }}
{{- printf "%.1f" $element }}
{{- printf "%f" $element }}
{{- end -}}
]
{{- end -}}