A demonstration of how to launch docker based tasks on Google Compute Engine using Google App Engine. Further explanation can be found on the author's blog post.
-
Install Google Cloud SDK.
-
Signup for Google Cloud Platform and get a Project Id.
-
Turn on billing (required for launching compute instances).
You will need to deploy the docker image in order the task to be runnable on compute engine. To do this run the following:
make image
Run the following:
make dev
Or if you wish to run dev_appserver.py directly
make secrets
dev_appserver -A your-project-id app.yaml
You must specify your cloud project in your-project-id
if you actually want
to launch instances on google cloud from dev_appserver.py.
Now navigate to the page http://localhost:8080/launcher
Ensure you have setup gcloud CLI to point to the right application id:
gcloud config set project your-project-id
First you have to create a cookie secret and store in your appengine project metadata. We will do this by setting 'cookie_secret' as a metadata attribute of the current google cloud project. You can do this by running:
make cloud_secrets
Now you can deploy the app:
make deploy
Now navigate to http://your-project-id.appspot.com/launcher
.
This is an example provided 'as-is' without any warranty see LICENSE.txt for details.