Re: [google-appengine] Is cron.yaml supported with custom runtimes?

2017-03-04 Thread 'Adam (Cloud Platform Support)' via Google App Engine
Are you using a base image in your Dockerfile that is an App Engine runtime? If you use a non-App Engine base image, the App Engine Cron Service will not be available. On Saturday, March 4, 2017 at 2:55:11 PM UTC-5, Ben Rometsch wrote: > > Its a Java/Docker/FlexVM app not a standard Python appen

Re: [google-appengine] Is cron.yaml supported with custom runtimes?

2017-03-04 Thread Ben Rometsch
Its a Java/Docker/FlexVM app not a standard Python appengine app...? On Saturday, 4 March 2017 14:46:41 UTC, Nickolas Daskalou wrote: > > Have you updated your crons with something like this? > > > appcfg.py update_cron dir_with_cron_file? > > See here for more info: > > > https://cloud.google.com

Re: [google-appengine] Is cron.yaml supported with custom runtimes?

2017-03-04 Thread Nickolas Daskalou
Have you updated your crons with something like this? > appcfg.py update_cron dir_with_cron_file? See here for more info: https://cloud.google.com/appengine/docs/standard/python/tools/appcfg-arguments#update_cron You'll also need to ensure the /tasks/test URL is routed to your Flex environment

[google-appengine] Is cron.yaml supported with custom runtimes?

2017-03-04 Thread Ben Rometsch
Hi, I'm running a custom Docker runtime on flexible VMs. I have an cron.yaml file in my root dir that looks like: cron: - description: daily summary job url: /tasks/test schedule: every 1 minutes It's not being run. Is cron.yaml supported in custom Docker runtimes? The documentation doesn'