Title: gcloud run deploy fails with "Internal Error" for a specific service and region Body: I am encountering a persistent "Internal Error" when trying to deploy to a specific Cloud Run service, and I'm looking for a way to recover or remap the service URL.
The Context:
Project ID: careershot
Service Name: careershot
Problem Region: us-central1
Goal: Make the URL https://careershot-987917562718.us-central1.run.app functional, as it is a required submission link for a hackathon.
The issue began after my project's billing was temporarily inactive. After reactivating billing, the service in us-central1 became unresponsive.
The Error: Any attempt to deploy to this specific service and region fails with the same generic error:
text ERROR: (gcloud.run.deploy) The service has encountered an internal error. Please try again later. What I Have Tried: I have gone through a comprehensive troubleshooting process, which suggests a platform-level issue rather than a problem with my code or container:
Successful Deployment in Another Region: I can deploy the exact same container image successfully to asia-south1, and it works perfectly at https://careershot-987917562718.asia-south1.run.app/.
Failure with New Service Name: Attempting to deploy to us-central1 with a new service name (careershot-redirect) also fails with the same internal error. This indicates the problem is likely tied to the region within my project, not just the service name.
Forceful Deletion: I have deleted the careershot service from us-central1 entirely.
API "Hard" Reset: I have disabled the Cloud Run Admin API for the project, waited 5 minutes, and then re-enabled it to try and clear any stuck backend state.
Re-deployment Attempt: After the API reset, I tried to deploy a minimal "redirect" container to reclaim the original URL. The deployment still fails with the same "Internal Error".
The Question: Given that standard deployment methods are failing and the issue seems to be a persistent platform error in us-central1 for my project, what are my remaining options to make the original URL (...us-central1.run.app) functional again?
Is there a known gcloud command or alternative method to force a reset of a stuck regional service that I may have missed? My primary goal is to either get the original service working or have it permanently redirect to my working service in asia-south1.