Status Update
Comments
va...@google.com <va...@google.com>
va...@google.com <va...@google.com> #2
Hi
Thank you for reaching out to us.
To assist us in conducting thorough investigation, we kindly request your cooperation in providing the following information regarding the reported issue.
- Has this scenario ever worked as expected in the past?
- Do you see this issue constantly or intermittently ?
- If this issue is seen intermittently, then how often do you observe this issue ? Is there any specific scenario or time at which this issue is observed ?
- To help us understand the issue better, please provide detailed steps to reliably reproduce the problem.
- It would be greatly helpful if you could attach screenshots of the output related to this issue.
Your cooperation in providing these details will enable us to dive deeper into the matter and work towards a prompt resolution. We appreciate your assistance and look forward to resolving this issue for you.
We would request you to please revert to us with the required information in common understandable language preferably English and the steps to reproduce it. Thank you for your understanding and cooperation.
al...@gmail.com <al...@gmail.com> #3
Hi,
I am the developer mentioned by OP.
- I can't tell if this ever worked as expected in the past, since it was my first experience deploying to Google App Engine. However, I believe it did work fine. There's no reason to think otherwise.
- Yes, it happened constantly. All my attempts were unsuccessful, no matter if trying to deploy from my machine or from the App Engine's cloud shell. Even when deploying different source codes, with different app.yaml configs. While the region remained as
southamerica-east-1
, it would not work. - Create new project > create an app within the project, with
southamerica-east-1
as the selected region > deploy a Java Spring Boot app to a B1 instance
mo...@google.com <mo...@google.com> #4
1. Created a new Google Cloud project.
2. Clicked App Engine in the Cloud Console.
3. Clicked the button to create a new app.
4. Clicked the pin for "southamerica-east-1".
5. Created a simple "hello world" app on my machine and tried to deploy it, per these instructions:
Outcome
After running "gcloud app deploy", I got the error message "ERROR: (gcloud.app.deploy) Error Response: [4] Timed out fetching pod."
va...@google.com <va...@google.com> #5
Hello,
Thank you for reaching out to us with your request.
We have duly noted your feedback and will thoroughly validate it. While we cannot provide an estimated time of implementation or guarantee the fulfillment of the issue, please be assured that your input is highly valued. Your feedback enables us to enhance our products and services.
We appreciate your continued trust and support in improving our Google Cloud Platform products. In case you want to report a new issue, Please do not hesitate to create a new issue on the
Once again, we sincerely appreciate your valuable feedback; Thank you for your understanding and collaboration.
ja...@gmail.com <ja...@gmail.com> #6
ku...@gmail.com <ku...@gmail.com> #7
pe...@fivestones.net <pe...@fivestones.net> #8
ct...@gmail.com <ct...@gmail.com> #9
I'm encountering the same issue when trying to deploy Python 3.x applications to the southamerica-east1 region.
Files are uploaded to the proper Cloud Storage bucket, and the build succeeds in Cloud Build, but something goes wrong when gcloud
calls google.appengine.v1(beta).Versions.CreateVersion
:
{
"done": true,
"error": {
"code": 4,
"message": "Timed out fetching pod."
},
"metadata": {
"@type": "type.googleapis.com/google.appengine.v1beta.OperationMetadataV1Beta",
"endTime": "2024-07-03T07:32:43.692Z",
"insertTime": "2024-07-03T07:28:02.391Z",
"method": "google.appengine.v1beta.Versions.CreateVersion",
"target": "apps/<redacted>/services/default/versions/20240703t042752",
"user": "<redacted>@gmail.com"
},
"name": "apps/<redacted>/operations/625b936f-82ad-4651-94d4-a03ce8731679"
}
pa...@gmail.com <pa...@gmail.com> #10
ct...@gmail.com <ct...@gmail.com> #11
The issue appears to be related to the
Deployments on projects with REDIRECTION_FROM_GCR_IO_DISABLED
(gcloud artifacts settings disable-upgrade-redirection
) work fine. However, deployments on new projects with mandatory redirection from gcr.io, or on old projects that have enabled the redirection manually (gcloud artifacts settings enable-upgrade-redirection
), will fail with a "Timed out fetching pod."
error.
Description
When the developer tries to deploy an App Engine app in southamerica-east-1, it takes several minutes, then they get the error message "ERROR: (gcloud.app.deploy) Error Response: [4] Timed out fetching pod." This is not a helpful message as it doesn't tell the developer what is wrong. There is no error in the Log Explorer.
When the developer deployed the application in us-east1, everything worked fine.