Deploying Django on Google App Engine ==> ERROR: (gcloud.app.deploy) NOT_FOUND: Unable to retrieve P4SA(...)

13,955

Solution 1

Same problem with Node, just waited and tryed again the command later and that's work for me (in the same shell, no steps between).

Solution 2

I had the same problem but with flask. I follow this tutorial of google here and When I ran the comand gcloud app deploy I got the same error.

My solution was to Enable the Cloud Build API service in my project (in the Navigation Menu -> CI/CD). I did that and everything worked fine and I was able to complete the tutorial.

Solution 3

I had the same issue when deploying a Java application to an App Engine.

Enabling the 'Cloud Build API' under the APIs & Services section in the Google console resolved the issue for me.

Share:
13,955
Benjamin Carafa
Author by

Benjamin Carafa

Updated on June 14, 2022

Comments

  • Benjamin Carafa
    Benjamin Carafa almost 2 years

    I'm trying to deploy a Django application on Google App Engine. I followed the instructions given here. The only problem is that when I execute the command gcloud app deploy I than get the error:

    ERROR: (gcloud.app.deploy) NOT_FOUND: Unable to retrieve P4SA: [[email protected]] from GAIA. Could be GAIA propagation delay or request from deleted apps.

    I didn't find anything online and can't get through. Thanks in advance!