File tree Expand file tree Collapse file tree 4 files changed +32
-4
lines changed Expand file tree Collapse file tree 4 files changed +32
-4
lines changed Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
2
2
name : langstream
3
3
description : Helm chart for LangStream
4
4
type : application
5
- version : 0.0.8
6
- appVersion : 0.0.8
5
+ version : 0.0.9
6
+ appVersion : 0.0.10
Original file line number Diff line number Diff line change @@ -39,10 +39,16 @@ spec:
39
39
httpGet :
40
40
path : /management/health
41
41
port : http
42
+ initialDelaySeconds : {{ .Values.apiGateway.liveness.initialDelaySeconds }}
43
+ periodSeconds : {{ .Values.apiGateway.liveness.periodSeconds }}
44
+ timeoutSeconds : {{ .Values.apiGateway.liveness.timeoutSeconds }}
42
45
readinessProbe :
43
46
httpGet :
44
47
path : /management/health
45
48
port : http
49
+ initialDelaySeconds : {{ .Values.apiGateway.readiness.initialDelaySeconds }}
50
+ periodSeconds : {{ .Values.apiGateway.readiness.periodSeconds }}
51
+ timeoutSeconds : {{ .Values.apiGateway.readiness.timeoutSeconds }}
46
52
resources :
47
53
{{- toYaml .Values.apiGateway.resources | nindent 12 }}
48
54
env :
Original file line number Diff line number Diff line change @@ -39,10 +39,16 @@ spec:
39
39
httpGet :
40
40
path : /q/health/live
41
41
port : http
42
+ initialDelaySeconds : {{ .Values.deployer.liveness.initialDelaySeconds }}
43
+ periodSeconds : {{ .Values.deployer.liveness.periodSeconds }}
44
+ timeoutSeconds : {{ .Values.deployer.liveness.timeoutSeconds }}
42
45
readinessProbe :
43
46
httpGet :
44
47
path : /q/health/ready
45
48
port : http
49
+ initialDelaySeconds : {{ .Values.deployer.readiness.initialDelaySeconds }}
50
+ periodSeconds : {{ .Values.deployer.readiness.periodSeconds }}
51
+ timeoutSeconds : {{ .Values.deployer.readiness.timeoutSeconds }}
46
52
resources :
47
53
{{- toYaml .Values.deployer.resources | nindent 12 }}
48
54
env :
Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ controlPlane:
38
38
timeoutSeconds : 5
39
39
periodSeconds : 30
40
40
readiness :
41
- initialDelaySeconds : 20
42
- periodSeconds : 10
41
+ initialDelaySeconds : 10
42
+ periodSeconds : 5
43
43
timeoutSeconds : 5
44
44
nodeSelector : {}
45
45
tolerations : []
@@ -95,6 +95,14 @@ deployer:
95
95
requests :
96
96
cpu : 0.25
97
97
memory : 256Mi
98
+ liveness :
99
+ initialDelaySeconds : 10
100
+ timeoutSeconds : 5
101
+ periodSeconds : 30
102
+ readiness :
103
+ initialDelaySeconds : 5
104
+ periodSeconds : 5
105
+ timeoutSeconds : 5
98
106
nodeSelector : {}
99
107
tolerations : []
100
108
affinity : {}
@@ -153,6 +161,14 @@ apiGateway:
153
161
nodeSelector : {}
154
162
tolerations : []
155
163
affinity : {}
164
+ liveness :
165
+ initialDelaySeconds : 10
166
+ timeoutSeconds : 5
167
+ periodSeconds : 30
168
+ readiness :
169
+ initialDelaySeconds : 5
170
+ periodSeconds : 5
171
+ timeoutSeconds : 5
156
172
app :
157
173
config : {}
158
174
You can’t perform that action at this time.
0 commit comments