diff --git a/stable/helm-exporter/Chart.yaml b/stable/helm-exporter/Chart.yaml index 746239806d..bf887002d8 100644 --- a/stable/helm-exporter/Chart.yaml +++ b/stable/helm-exporter/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: "0.4.0" description: Exports helm release stats to prometheus name: helm-exporter -version: 0.3.0 +version: 0.3.1 home: https://github.com/sstarcher/helm-exporter sources: - https://github.com/sstarcher/helm-exporter diff --git a/stable/helm-exporter/templates/servicemonitor.yaml b/stable/helm-exporter/templates/servicemonitor.yaml index e8e20f0032..49cfaeb24d 100644 --- a/stable/helm-exporter/templates/servicemonitor.yaml +++ b/stable/helm-exporter/templates/servicemonitor.yaml @@ -21,6 +21,9 @@ spec: {{- with .Values.serviceMonitor.interval }} interval: {{ . }} {{- end }} + {{- with .Values.serviceMonitor.scrapeTimeout }} + scrapeTimeout: {{ . }} + {{- end }} namespaceSelector: matchNames: - {{ .Release.Namespace }} diff --git a/stable/helm-exporter/values.yaml b/stable/helm-exporter/values.yaml index 71d07c33a1..548e5c6825 100644 --- a/stable/helm-exporter/values.yaml +++ b/stable/helm-exporter/values.yaml @@ -2,7 +2,7 @@ replicaCount: 1 image: repository: sstarcher/helm-exporter - tag: 0.4.0 + tag: 0.4.2 pullPolicy: Always # To override default tiller namespace name or to provide the multiple tiller namespaces like "kube-system,dev" @@ -34,6 +34,7 @@ serviceMonitor: # Specifies whether a ServiceMonitor should be created create: false interval: + scrapeTimeout: namespace: additionalLabels: {}