Hello - I am trying to understand how "hostNetwork: true" works with internal pod communication. For example, if I create a daemonSet with hostNetwork : true and
ClusterFirstWithHostNet should this pod be able to :
1. Bind to the host network
2. Communicate to services in the K8s network.
The reason I ask is that in Docker if you bind to the host network you cannot communicate over the overlay network to other services. It seems from reading the hostNetwork: true should works to allow both host and internal K8s communication. Any explanation here would be great.
Thanks
Chase