Kubernetes Guide
  • Kubernetes Guide
  • Kubernetes Components
    • Master Components
      • cloud-controller-manager
      • etcd
      • kube-apiserver
      • kube-controller-manager
      • kube-scheduler
    • Node Components
      • Container Runtime
      • kubelet
      • kube-proxy
  • Kubernetes Objects
    • Pods
  • Kubernetes Concepts
    • Networking
  • Minikube
    • References
Powered by GitBook
On this page

Was this helpful?

  1. Kubernetes Components
  2. Master Components

kube-scheduler

Component watching newly created pods and assign them a node to run on

When a new pod is created, determines which node the pod will be run on according to different factors.

Factors taken into account for scheduling decisions include individual and collective resource requirements, hardware/software/policy constraints, affinity and anti-affinity specifications, data locality, inter-workload interference and deadlines.

Previouskube-controller-managerNextNode Components

Last updated 5 years ago

Was this helpful?