Hi There,
I have 2 clusters: cluster A and cluster B.
I have an app A running on cluster A (docker container) and an app B running on cluster B (docker container).
All instances of app B needs to send messages (REST API) to app A and I want that to be happening using the app hostname (the one google Kubernetes assigns to each pod of a deployed app) but the host cannot be resolved apparently because app A fails to reach app B using app B hostname.
Any idea what I need to do here? Note that I can expose a load balancer and that works BUT I really need to reach individual pods here.
Thanks!