Skip to content

Commit

Permalink
Fix prometheus bind port
Browse files Browse the repository at this point in the history
  • Loading branch information
nepalez committed Jun 17, 2021
1 parent 698cc8b commit a6c4afd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion imgproxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion imgproxy/templates/env-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit a6c4afd

Please sign in to comment.