admin管理员组

文章数量:1355255

My Google Cloud Run assigned URL unexpectedly changed from:

https://xxxxx-yyyyy-dt.a.run.app

to:

https://xxxxx-yyyyy-an.a.run.app

This happened without any deployments or updates on my part. Is this the expected behavior, or could it be a bug?

My Google Cloud Run assigned URL unexpectedly changed from:

https://xxxxx-yyyyy-dt.a.run.app

to:

https://xxxxx-yyyyy-an.a.run.app

This happened without any deployments or updates on my part. Is this the expected behavior, or could it be a bug?

Share Improve this question asked Mar 28 at 12:05 H.HH.H 3663 silver badges11 bronze badges 2
  • Have you checked the logs? What do the logs show? Are you getting any error messages? Also check whether both the links are working or not? – Sandeep Vokkareni Commented Mar 28 at 13:58
  • Do you have services with the same name deployed in multiple regions? Are you sure you're checking the right region? – Ben K Commented Mar 31 at 2:43
Add a comment  | 

1 Answer 1

Reset to default 0

The relevant docs are here.

The URL you are talking about here is the non-deterministic URL, for which the docs say: After you deploy the service, however, the URL remains stable. Hence it should not change without action from your side. So if it did in fact change, then that would be a bug.

Fwiw I personally never use the non-deterministic urls, and just use the much more readable deterministic urls, which can't really change at all.

本文标签: Google Cloud Run assigned URL unexpectedly changedStack Overflow