|
|
|
|
|
by brendandburns
4028 days ago
|
|
(kubernetes contributor here) SDN isn't required for k8s, what is required is that each Pod (group of containers) get it's own IP address, and that the IP address is routeable in the cluster. In many cases, the easiest way to achieve this is via an SDN, but it is also achievable by programming traditional routers. The reason for wanting an IP address per pod is that it eliminates the need for port mangling, which dramatically simplifies wiring applications together. |
|