I have a docker registry(insecure) on my bastion/jumpbox.
We are running Kubernetes and I am trying to run a pod on a cluster that pulls an image from this registry. Since containerd is the container runtime, it throws an error ( ImagePullBackOff ):
Failed to pull image "1.1.1.2:4657/82d4bb7b89/dockerimages/abc:v2.3.0": http: server gave HTTP response to HTTPS client
It looks like with the ctr cli we could use --plain-http to pull the image, however,that wouldn't work for this scenario.
Is there any workaround to this error ? Also, we are using "kubectl create -f" to bring up the pod.