Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[prometheus-consul-exporter] bump consul exporter to 0.13.0 #3846

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
4 changes: 2 additions & 2 deletions charts/prometheus-consul-exporter/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: "0.4.0"
appVersion: "v0.12.1"
description: A Helm chart for the Prometheus Consul Exporter
name: prometheus-consul-exporter
version: 1.0.0
version: 1.1.0
keywords:
- metrics
- consul
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
{{- end }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: ["consul_exporter"]
args:
Expand Down
5 changes: 3 additions & 2 deletions charts/prometheus-consul-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@ serviceAccount:

image:
repository: prom/consul-exporter
tag: v0.4.0
# if not set appVersion field from Chart.yaml is used
tag: ""
pullPolicy: IfNotPresent

nameOverride: ""
fullnameOverride: ""

# Add your consul server details here
consulServer: host:port
consulServer: localhost:8500

# Flags - for a list visit https://github.com/prometheus/consul_exporter#flags
options: {}
Expand Down