I use this kubectl to deploy a pod with the image nginx:
kubectl create deployment --image=<image-name-1.0> image-app
Now I want to update this pod with image=<image-name-2.0> and run this command:
kubectl create deployment --image=<image-name-2.0> image-app
My question is: will the old pod log be updated after updating with image-name-2.0?
Can I see all history logs? I mean the both of them.