Azure / service-fabric-mesh-preview

Service Fabric Mesh is the Service Fabric's serverless offering to enable developers to deploy containerized applications without managing infrastructure. Service Fabric Mesh , aka project “SeaBreeze” is currently available in private preview. This repository will be used for tracking bugs/feature requests as GitHub issues and for maintaining the latest documentation.
MIT License
83 stars 10 forks source link

Local Cluster doesn't show multiple endpoints in gateway/reverse proxy #381

Open oatsoda opened 4 years ago

oatsoda commented 4 years ago

I have the following in my Gateway.yaml:

image

And the following in my Service.yaml:

image image

When I run my application/server on my local cluster, the Gateway Proxy only shows a single endpoint rather than all three?

image

I've tried removing some of the endpoints and it only ever picks one of them to show in the UI. I am trying to track down some connection issues with the SOAP endpoint so I am trying to rule out whether this is the issue...

Is this a bug just with the UI or are endpoints not ALL being exposed?

arturenault commented 4 years ago

On SFX only one of the endpoints will be shown for a gateway--that's just the primary one we use for service resolution internally. Other configured endpoints should still work despite not being shown.

oatsoda commented 4 years ago

OK, thanks @arturenault for confirming that.