Tag: tolerations

Taints and tolerations in Kubernetes

Node affinity is a property of Pods that attracts them to a set of nodes. Taints are the opposite — they allow a node to repel a set of pods. Tolerations are applied to pods. Tolerations allow the scheduler to schedule pods with matching taints. 1) Create a taint on...