Where did GAE push-to-deploy pipelines go? I see all the new stuff with Jenkins and all, but is the good old pipeline setup gone? It took like 10 seconds to setup and worked really well recently. I still use it for ~5 ongoing production environments. I am in need of using it for the next project, but I can't find it.
If all else fails, do we have to use Jenkins? It might not be a problem in the end, however I would question the need to be billed for act of deploying own source code. Anyway it would be a mess to setup at first.
I did get this email, and now stumbled upon it... I think it states what's going on.
Links disappeared when pasting the email so the last link to the docs is: https://cloud.google.com/sdk/gcloud-app
I think I should be able to continue deploying source for rexisting projects usinggcloud app update
... I have yet to try though.This thread is also related: https://groups.google.com/forum/#!topic/google-appengine/XUIh7QlO37U It specifically states that existing projects should continue to be able to deploy as we used to be able to. New projects would likely have to use Jenkins... hm.
There is no command like
. Instead we have to cd into the project folder where the app.yaml is and run:gcloud app update
gcloud preview app deploy .
But FIRST(!) we have to install something more (if the above command fails):
gcloud components update app
Of course, this means that there is no "push", only a "deploy". There will be no relation to a central repository at Google. You have to host your own repo for that... in essence, this is not much different than deploying using the desktop GoogleAppEngineLauncher to me.