I have installed a local Kubernetes cluster using minikube following the instructions here.
I\'m under a corporate proxy. Therefore I have set the http_proxy and htt
Fixed this. The fix was to have the no_proxy details in NO_PROXY as well.
export NO_PROXY=$no_proxy,$(minikube ip)
Relevant thread. Hope this will be useful to someone.