Add a multi-node startup guide.

This commit is contained in:
Brendan Burns
2015-04-06 16:29:46 -07:00
parent ed2192a61e
commit 42e4eaa98a
2 changed files with 108 additions and 0 deletions

View File

@@ -74,3 +74,5 @@ Note that you will need run this curl command on your boot2docker VM if you are
### A note on turning down your cluster
Many of these containers run under the management of the ```kubelet``` binary, which attempts to keep containers running, even if they fail. So, in order to turn down
the cluster, you need to first kill the kubelet container, and then any other containers.
You may use ```docker ps -a | awk '{print $1}' | xargs docker kill```, note this removes _all_ containers running under Docker, so use with caution.