I am unable to permanently delete Google App Engine managed VMs I\'ve created. I\'ve deleted them multiple times both from the developer\'s console and by using the gcloud
I wanted to update this post with some of my solutions to deploying (with versions) and deleting instances on Google Compute Engine's managed VMs. Here's a solution I found for deleting the default GCE managed VM:
gcloud components update
in the Google Cloud SDK Shell.vm:true
, resources:
section, and manual scaling:
section.
. Mine looks like 20150722t1245032
with the words (default)
indicating the default version.gcloud preview app deploy "...\app.yaml" --set-default --version=
.I was also taught how to stop deploying additional instances:
gcloud preview app deploy "...\app.yaml" --set-default --version=
. @ZacharyNewman was able to help me with this problem.And finally, this is how to delete the additional versions of an instance:
Hope this helps!