Skip to content

Commit be48682

Browse files
committed
apps: Update prometheus-label-enforcer to v0.11.0
Instead of outdated "master" tag stuck far in the past somewhere between v0.5.0 and v0.6.0. Also make image configurable via values
1 parent 9e3a40e commit be48682

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: "1.0"
2+
appVersion: "0.11.0"
33
description: A Helm chart for the prometheus label proxy https://github.com/prometheus-community/prom-label-proxy
44
name: grafana-label-enforcer
55
version: 0.1.0

helmfile.d/charts/grafana-label-enforcer/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
runAsUser: 1000
1818
containers:
1919
- name: prom-label-enforcer
20-
image: quay.io/prometheuscommunity/prom-label-proxy:master
20+
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
2121
imagePullPolicy: IfNotPresent
2222
resources: {{- toYaml .Values.resources | nindent 10 }}
2323
args:

helmfile.d/charts/grafana-label-enforcer/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ resources:
88

99
upstreamUrl: ""
1010
enforcementLabel: ""
11+
12+
image:
13+
tag: ""
14+
repository: quay.io/prometheuscommunity/prom-label-proxy

0 commit comments

Comments
 (0)