lukaszraczylo / jobs-manager-operator

Kubernetes jobs management operator. Schedule long running tasks or jobs dependent on each other and groups.
40 stars 0 forks source link

Scheduled managed jobs #3

Open lukaszraczylo opened 1 year ago

lukaszraczylo commented 1 year ago

Goal: Write documentation on using scheduled managed jobs and/or enhance existing operator code to accommodate for it.

bygui86 commented 1 year ago

What do you mean exactly with "scheduled managed job"?

lukaszraczylo commented 1 year ago

Ability to create scheduled managedJobs which would allow setting up the cronjob running the ordered jobs with dependencies.

As an example, you can now execute the ordered groups of jobs for import->processing->notifications. They require manual application every time you'd like to run them. This issue aims to add cronJob like managedJob, which will behave the same way but with scheduled execution. So (coming back to the example) you can run the whole cycle at regular intervals if it's the part of your workflow :)

bygui86 commented 1 year ago

Got it thanks! Really useful feature!

lukaszraczylo commented 1 year ago

I already have a draft of it, will test it over weekend and hopefully be able to release it once done :)