项目作者: greg9702

项目描述 :
Standalone Kubernetes cluster scheduler using real time Pods usage statistics
高级语言: Python
项目地址: git://github.com/greg9702/custom-scheduler.git
创建时间: 2019-07-20T19:40:11Z
项目社区:https://github.com/greg9702/custom-scheduler

开源协议:

下载


Overview

Main goal of the project is to create my own scheduler.

Default one schedule Pods on Nodes according to labels assigned to each Pod. link

Assigning label to Pod isn’t required. Idea for my custom scheduler is to schedule

Pods based on real time resources usage for Pods which do not have labels assigned.

Cluster

To create a local cluster I am using kind.

The biggest advantage of this solution is lightweightness of a cluster.

We do not waste resources to run multiple OS, because every single node is Docker container, not VM.

More about kind you can read here.

Used 3rd part

Used metrics-server as a tool which provides
resources used by Pods.