Networking & Kubernetes #1898
-
Hi there, I've been migrating my old K8s cluster to my new K8s cluster recently. Of course, not leaving Transmission behind. After setting up the whole manifest, the web UI is reachable, however Transmission is not reachable from other pods in the same namespace. I've verified all Pods can talk to all other Pods, with the exception of Transmission:
The Transmission service is called Transmission is configured with the I'm unsure what is up here, or if this is even the place to ask. But some advice would be greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
After a lot of digging, I've found the solution. It worked with the ingress controller, because it proxies the traffic to Transmission, from a pod, so it is on the pod network. However when accessing it via a service, it is on the service CIDR, and thus not on the pod CIDR. |
Beta Was this translation helpful? Give feedback.
After a lot of digging, I've found the solution.
TL;DR: Add your service CIDR to the LOCAL_NETWORK variable
It worked with the ingress controller, because it proxies the traffic to Transmission, from a pod, so it is on the pod network. However when accessing it via a service, it is on the service CIDR, and thus not on the pod CIDR.