My question: Is all traffic from users to Knative service/pod must traverse through Master node?
For example: I, as a customer from outside of the cluster, create a curl request to a service (pod HelloWorld), then is it true that my request and the return result for my request (from pod Hello World) must go through the Master node first before reaching the destination?
I have done a small test by creating a curl request from outside to a HelloWorld service in my cluster and captured packet flows by tcpdump: flow traces
It seems to me that:
Curl traffic for HelloWorld arrives at kourier-internal pod that is residing in Master.
Traffic then is forwarded to activator pod, which is also in Master.
Now traffic is routed to the Worker node, where HelloWorld pod stays.
After being processed in HelloWorld in the Worker node, the return result will be sent back in the reverse path as described above.
Is my explanation correct? and for me this routing is kinda weird ... it creates extra latency and put heavy bandwidth pressure on the paths to the Master node :( Is there a way to route traffic directly from outside to the Worker node where my pod is located? Thanks in advance everyone!