Run Ambassador in local dev environment without Kubernetes

590 views Asked by At

I am trying to run Ambassador API gateway on my local dev environment so I would simulate what I'll end up with on production - the difference is that on prod my solution will be running in Kubernetes. To do so, I'm installing Ambassador into Docker Desktop and adding the required configuration to route requests to my microservices. Unfortunately, it did not work for me and I'm getting the error below:

upstream connect error or disconnect/reset before headers. reset reason: connection failure

I assume that's due to an issue in the mapping file, which is as follows:

apiVersion: ambassador/v2
kind:  Mapping
name:  institutions_mapping
prefix: /ins/
service: localhost:44332

So what I'm basically trying to do is rewrite all requests coming to http://{ambassador_url}/ins to a service running locally in IIS Express (through Visual Studio) on port 44332.

What am I missing?

1

There are 1 answers

2
peteroneilljr On

I think you may be better off using another one of Ambassador Labs tools called Telepresence.

https://www.telepresence.io/

With Telepresence you can take your local service you have running on localhost and project it into your cluster to see how it performs. This way you don't need to spin up a local cluster, and can get real time feedback on how your service operates with other services in the cluster.