Pre-release documentation can't be made available to the public unfortunately. My recommendation is to read the current available App Engine <https://cloud.google.com/appengine/docs>and gcloud docs <https://cloud.google.com/sdk/gcloud/reference/app/deploy> and test. I can list a few main differences here though:
1) New versions are promoted to receive all traffic by default. I'm of the opinion that this is bad, and hopefully the default will change, but for now you should disable this with the following command: gcloud config set app/promote_by_default false 2) In your app.yaml and service .yaml files, the 'application: ' and 'version: ' fields are not used. You should set the project to deploy to with 'gcloud config set project', and the version is automatically generated, or set with the '--version=' flag to 'gcloud app deploy'. 3) You can use 'gcloud app deploy <deployable.yaml>' for any .yaml, such as cron.yaml, dispatch.yaml and indexes.yaml. No need for separate commands like update_indexes and update_dispatch. 4) For Java apps, everything is done using the new Gcloud Maven Plugin <https://cloud.google.com/appengine/docs/java/tools/using-maven> which handles translating the .xml config files to .yaml files for deployment. It's similar to how the App Engine Maven Plugin worked on the standalone SDK, but the plugin goals are different. 5) There is no vacuum_indexes command, instead you would use 'gcloud preview datastore cleanup-indexes' <https://cloud.google.com/sdk/gcloud/reference/preview/datastore/cleanup-indexes> . On Saturday, December 31, 2016 at 11:20:12 AM UTC-5, Brian wrote: > > I just installed/updated my local gcloud SDK after a Ubuntu 14.04 to 16.04 > upgrade. Apparently, appcfg is no longer available by default. I'd like to > start using the preferred gcloud commands to manage my projects but I can't > find an "appcfg" to "gcloud app deploy" migration guide anywhere. On Stack > Overflow a while back, Zachary mentioned a migration guide > <http://stackoverflow.com/questions/39280666/gcloud-app-deploy-vs-appcfg-py/39281006#> > > was planned. > > From what I've read, the changes look good, but there seems to be several > gotchas that could really mess-up my active projects, so I would like to > review the migration guide in fine detail to avoid any problems. > > Please let me know where I can find the migration guide so I can keep my > projects moving forward. (At this point, even a rough draft would be very > useful!) > > (I would have commented on the original Stack Overflow thread, but as a > newbie there I'm not allowed because I don't have a high enough reputation > yet.) > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To post to this group, send email to google-appengine@googlegroups.com. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/c3b1a2aa-a5f2-4681-b1fb-bf61bedfb17e%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.