Skip to content

Commit

Permalink
bump elasticexporter to 1.6.0
Browse files Browse the repository at this point in the history
Signed-off-by: drfaust92 <[email protected]>
  • Loading branch information
DrFaust92 committed Sep 12, 2023
1 parent 3005e3c commit 14da5b1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions charts/prometheus-elasticsearch-exporter/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v1
description: Elasticsearch stats exporter for Prometheus
name: prometheus-elasticsearch-exporter
version: 5.2.0
version: 5.3.0
kubeVersion: ">=1.10.0-0"
appVersion: 1.5.0
appVersion: "v1.6.0"
home: https://github.com/prometheus-community/elasticsearch_exporter
sources:
- https://github.com/prometheus-community/helm-charts/tree/main/charts/prometheus-elasticsearch-exporter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ spec:
- secretRef:
name: {{ .Values.envFromSecret }}
{{- end }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: ["elasticsearch_exporter",
{{- with .Values.log.format }}
Expand Down Expand Up @@ -109,7 +109,7 @@ spec:
"--es.snapshots",
{{- end }}
{{- if .Values.es.cluster_settings }}
"--es.cluster_settings",
"--collector.clustersettings",
{{- end }}
{{- if .Values.es.slm }}
"--es.slm",
Expand Down
9 changes: 6 additions & 3 deletions charts/prometheus-elasticsearch-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ restartPolicy: Always

image:
repository: quay.io/prometheuscommunity/elasticsearch-exporter
tag: v1.5.0
# if not set appVersion field from Chart.yaml is used
tag: ""
pullPolicy: IfNotPresent
pullSecret: ""

Expand Down Expand Up @@ -47,7 +48,8 @@ log:
format: logfmt
level: info

resources: {}
resources:
{}
# requests:
# cpu: 100m
# memory: 128Mi
Expand Down Expand Up @@ -253,7 +255,8 @@ prometheusRule:
enabled: false
# namespace: monitoring
labels: {}
rules: []
rules:
[]
# - record: elasticsearch_filesystem_data_used_percent
# expr: |
# 100 * (elasticsearch_filesystem_data_size_bytes{service="{{ template "elasticsearch-exporter.fullname" . }}"} - elasticsearch_filesystem_data_free_bytes{service="{{ template "elasticsearch-exporter.fullname" . }}"})
Expand Down

0 comments on commit 14da5b1

Please sign in to comment.