Where can find the docker image for building kubernetes?

1/21/2017

I want to build kubernetes locally. There are so many related go package. I think I should make a docker image for building kubernetes. Firstly, I want to know is there anyone have create the docker image for building kubernetes?.

-- firelyu
docker
kubernetes

1 Answer

1/22/2017

This snippet from the Github README might help you:

Building Kubernetes for the impatient

If you want to build Kubernetes right away there are two options:

You have a working Go environment.

$ go get -d k8s.io/kubernetes
$ cd $GOPATH/src/k8s.io/kubernetes
$ make

You have a working Docker environment.

$ git clone https://github.com/kubernetes/kubernetes
$ cd kubernetes
$ make quick-release
-- pagid
Source: StackOverflow