mirror of https://github.com/linkerd/linkerd2.git
23 lines
831 B
YAML
23 lines
831 B
YAML
{{- define "pod-affinity" }}
|
|
affinity:
|
|
podAntiAffinity:
|
|
preferredDuringSchedulingIgnoredDuringExecution:
|
|
- weight: 100
|
|
podAffinityTerm:
|
|
labelSelector:
|
|
matchExpressions:
|
|
- key: {{ .Label }}
|
|
operator: In
|
|
values:
|
|
- {{ .Component }}
|
|
topologyKey: failure-domain.beta.kubernetes.io/zone
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
- labelSelector:
|
|
matchExpressions:
|
|
- key: {{ .Label }}
|
|
operator: In
|
|
values:
|
|
- {{ .Component }}
|
|
topologyKey: kubernetes.io/hostname
|
|
{{- end }}
|