GCP · Application Integration
Cloud Scheduler
Fully managed cron.
Official docsOverview
Cloud Scheduler triggers HTTP, Pub/Sub or App Engine targets on a cron schedule with retries.
When to use it
- Nightly regression triggers
- Periodic health checks
Setup
- Enable Cloud Scheduler API.
- Create job with cron expression and target.
How to use
Nightly regression
gcloud scheduler jobs create http nightly-qa \
--schedule='0 2 * * *' --uri=https://qa-runner.run.app/start --http-method=POSTQA use cases
- Trigger Cloud Run job that executes the nightly e2e suite.
