Commit 4fe3335 1 parent cfde2a2 commit 4fe3335 Copy full SHA for 4fe3335
File tree 4 files changed +28
-9
lines changed
4 files changed +28
-9
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v1
2
2
appVersion : " v0.30.0"
3
3
description : A Helm chart for the Meilisearch search engine
4
4
name : meilisearch
5
- version : 0.1.45
5
+ version : 0.1.46
6
6
icon : https://res.cloudinary.com/meilisearch/image/upload/v1597822872/Logo/logo_img.svg
7
7
home : https://github.com/meilisearch/meilisearch-kubernetes/charts
8
8
maintainers :
Original file line number Diff line number Diff line change 67
67
- name : http
68
68
containerPort : {{ .Values.container.containerPort }}
69
69
protocol : TCP
70
+ startupProbe :
71
+ httpGet :
72
+ path : /health
73
+ port : http
74
+ periodSeconds : {{ .Values.startupProbe.periodSeconds }}
75
+ initialDelaySeconds : {{ .Values.startupProbe.InitialDelaySeconds }}
76
+ failureThreshold : {{ .Values.startupProbe.failureThreshold }}
70
77
livenessProbe :
71
78
httpGet :
72
79
path : /health
Original file line number Diff line number Diff line change 4
4
5
5
replicaCount : 1
6
6
7
+ startupProbe :
8
+ periodSeconds : 1
9
+ InitialDelaySeconds : 1
10
+ failureThreshold : 60
11
+
7
12
readinessProbe :
8
- periodSeconds : 60
9
- InitialDelaySeconds : 60
13
+ periodSeconds : 10
14
+ InitialDelaySeconds : 0
10
15
11
16
livenessProbe :
12
- periodSeconds : 60
13
- InitialDelaySeconds : 60
17
+ periodSeconds : 10
18
+ InitialDelaySeconds : 0
14
19
15
20
image :
16
21
repository : getmeili/meilisearch
Original file line number Diff line number Diff line change @@ -87,18 +87,25 @@ spec:
87
87
- name : http
88
88
containerPort : 7700
89
89
protocol : TCP
90
+ startupProbe :
91
+ httpGet :
92
+ path : /health
93
+ port : http
94
+ periodSeconds : 1
95
+ initialDelaySeconds : 1
96
+ failureThreshold : 60
90
97
livenessProbe :
91
98
httpGet :
92
99
path : /health
93
100
port : http
94
- periodSeconds : 60
95
- initialDelaySeconds : 60
101
+ periodSeconds : 10
102
+ initialDelaySeconds : 0
96
103
readinessProbe :
97
104
httpGet :
98
105
path : /health
99
106
port : http
100
- periodSeconds : 60
101
- initialDelaySeconds : 60
107
+ periodSeconds : 10
108
+ initialDelaySeconds : 0
102
109
resources :
103
110
{}
104
111
---
You can’t perform that action at this time.
0 commit comments