Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 814 Bytes

File metadata and controls

22 lines (13 loc) · 814 Bytes

Automated Placement

This is the core function of the Kubernetes scheduler for creating new Pods in nodes that match container resource requests and grant scheduling policies

Description

Questions to ask:

  • Available Node Resources
  • Container Resource Demands
  • Node affinity (if needed)

taint - a feature of the node, it prevents Pods from scheduling onto the node unless the Pod has toleration for the taint.

References

[1] Assigning Pods to Nodes

[2] Guaranteed Scheduling For Critical Add-On Pods

[3] HA k8s cluster