File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
charts/prometheus-nats-exporter Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apiVersion: v1
3
3
appVersion : 0.17.3
4
4
description : A Helm chart for prometheus-nats-exporter
5
5
name : prometheus-nats-exporter
6
- version : 2.20.1
6
+ version : 2.20.2
7
7
home : https://github.com/nats-io/prometheus-nats-exporter
8
8
sources :
9
9
- https://github.com/nats-io/prometheus-nats-exporter
Original file line number Diff line number Diff line change @@ -70,10 +70,14 @@ spec:
70
70
httpGet :
71
71
path : /metrics
72
72
port : http
73
+ timeoutSeconds : {{ .Values.livenessProbe.timeoutSeconds }}
74
+ periodSeconds : {{ .Values.livenessProbe.periodSeconds }}
73
75
readinessProbe :
74
76
httpGet :
75
77
path : /metrics
76
78
port : http
79
+ timeoutSeconds : {{ .Values.readinessProbe.timeoutSeconds }}
80
+ periodSeconds : {{ .Values.readinessProbe.periodSeconds }}
77
81
resources :
78
82
{{ toYaml .Values.resources | indent 12 }}
79
83
{{- with .Values.nodeSelector }}
Original file line number Diff line number Diff line change @@ -17,6 +17,13 @@ service:
17
17
port : 80
18
18
targetPort : 7777
19
19
20
+ livenessProbe :
21
+ timeoutSeconds : 1
22
+ periodSeconds : 10
23
+ readinessProbe :
24
+ timeoutSeconds : 1
25
+ periodSeconds : 10
26
+
20
27
serviceMonitor :
21
28
enabled : false
22
29
additionalLabels : {}
You can’t perform that action at this time.
0 commit comments