1
0
mirror of https://github.com/rancher/rke.git synced 2025-06-28 16:28:26 +00:00

Add pod antiaffinity to kubedns template

This commit is contained in:
galal-hussein 2018-05-07 21:11:16 +02:00
parent 8fb0f2409c
commit aa60b68992

View File

@ -113,6 +113,17 @@ spec:
annotations:
scheduler.alpha.kubernetes.io/critical-pod: ''
spec:
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
labelSelector:
matchExpressions:
- key: k8s-app
operator: In
values: ["kube-dns"]
topologyKey: kubernetes.io/hostname
tolerations:
- key: "CriticalAddonsOnly"
operator: "Exists"