From a6c4afd73e4f5aecae9a0371c1a38dff6a703caa Mon Sep 17 00:00:00 2001 From: Andrew Kozin Date: Thu, 17 Jun 2021 09:51:37 +0300 Subject: [PATCH] Fix prometheus bind port --- CHANGELOG.md | 4 ++++ imgproxy/Chart.yaml | 2 +- imgproxy/templates/env-secret.yaml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a53092..38104d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.7.4 (2021-06-17) + +* (Fix) prometheus bind port + ## 0.7.3 (2021-06-10) * (Fix) apiVersion checkup in ingress config diff --git a/imgproxy/Chart.yaml b/imgproxy/Chart.yaml index 70512cc..548060a 100644 --- a/imgproxy/Chart.yaml +++ b/imgproxy/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 description: A fast and secure standalone server for resizing and converting remote images. The main principles of imgproxy are simplicity, speed, and security. name: imgproxy icon: https://cdn.rawgit.com/imgproxy/imgproxy/master/logo.svg -version: 0.7.3 +version: 0.7.4 appVersion: 2.15.0 keywords: - imgproxy diff --git a/imgproxy/templates/env-secret.yaml b/imgproxy/templates/env-secret.yaml index 49196c5..71b741f 100644 --- a/imgproxy/templates/env-secret.yaml +++ b/imgproxy/templates/env-secret.yaml @@ -276,7 +276,7 @@ data: {{- /* https://docs.imgproxy.net/#/configuration?id=url-signature */}} {{- /* https://docs.imgproxy.net/#/configuration?id=prometheus-metrics */}} {{- with .Values.features.prometheus }} {{- if .enabled }} - IMGPROXY_PROMETHEUS_BIND: ":8081" + IMGPROXY_PROMETHEUS_BIND: {{ ":8081" | b64enc | quote }} {{- if .namespace }} IMGPROXY_PROMETHEUS_NAMESPACE: {{ .namespace | toString | b64enc | quote }} {{- end }}