File tree 3 files changed +20
-2
lines changed
docs/sources/setup/install/helm
3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,8 @@ This is the generated reference for the Loki Helm Chart values.
82
82
"type": "RollingUpdate"
83
83
},
84
84
"terminationGracePeriodSeconds": 60,
85
- "tolerations": [ ]
85
+ "tolerations": [ ] ,
86
+ "topologySpreadConstraints": [ ]
86
87
}
87
88
</pre >
88
89
</td >
@@ -280,6 +281,15 @@ This is the generated reference for the Loki Helm Chart values.
280
281
<td><pre lang="json">
281
282
[ ]
282
283
</pre >
284
+ </td >
285
+ </tr>
286
+ <tr>
287
+ <td>adminApi.topologySpreadConstraints</td>
288
+ <td>list</td>
289
+ <td>Topology Spread Constraints for admin-api pods</td>
290
+ <td><pre lang="json">
291
+ [ ]
292
+ </pre >
283
293
</td >
284
294
</tr>
285
295
<tr>
Original file line number Diff line number Diff line change 38
38
{{- toYaml . | nindent 8 }}
39
39
{{- end }}
40
40
spec :
41
+ {{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.Version }}
42
+ {{- with .Values.adminApi.topologySpreadConstraints }}
43
+ topologySpreadConstraints :
44
+ {{- toYaml . | nindent 8 }}
45
+ {{- end }}
46
+ {{- end }}
41
47
serviceAccountName : {{ template "loki.serviceAccountName" . }}
42
48
{{- if .Values.adminApi.priorityClassName }}
43
49
priorityClassName : {{ .Values.adminApi.priorityClassName }}
@@ -167,4 +173,4 @@ spec:
167
173
path : CAs/public.crt
168
174
{{- end }}
169
175
{{- end }}
170
- {{- end }}
176
+ {{- end }}
Original file line number Diff line number Diff line change @@ -876,6 +876,8 @@ adminApi:
876
876
affinity : {}
877
877
# -- Node selector for admin-api Pods
878
878
nodeSelector : {}
879
+ # -- Topology Spread Constraints for admin-api pods
880
+ topologySpreadConstraints : []
879
881
# -- Tolerations for admin-api Pods
880
882
tolerations : []
881
883
# -- Grace period to allow the admin-api to shutdown before it is killed
You can’t perform that action at this time.
0 commit comments