File tree Expand file tree Collapse file tree 5 files changed +16
-1
lines changed
Expand file tree Collapse file tree 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
33description : A Jaeger Helm chart for Kubernetes
44name : jaeger
55type : application
6- version : 3.4.0
6+ version : 3.4.1
77# CronJobs require v1.21
88kubeVersion : " >= 1.21-0"
99keywords :
Original file line number Diff line number Diff line change @@ -222,6 +222,10 @@ spec:
222222 affinity :
223223 {{- toYaml . | nindent 8 }}
224224 {{- end }}
225+ {{- with .Values.collector.topologySpreadConstraints }}
226+ topologySpreadConstraints :
227+ {{- toYaml . | nindent 8 }}
228+ {{- end }}
225229 {{- with .Values.collector.tolerations }}
226230 tolerations :
227231 {{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change 4343 affinity :
4444 {{- toYaml . | nindent 8 }}
4545 {{- end }}
46+ {{- with .Values.ingester.topologySpreadConstraints }}
47+ topologySpreadConstraints :
48+ {{- toYaml . | nindent 8 }}
49+ {{- end }}
4650 {{- with .Values.ingester.tolerations }}
4751 tolerations :
4852 {{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -312,6 +312,10 @@ spec:
312312 affinity :
313313 {{- toYaml . | nindent 8 }}
314314 {{- end }}
315+ {{- with .Values.query.topologySpreadConstraints }}
316+ topologySpreadConstraints :
317+ {{- toYaml . | nindent 8 }}
318+ {{- end }}
315319 {{- with .Values.query.tolerations }}
316320 tolerations :
317321 {{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -354,6 +354,7 @@ ingester:
354354 nodeSelector : {}
355355 tolerations : []
356356 affinity : {}
357+ topologySpreadContraints : []
357358 podAnnotations : {}
358359 # # Additional pod labels
359360 # # ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
@@ -558,6 +559,7 @@ collector:
558559 nodeSelector : {}
559560 tolerations : []
560561 affinity : {}
562+ topologySpreadContraints : []
561563 podAnnotations : {}
562564 # # Additional pod labels
563565 # # ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
@@ -741,6 +743,7 @@ query:
741743 nodeSelector : {}
742744 tolerations : []
743745 affinity : {}
746+ topologySpreadContraints : []
744747 podAnnotations : {}
745748 # # Additional pod labels
746749 # # ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
You can’t perform that action at this time.
0 commit comments