About 1,570,000 results
Open links in new tab
  1. How to run crontab job every week on Sunday - Stack Overflow

    I'm trying to figure out how to run a crontab job every week on Sunday. I think the following should work, but I'm not sure if I understand correctly. Is the following correct? 5 8 * * 6

  2. How to run a cron job inside a docker container? - Stack Overflow

    I am trying to run a cronjob inside a docker container that invokes a shell script. How can I do this?

  3. Cron job in a different timezone - Stack Overflow

    Nov 8, 2012 · Is there a way of setting up a cronjob for a specific timezone? My shared hosting is in USA (Virginia) and I am in UK. If I set a cron job to be executed at 1600 hrs every friday, …

  4. Understanding backoffLimit in Kubernetes Job - Stack Overflow

    Feb 22, 2019 · I’ve created a Cronjob in kubernetes with schedule(8 * * * *), with job’s backoffLimit defaulting to 6 and pod’s RestartPolicy to Never, the pods are deliberately configured to FAIL. …

  5. linux - CronJob not running - Stack Overflow

    What?! My cronjob doesn't run?! Here's a checklist guide to debug not running cronjobs: Is the Cron daemon running? Run ps ax | grep cron and look for cron. Debian: service cron start or …

  6. Schedule cron job to never happen? - Stack Overflow

    Sep 16, 2019 · Here is part of my CronJob spec: kind: CronJob spec: schedule: #{service.schedule} For a specific environment a cron job is set up, but I never want it to run. …

  7. How to create a cron job using Bash automatically without the ...

    May 18, 2009 · Does crontab have an argument for creating cron jobs without using the editor (crontab -e)? If so, what would be the code to create a cron job from a Bash script?

  8. How to view a cron job running currently? - Stack Overflow

    Apr 27, 2016 · I have a cron job set up for daily execution (on my own ubuntu, just for trial) like so: 0 0 * * * /path/exec.sh It is been set for daily execution. I usually open my machine around …

  9. patch kubernetes cronjob with kustomize - Stack Overflow

    Aug 23, 2021 · 3 I am trying to patch a cronjob, but somehow it doesn't work as I would expect. I use the same folder structure for a deployment and that works. This is the folder structure: . …

  10. How to make a Cron job for a typescript class method

    Nov 10, 2020 · In Typescript, I have a controller class that has a method that I want to run daily at 5am. My first thought was to schedule something using node-cron or node-scheduler, but …