Ambassador shows no healthy upstream

3/19/2019

I have setup Kubernetes in CentOS with 1 master and a separate node. Added Ambassador GW and later a service with mapping. When I try to access the end service using the GW mapping it responds with no healthy upstream message.

-- Sony Joseph
ambassador
kubernetes

1 Answer

7/11/2019

In my case the mapping was right but the service was actually in different namespace than Ambassador. I was missing the .namespace in the service name:

So change the service from service: <service.name> to
service: <service.name>.<namespace>

-- Ivan Aracki
Source: StackOverflow