How to kill pods on Kubernetes local setup -
i starting exploring runnign docker containers kubernetes. did following
- docker run etcd
- docker run master
- docker run service proxy
- kubectl run web --image=nginx
to cleanup state, first stopped containers , cleared downloaded images. still see pods running.
$ kubectl pods name ready status restarts age web-3476088249-w66jr 1/1 running 0 16m
how can remove this?
Comments
Post a Comment