I am starting exploring runnign docker containers with Kubernetes. I did the following
- Docker run etcd
- docker run master
- docker run service proxy
- kubectl run web --image=nginx
To cleanup the state, I first stopped all the containers and cleared the downloaded images. However I still see pods running.
$ kubectl get pods
NAME READY STATUS RESTARTS AGE
web-3476088249-w66jr 1/1 Running 0 16m
How can I remove this?