Kubernetes pod gets recreated when deleted

I have started pods with command $ kubectl run busybox \ –image=busybox \ –restart=Never \ –tty \ -i \ –generator=run-pod/v1 Something went wrong, and now I can’t delete this Pod. I tried using the methods described below but the Pod keeps being recreated. $ kubectl delete pods busybox-na3tm pod “busybox-na3tm” deleted $ kubectl get pods … Read more