File tree Expand file tree Collapse file tree 5 files changed +21
-7
lines changed Expand file tree Collapse file tree 5 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : backend
3
3
description : The API for the Signals application
4
4
type : application
5
- version : 4.13.2
5
+ version : 4.13.3
6
6
appVersion : 2.34.1
7
7
8
8
dependencies :
Original file line number Diff line number Diff line change @@ -129,18 +129,21 @@ spec:
129
129
{{- if ne (len .Values.extraVolumeMounts) 0 }}
130
130
{{ toYaml .Values.extraVolumeMounts | indent 12 }}
131
131
{{- end }}
132
+
132
133
livenessProbe :
133
134
httpGet :
134
135
path : /status/health
135
136
port : http
136
- initialDelaySeconds : 30
137
- periodSeconds : 10
137
+ initialDelaySeconds : {{ .Values.probes.backend.livenessProbe.initialDelaySeconds }}
138
+ periodSeconds : {{ .Values.probes.backend.livenessProbe.periodSeconds }}
139
+ timeoutSeconds : {{ .Values.probes.backend.livenessProbe.timeoutSeconds }}
138
140
readinessProbe :
139
141
httpGet :
140
142
path : /status/health
141
143
port : http
142
- initialDelaySeconds : 1
143
- periodSeconds : 10
144
+ initialDelaySeconds : {{ .Values.probes.backend.readinessProbe.initialDelaySeconds }}
145
+ periodSeconds : {{ .Values.probes.backend.readinessProbe.periodSeconds }}
146
+ timeoutSeconds : {{ .Values.probes.backend.readinessProbe.timeoutSeconds }}
144
147
ports :
145
148
- name : http
146
149
protocol : TCP
Original file line number Diff line number Diff line change @@ -49,6 +49,17 @@ ingress:
49
49
hosts :
50
50
- api.signals.local
51
51
52
+ probes :
53
+ backend :
54
+ livenessProbe :
55
+ initialDelaySeconds : 30
56
+ periodSeconds : 15
57
+ timeoutSeconds : 15
58
+ readinessProbe :
59
+ initialDelaySeconds : 30
60
+ periodSeconds : 15
61
+ timeoutSeconds : 15
62
+
52
63
resources : {}
53
64
54
65
worker :
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
2
2
name : classification
3
3
description : Machine learning prediction API
4
4
type : application
5
- version : 4.13.2
5
+ version : 4.13.3
6
6
appVersion : ad60447d1733473e30ab0a3ba53d58141cc1d250
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
2
2
name : frontend
3
3
description : The web frontend for the Signals application
4
4
type : application
5
- version : 4.13.2
5
+ version : 4.13.3
6
6
appVersion : 2.14.22
You can’t perform that action at this time.
0 commit comments