I am currently using GO to catch an email on my AppEngine which has been working, but I am having trouble getting the compute engine started utilizing my own persistent disk.
I was starting to prototype calling a Python script and attempted to deploy my GO application to the AppEngine using the "goapp deploy" command.
I received a goapp command not found error. (Which has worked in the past perfectly)
So I was confused, and went looking for the command and it does not seem to exist in the google-cloud-sdk/bin directory anymore?
Then being really confused, I tried to reinstall it using the following commands, only to find out that it was no longer distributed?
I am a bit lost, can anyone please provide some insight on how I am "officially" supposed to be deploying apps?
There seems to be plenty of info out there still about the "goapp deploy" command, but I can't find anything on starting a compute engine using GO instead of Python.
sudo gcloud components update gae-go
WARNING: Component [gae-go] no longer exists.
WARNING: The standalone App Engine SDKs are no longer distributed through the Cloud SDK
(however, the appcfg and dev_appserver commands remain the official and
supported way of using App Engine from the command line). If you want to
continue using these tools, they are available for download from the official
App Engine download page here:
https://cloud.google.com/appengine/downloadsThanks
Dave