I have started pods with command
$ kubectl run busybox --image=busybox --restart=Never --tty -i --generator=run-pod/v1
Something went wrong
With deployments that have stateful sets (or services, jobs, etc.) you can use this command:
This command terminates anything that runs in the specified
kubectl -n delete replicasets,deployments,jobs,service,pods,statefulsets --all
And forceful
kubectl -n delete replicasets,deployments,jobs,service,pods,statefulsets --all --cascade=true --grace-period=0 --force