Hey everyone, I'm integrating a couple of apps to run in a k3s single-node setup, my issue is that they have a strict no NAT requirement, is there a "standard" way to set a k3s node to exclusively not do any NATing?
c
creamy-pencil-82913
06/10/2026, 8:01 AM
Easiest way, assuming they all use distinct ports, would be to just run the pods with host network?
s
square-shoe-40280
06/10/2026, 8:29 AM
Yeah, I've looked into that and so far it's doable, but I'm worried as we integrate more applications we run into port hell.
c
creamy-pencil-82913
06/10/2026, 7:38 PM
Your other options are probably going to involve multus secondary interfaces, or other CNIs that use direct routing for pod IPs. Anything that uses a network overlay is going to NAT traffic in and out.
s
square-shoe-40280
06/12/2026, 11:35 AM
Thank you, thats what my research led me to as well, glad I wasn't reading myself into the wrong end of the abyss.