cron 30 seconds after every hour code example
Example 1: cron every 2 minutes
*/2 * * * *
Example 2: cron every 5 minutes offset
# Run a job every 5 minutes with an offset of 2 minutes
2-59/5 * * * *
*/2 * * * *
# Run a job every 5 minutes with an offset of 2 minutes
2-59/5 * * * *