GitXplorerGitXplorer
K

learning-about-container-schedulers

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
f611cb063472fb605ab31ee9c6be04afb8cc8d68

Build out a basic scheduler skeleton

KKushalP committed 10 years ago
Unverified
40a09f9814dba5742c88e8b9a7152ffff66f7b84

Bootstrap tests using ginkgo

KKushalP committed 10 years ago
Unverified
eb9eb4b7a65a5c20d949ba14f1f298238a995cc7

Ignore common Go artefacts

KKushalP committed 10 years ago
Unverified
24e66383b24353c84b306270de413fa6a77e6138

Provide a short description for the project

KKushalP committed 10 years ago
Unverified
006cd8c26073d8ba7be5cf9ff44a4aaf3efb01b8

Intialise empty repo

KKushalP committed 10 years ago

README

The README file for this repository.

Learning about container schedulers

This is a repository of artefacts I'm using to learn more about how container schedulers work. The common platform used is the Kubernetes project and the scheduler interface it exposes.

Schedulers

Currently there's only a single scheduler that's been implemented: the random scheduler.

Development

The project uses Godep to manage dependencies.

To download Godep run the following:

go install github.com/tools/godep

Fetching dependencies

To check out listed dependency versions in your $GOPATH:

godep restore

Running the tests

To run the tests you'll need to run the go tool with saved dependencies under Godep:

godep go test -v ./...