Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I completely delete my App Engine instance?

I've decided to go with Google Compute Engine instead of App Engine.
I want to completely disable the App Engine.
I've already deployed an empty project (app.yaml + empty index.php) instead of the older one to save on storage space, but the URL (*.appspot.com) is still accessible and it'll create instances when accessed.
How do I disable that?

like image 516
Asaf Avatar asked Dec 04 '14 12:12

Asaf


People also ask

How do I delete an appengine project?

It will take 30 days for the appengine project to be completely deleted. For the Cloud Developer Console you need to select the App Project that you want to delete. Then you have to go to "Billing & settings". Then click "Delete project" to delete your App project. Use this console to delete your app. Click the "Remove" Icon to delete your apps.

How do I stop an app from running in App Engine?

Method 1: Disable Application. Go into App Engine, Settings, click on Disable application. Method 2: Stop Instance. Go into App Engine, Versions, and then click on STOP. cheers. Method 2 does not work. Stop is disabled and there is a tooltip saying that stop cannot be done for versions with manual or dynamic scaling.

How do I stop the app from changing the Ui?

Hope this will be of some help to others until the UI changes again. Go into App Engine, Settings, click on Disable application. Go into App Engine, Versions, and then click on STOP. Method 2 does not work. Stop is disabled and there is a tooltip saying that stop cannot be done for versions with manual or dynamic scaling.

How do I delete an app project from my account?

For the Cloud Developer Console you need to select the App Project that you want to delete. Then you have to go to "Billing & settings". Then click "Delete project" to delete your App project.


2 Answers

If you go to application settings on the console then Disable or Delete Application you can stop instances spinning up by disabling the application or queue it for actual deletion.

You may need to go to the "original" console as I'm not sure this option is available yet on the new 'cloud' console.

This link might help with getting to that original console if needed:

https://appengine.google.com/settings?&app_id=s~YOUR_APP_ID

Here's a screenshot of the location of the disable application button on settings page:

the location of the disable application button on settings page

like image 123
Paul Collingwood Avatar answered Nov 16 '22 01:11

Paul Collingwood


You need to shutdown your project and that will queue it for deletion.

To do that, go to IAM & admin > Settings for that particular project. https://console.cloud.google.com/iam-admin/settings/project?project=%appengine_id%

Then click on SHUT DOWN.

enter image description here

It will take 30 days for the appengine project to be completely deleted.

like image 27
Poly Bug Avatar answered Nov 16 '22 02:11

Poly Bug