-
I created my k3d cluster, spin up my pods. Everything works fine. I notice thou, when a pod tries to connect to an external device from my local network is not able to do so. I run a few tests inside the pod, and it seems that whatever request I sent to 192.168.1.0 (which is my home network) is not working. I even tried to ping 8.8.8.8, which to my surprise it worked. The pod seems that it cannot find the host. Is there a way how to enable access to other networks?
Trying to traceroute my router
It seems able to reach google servers
The route inside the pod:
This pod should have a route to the bridge network, it seems it doesn't have one. Why is not the route enabled? What am I missing here? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I found the issue, I had to disable the internal network policy which k3s enables by default using |
Beta Was this translation helpful? Give feedback.
I found the issue, I had to disable the internal network policy which k3s enables by default using
--disable-network-policy
. Adding this argument when I build the cluster works. Now, I can ping my internal network easily.