File tree Expand file tree Collapse file tree 4 files changed +19
-0
lines changed
helm/aws-load-balancer-controller Expand file tree Collapse file tree 4 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ The default values set by the application itself can be confirmed [here](https:/
177
177
| ` nodeSelector ` | Node labels for controller pod assignment | ` {} ` |
178
178
| ` tolerations ` | Controller pod toleration for taints | ` {} ` |
179
179
| ` affinity ` | Affinity for pod assignment | ` {} ` |
180
+ | ` topologySpreadConstraints ` | Topology Spread Constraints for pod assignment | ` {} ` |
180
181
| ` podAnnotations ` | Annotations to add to each pod | ` {} ` |
181
182
| ` podLabels ` | Labels to add to each pod | ` {} ` |
182
183
| ` rbac.create ` | if ` true ` , create and use RBAC resources | ` true ` |
Original file line number Diff line number Diff line change @@ -196,3 +196,7 @@ spec:
196
196
{{- if .Values.priorityClassName }}
197
197
priorityClassName : {{ .Values.priorityClassName | quote }}
198
198
{{- end }}
199
+ {{- with .Values.topologySpreadConstraints }}
200
+ topologySpreadConstraints :
201
+ {{- toYaml . | nindent 8 }}
202
+ {{- end }}
Original file line number Diff line number Diff line change @@ -63,6 +63,13 @@ tolerations: []
63
63
64
64
affinity : {}
65
65
66
+ # topologySpreadConstraints is a stable feature of k8s v1.19 which provides the ability to
67
+ # control how Pods are spread across your cluster among failure-domains such as regions, zones,
68
+ # nodes, and other user-defined topology domains.
69
+ #
70
+ # more details here: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
71
+ topologySpreadConstraints : {}
72
+
66
73
podAnnotations : {}
67
74
68
75
podLabels : {}
Original file line number Diff line number Diff line change @@ -67,6 +67,13 @@ tolerations: []
67
67
68
68
affinity : {}
69
69
70
+ # topologySpreadConstraints is a stable feature of k8s v1.19 which provides the ability to
71
+ # control how Pods are spread across your cluster among failure-domains such as regions, zones,
72
+ # nodes, and other user-defined topology domains.
73
+ #
74
+ # more details here: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
75
+ topologySpreadConstraints : {}
76
+
70
77
updateStrategy : {}
71
78
# type: RollingUpdate
72
79
# rollingUpdate:
You can’t perform that action at this time.
0 commit comments