Kubernetes scheduler is a control plane process which assigns Pods to Nodes. The scheduler determines which Nodes are valid placements for each Pod in the scheduling queue according to constraints and available resources. The scheduler then ranks each valid Node and binds the Pod to a suitable Node. Multiple different schedulers may be used within a cluster; kube-scheduler is the reference implementation.
- Kubernetes 1.21 or later
The chart can be installed as follows:
$ helm repo add kubernetes-scheduler https://pixelfederation.github.io/kubernetes-scheduler-chart
$ helm --namespace=kube-system install my-scheduler kubernetes-scheduler/kubernetes-schedulerTo uninstall/delete the Kubernetes scheduler deployment:
$ helm uninstall my-schedulerThe command removes all the Kubernetes components associated with the chart and deletes the release.