Hi Mumshad, Kube-Schedular rank the nodes and internally it uses the priority fu . . .

Omprakash Kalagoni:
Hi Mumshad, Kube-Schedular rank the nodes and internally it uses the priority function. Same example reference in the video, if the both nodes have same capacity then how it ranks the nodes.

Mohamed Ayman:
kube-scheduler selects a node for the pod in a 2-step operation:

  1. Filtering
  2. Scoring
    You can refer to this doc:
    https://kubernetes.io/docs/concepts/scheduling-eviction/kube-scheduler/#kube-scheduler-implementation

Omprakash Kalagoni:
Thank you.