Generates a .timer and .service file pair. Place both in /etc/systemd/system/ (or ~/.config/systemd/user/), then run systemctl daemon-reload and systemctl enable --now <name>.timer.
Note: The OnCalendar field uses systemd calendar syntax. Edit ExecStart= in the .service file to point to your script or command.
AWS EventBridge rule in JSON format. Use with the AWS CLI, CloudFormation, or the EventBridge console. The cron expression uses AWS 6-field format (with year). Either day-of-month or day-of-week must be ?.
Note: Replace the Target ARN and Role ARN placeholders with your actual values. Add "State": "ENABLED" when you are ready to activate the rule.
AWS EventBridge rule in YAML format for use with CloudFormation or the Serverless Framework.
Note: This is a CloudFormation resource definition. Include it in your template’s Resources section and replace the placeholder ARNs.
GCP Cloud Scheduler job using the gcloud CLI. The schedule uses standard 5-field cron syntax. Timezone is taken from the builder’s timezone selector.
Note: Replace the URI, HTTP method, and body placeholders with your actual endpoint details. The --time-zone flag uses IANA timezone names (e.g. America/New_York).
Kubernetes CronJob manifest in YAML format. Apply with kubectl apply -f cronjob.yaml. Replace the container image and command placeholders.
Note: The concurrencyPolicy, startingDeadlineSeconds, and suspend fields are set to common defaults. Adjust them to match your workload requirements.