According to https://kubernetes.io/docs/tasks/configure-pod-container/quality-service-pod/
Kubernetes uses QoS classes to make decisions about scheduling and evicting Pods.
I don't understand how do QoS classes have anything to do with scheduling? The documentation mentions that QoS classes determine eviction order in case of a node going out of resources.
On the other hand, scheduling uses pod priorities (PriorityClass) to set the scheduling order and preemption.
My question is what is the link between QoS and scheduling?
According to https://kubernetes.io/docs/concepts/scheduling-eviction/kube-scheduler/
So the QoS takes a role in Filtering step of kube-scheduler operation that corresponding PodFitsResources filter.
According to https://kubernetes.io/docs/reference/scheduling/policies/