This project will not be updated to support Kubernetes 1.2. It's easier to start Kubernetes from version 1.2.0 onwards. Only one docker run
command is required. Therefore it doesn't really make sense to use Docker Compose any more.
I will be deprecating this project in favour of kid, which is a single Bash script that you can place in your $PATH
and call from anywhere.
Launch Kubernetes using Docker via Docker Compose
The following will also be set up for you:
On Linux we'll run Kubernetes using a local Docker Engine. You will also need Docker Compose as well as the kubectl tool. To launch the cluster:
./kube-up.sh
On OS X we'll launch Kubernetes inside a boot2docker VM via Docker Machine. You will need to have Docker Machine (v0.5.0 or newer), Docker Compose, and the kubectl tool installed locally. First start your boot2docker VM:
docker-machine start <name>
eval "$(docker-machine env $(docker-machine active))"
Then, launch the Kubernetes cluster in boot2docker via Docker Machine:
./kube-up.sh
The script will set up port forwarding so that you can use kubectl locally without having to ssh into boot2docker.
kubectl cluster-info
Kubernetes master is running at http://localhost:8080
KubeUI is running at http://localhost:8080/api/v1/proxy/namespaces/kube-system/services/kube-ui
You can access Kube UI at http://localhost:8080/ui.
./kube-down.sh
This will also remove any services, replication controllers and pods that are running in the cluster.