Kubernetes

How does scheduling work in kubernetes?

Difficulty: unrated

Source: bregman-arie/devops-exercises by Arie Bregman

Answer

The control plane component kube-scheduler asks the following questions,

  1. What to schedule? It tries to understand the pod-definition specifications
  2. Which node to schedule? It tries to determine the best node with available resources to spin a pod
  3. Binds the Pod to a given node

View more here