File tree Expand file tree Collapse file tree 2 files changed +53
-25
lines changed Expand file tree Collapse file tree 2 files changed +53
-25
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ type: application
20
20
# This is the chart version. This version number should be incremented each time you make changes
21
21
# to the chart and its templates, including the app version.
22
22
# Versions are expected to follow Semantic Versioning (https://semver.org/)
23
- version : 0.3.2
23
+ version : 0.3.3
24
24
25
25
# This is the version number of the application being deployed. This version number should be
26
26
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -72,14 +72,24 @@ spec:
72
72
- name : http
73
73
containerPort : {{ .Values.api.containerPort }}
74
74
protocol : TCP
75
- # livenessProbe:
76
- # httpGet:
77
- # path: /
78
- # port: http
79
- # readinessProbe:
80
- # httpGet:
81
- # path: /
82
- # port: http
75
+ livenessProbe :
76
+ httpGet :
77
+ path : /health
78
+ port : http
79
+ initialDelaySeconds : 30
80
+ timeoutSeconds : 5
81
+ periodSeconds : 30
82
+ successThreshold : 1
83
+ failureThreshold : 2
84
+ readinessProbe :
85
+ httpGet :
86
+ path : /health
87
+ port : http
88
+ initialDelaySeconds : 10
89
+ timeoutSeconds : 5
90
+ periodSeconds : 5
91
+ successThreshold : 1
92
+ failureThreshold : 10
83
93
resources :
84
94
{{- toYaml .Values.api.resources | nindent 12 }}
85
95
{{- with .Values.volumes }}
@@ -227,14 +237,24 @@ spec:
227
237
- name : http
228
238
containerPort : {{ .Values.frontend.containerPort }}
229
239
protocol : TCP
230
- # livenessProbe:
231
- # httpGet:
232
- # path: /
233
- # port: http
234
- # readinessProbe:
235
- # httpGet:
236
- # path: /
237
- # port: http
240
+ livenessProbe :
241
+ httpGet :
242
+ path : /apps
243
+ port : http
244
+ initialDelaySeconds : 30
245
+ timeoutSeconds : 5
246
+ periodSeconds : 30
247
+ successThreshold : 1
248
+ failureThreshold : 2
249
+ readinessProbe :
250
+ httpGet :
251
+ path : /apps
252
+ port : http
253
+ initialDelaySeconds : 1
254
+ timeoutSeconds : 5
255
+ periodSeconds : 5
256
+ successThreshold : 1
257
+ failureThreshold : 10
238
258
resources :
239
259
{{- toYaml .Values.frontend.resources | nindent 12 }}
240
260
{{- with .Values.frontend.nodeSelector }}
@@ -311,14 +331,22 @@ spec:
311
331
- name : http
312
332
containerPort : {{ .Values.sandbox.containerPort }}
313
333
protocol : TCP
314
- # livenessProbe:
315
- # httpGet:
316
- # path: /
317
- # port: http
318
- # readinessProbe:
319
- # httpGet:
320
- # path: /
321
- # port: http
334
+ livenessProbe :
335
+ tcpSocket :
336
+ port : http
337
+ initialDelaySeconds : 30
338
+ timeoutSeconds : 5
339
+ periodSeconds : 30
340
+ successThreshold : 1
341
+ failureThreshold : 2
342
+ readinessProbe :
343
+ tcpSocket :
344
+ port : http
345
+ initialDelaySeconds : 1
346
+ timeoutSeconds : 5
347
+ periodSeconds : 5
348
+ successThreshold : 1
349
+ failureThreshold : 10
322
350
resources :
323
351
{{- toYaml .Values.sandbox.resources | nindent 12 }}
324
352
{{- with .Values.sandbox.nodeSelector }}
You can’t perform that action at this time.
0 commit comments