I'm using minikube for kubernetes deployment and I am getting this error:
Failed to pull image "libsynadmin/libsynmp:core-api-kubernetes-0.9.8.1": rpc error: code = Unknown desc = Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: TLS handshake timeout ?
Are you running behind company proxy then you have to use minikube start command as follows:
minikube start --docker-env HTTP_PROXY=http://$YOURPROXY:PORT \
--docker-env HTTPS_PROXY=https://$YOURPROXY:PORT
Ref: minikube issue
I think you need to create docker registry cache to pull images from since the error indicate slow internet connection
read more at Docker