Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 2.05 KB

File metadata and controls

47 lines (36 loc) · 2.05 KB

Kube Scheduler

In this section, we will take a look at kube-scheduler.

kube-scheduler is responsible for scheduling pods on nodes.

  • The kube-scheduler is only responsible for deciding which pod goes on which node. It doesn't actually place the pod on the nodes, that's the job of the kubelet.

    kube-scheduler1

Why do you need a Scheduler?

kube-scheduler2

Install kube-scheduler - Manual

  • Download the kubescheduler binary from the kubernetes release pages kube-scheduler. For example: To download kube-scheduler v1.13.0, Run the below command.

    $ wget https://storage.googleapis.com/kubernetes-release/release/v1.13.0/bin/linux/amd64/kube-scheduler
    
  • Extract it

  • Run it as a service

    kube-scheduler3

View kube-scheduler options - kubeadm