Help diagnosing local testing networking issues with minikube
See original GitHub issueI’m no longer able to get my local environment to run tests. Worker can connect to the scheduler in the local process, but the host process can’t connect down to the workers running in minikube. Historically I think I’ve resolved this with ip route
, however the instructions in the README are no longer doing me much good.
mrocklin@carbon:~/workspace/dask-kubernetes$ sudo ip route add 172.17.0.0/16 via $(minikube ip)
[sudo] password for mrocklin:
RTNETLINK answers: File exists
mrocklin@carbon:~/workspace/dask-kubernetes$ sudo cat /etc/docker/daemon.json
{
"bip": "172.19.1.1/16"
}
This is stopping me from making progress on this library.
cc @yuvipanda in case he has suggestions
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:9 (2 by maintainers)
Top Results From Across the Web
Troubleshooting Kubernetes Networking Issues - Teleport
How to diagnose. Start with a quick look at the allocated pod IP addresses: $ kubectl get pods -o wide NAME READY STATUS...
Read more >Network Policy - Minikube - Kubernetes
minikube allows users to create and test network policies in the local Kubernetes cluster. This is useful since it allows the network ......
Read more >Unable to connect to the server: dial tcp 192.168.99.100:8443 ...
Problem statement and error: After starting minikube on my mac, I cannot connect to the server using kubectl version.
Read more >Troubleshooting minikube - kubernetes - Stack Overflow
What information is available to help troubleshoot minikube? What approach would people suggest to diagnose this? Here is an update to the ...
Read more >Debug Services | Kubernetes
Assuming you have confirmed that DNS works, the next thing to test is whether your Service works by its IP address. From a...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’ll reraise next time I run into this.
I got the same problem ; see the last comment of #127.