I downloaded kubernetes (using the command below):
export KUBERNETES_PROVIDER=aws; wget -q -O - https://get.k8s.io | bash
Now I have 4 minions machine and one master machine in my aws account.
I want my cluster to run 3 docker containers (just a random number), just to see how this works.
currently I don't have my own docker containers so I want to create just demo ones, maybe using some popular image from the docker hub.(image to create containers of https://hub.docker.com/r/williamyeh/scala/)
How do I proceed from here? How do I create those containers and link them with the cluster?
I'm using Mac.