How to see the history in Pod Kubernetes – Nginx
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…