File tree 5 files changed +16
-1
lines changed
5 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ appVersion: 1.53.0
3
3
description : A Jaeger Helm chart for Kubernetes
4
4
name : jaeger
5
5
type : application
6
- version : 3.4.0
6
+ version : 3.4.1
7
7
# CronJobs require v1.21
8
8
kubeVersion : " >= 1.21-0"
9
9
keywords :
Original file line number Diff line number Diff line change @@ -222,6 +222,10 @@ spec:
222
222
affinity :
223
223
{{- toYaml . | nindent 8 }}
224
224
{{- end }}
225
+ {{- with .Values.collector.topologySpreadConstraints }}
226
+ topologySpreadConstraints :
227
+ {{- toYaml . | nindent 8 }}
228
+ {{- end }}
225
229
{{- with .Values.collector.tolerations }}
226
230
tolerations :
227
231
{{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change 43
43
affinity :
44
44
{{- toYaml . | nindent 8 }}
45
45
{{- end }}
46
+ {{- with .Values.ingester.topologySpreadConstraints }}
47
+ topologySpreadConstraints :
48
+ {{- toYaml . | nindent 8 }}
49
+ {{- end }}
46
50
{{- with .Values.ingester.tolerations }}
47
51
tolerations :
48
52
{{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -312,6 +312,10 @@ spec:
312
312
affinity :
313
313
{{- toYaml . | nindent 8 }}
314
314
{{- end }}
315
+ {{- with .Values.query.topologySpreadConstraints }}
316
+ topologySpreadConstraints :
317
+ {{- toYaml . | nindent 8 }}
318
+ {{- end }}
315
319
{{- with .Values.query.tolerations }}
316
320
tolerations :
317
321
{{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -354,6 +354,7 @@ ingester:
354
354
nodeSelector : {}
355
355
tolerations : []
356
356
affinity : {}
357
+ topologySpreadContraints : []
357
358
podAnnotations : {}
358
359
# # Additional pod labels
359
360
# # ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
@@ -558,6 +559,7 @@ collector:
558
559
nodeSelector : {}
559
560
tolerations : []
560
561
affinity : {}
562
+ topologySpreadContraints : []
561
563
podAnnotations : {}
562
564
# # Additional pod labels
563
565
# # ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
@@ -741,6 +743,7 @@ query:
741
743
nodeSelector : {}
742
744
tolerations : []
743
745
affinity : {}
746
+ topologySpreadContraints : []
744
747
podAnnotations : {}
745
748
# # Additional pod labels
746
749
# # ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
You can’t perform that action at this time.
0 commit comments