I have a project build and deploy in app engine and in Cloud Run. Now I want to use only the cloud Run deployed, so I would to create a redirect to my cloud run url when someone go to app engine link.
Is it possible?
I read that maybe I should create a dispatch.yaml file for the appEngine.
In this case I should create a file like:
dispatch:
- url: "url_of_cloud_run"
service: default
Anyway my question is how can I redirect when someone go to the AppEngine link to the Cloud Run link?
Thank you