Assuming this scenario:
Service A (ClusterIP):
- Pod1 (Image1)
- Pod2 (Image1)
- Pod3 (Image1)
Service B (ClusterIP):
- Pod1 (Image2)
- Pod2 (Image2)
- Pod3 (Image2)
Assuming that I have an Ingress Controller:
/svcA > This will redirect to Service A /svcB > This will redirect to Service B
So my question is, the Service is still doing a Load Balancing between the pods? What if Pod1 of Service A is busy and the request has to be attender by either Pod2 or Pod3 of Service A ?? Who is performing that Load Balancing?
Thanks!