I have my docker-compose deployment that needs to pull the image from an insecure registry, so I will have to add to update the file /etc/docker/daemon.json and add the following entry to make it work.
{
"insecure-registries": [hostname]
}
Now i want to move this deployment from standalone docker to Kubernetes, How can i update my Kubernetes namespace to use deploy the image from an insecure registry?