I've created an ingress with traefik. But what is ...
# general
b
I've created an ingress with traefik. But what is strange is that the command "ss -tlnp" on the server doses not show any process that bind to port 80.
c
That's because nothing binds to 80 on the host. Kubernetes uses iptables to forward traffic between network namespaces.
b
Very interesting.