building kubernetes on your local machine - docker
In case you would like to build kubernetes on your docker machine, please do the following :-
a) Download and run the following Dockerfile.
b) Next, run the following comand - "docker run -it
c) apt-get update
d) apt-get install rsync
e) go get -d k8s.io/kubernetes
f) cd $GOPATH/src/k8s.io/kubernetes
g) make
And if all things goes well, you will get the following screen :-
That's it! :)
Comments