onprema

Scheduling Pods on Certain Nodes

PodAffinity lets you say things like:

PodAntiAffinity does the inverse

Taints can be applied to nodes. They are essentially labels that signify a node has a certain characteristic. Tolerations are applied to pods, and say "hey there, i am a pod and i can tolerate these taints:..." A good use case is for scheduling ARM-based containers to run on nodes that are tainted with ARM cpus.

#kubernetes