Hi I need help for this question under image security :

lanxinjiang:
Hi I need help for this question under image security :
Screenshot 2022-02-16 at 4.43.18 PM.png

Shwetha:
You were using dockerhub to pull images so far. Dockerhub is the default one when no registry is specifically mentioned along with the image.
What if you want to deploy an image that is not present on dockerhub? like a proprietary image that you created for running your business application? You will provide the name of the registry followed by the image. example: <http://myprivateregistry.com:5000/&lt;image&gt;:&lt;versionTag|myprivateregistry.com:5000/&lt;image&gt;:&lt;versionTag>&gt;

lanxinjiang:
thank you, meaning i need to delete the Pods and re-create it?

Shwetha:
No need. If it is just the pod’s image that needs modification, you can edit the pod, update image and save. Changes will take effect.

Shwetha:
For a pod, you cannot modify anything other than image (containers and initContainers), activeDeadlineseconds and tolerations.

lanxinjiang:
thank you