Not a big deal, but just wondering what is best practice for moving pods from one namespace to another?
Do you just kubectl delete
and kubectl apply
?
You cannot "move" a resource to another namespace. There might be resource with same name in the other namespace already.
So yes, you need to delete the existing pod and recreate it in the other namespace.