I'm doing some test using Cloud Run in a local environment. Source code is here.
It is a really simple demo app made of 2 services that I execute on different port using gcloud cli:
hello-world
gcloud alpha code dev --builder=gcr.io/buildpacks/builder:v1 --local-port=8080
hello-world-2
gcloud alpha code dev --builder=gcr.io/buildpacks/builder:v1 --local-port=8081
I need to do an HTTP call from hello-world to hello-world-2. What is the best way to do this?
localhost:8081
from hello-world service? – guillaume blaquiere