blueperf / acmeair-mainservice-java

This service contains the front end of AcmeAir Microservices.
Apache License 2.0
26 stars 88 forks source link

How to expose Configuration Page externally? #21

Closed spitfire88 closed 5 years ago

spitfire88 commented 5 years ago

I am running this app in a GCP cluster. I would like to expose it externally as a service to access its Configuration page. I tried,

kubectl expose deployment acmeair-mainservice --type=LoadBalancer --name=acmeair-external

It leads me to this webpage on port http://EXTERNAL-IP:9080/ acme

Is this the expected behaviour?

jnativio commented 5 years ago

You should append /acmeair to the URL.

spitfire88 commented 5 years ago

Thank you, that worked.