Comment on Question on SSL traffic between podman containers and clients (should I run k3s?)
MigratingtoLemmy@lemmy.world 1 year agoI would probably look into plugging the RP into the appropriate podman network namespaces, or running it on a dedicated host (VM/physical - this time using SSL/TLS between RP and applications, since traffic leaves the host) and implementing port forwarding/firewalling with netfilter.
Could you detail how you would do this? Especially since the containers in my case do not support HTTPS (they do not have the libraries compiler, if I’m not wrong).
Thank you for the clarification. I do not think I’ll be running malicious containers inside my pods, but I would like to contain unencrypted traffic as much as possible. Running an RP for every pod seems doable and since I reach containers through their loopback address inside the pod, this is reasonably safe for my use-case too.
Could you confirm if one can reach one’s containers on the loopback address in a separate network namespace on podman? I was wondering about the differences between a pod and a network namespace on podman, and so far the only mention of something like this is that containers in pods share a “security context”. I don’t know enough to understand what this is since I haven’t read about pods in Kubernetes.
Thanks, I was planning to use Ansible too.
vegetaaaaaaa@lemmy.world 1 year ago
I would re-read all docs about podman networking, different network modes, experiment with systemd
PrivateNetwork
option, re-read some basic about network namespaces, etc ;) I have no precise guide as I’ve never attempted it, so I would do some research, trial and error, take notes, etc, which is the stage you’re at.I think each pod uses its own network namespace [1]. You should check the docs and experiment (
ip netns, ip addr, ip link, ip route…
).I think it’s doable, but pretty much uncharted territory - at least the docs for basic building blocks exist, but I’ve never come across a real world example of how to do this. So if you go this way, you will be on your own debugging, documenting and maintaining the system and fixing it when it breaks. It will be an interesting learning experiment though, hope you can document and share the outcome. Good luck!
MigratingtoLemmy@lemmy.world 1 year ago
Thank you, I do realise that each pod uses its own namespace. I was talking about if containers part of a different network namespace (outside of their pods) could also reach out to each other via the loopback address.
vegetaaaaaaa@lemmy.world 1 year ago
No, they can’t.
MigratingtoLemmy@lemmy.world 1 year ago
Even if containers from different pods are put in an arbitrary namespace?
Ex:
Will they be able to connect via loopback?