CronJob

Jobs in Kubernetes

Reading Time: 4 minutes As we know, all the controllers have the responsibility of starting up pods and running them continuously, in fact, ensuring that they always stay online based on the type of controller that we’re working with, whether it be a deployment, a ReplicaSet, or a DaemonSet. But what if there is a need to run just a single task in the cluster, or a need to Continue Reading

OpsInit: Configuring Crontab With Ansible

Reading Time: 3 minutes Introduction to crontab: The crontab is a list of commands that you want to run on a regular schedule. Crontab stands for “cron table”, because it uses the job scheduler cron to execute tasks; cron itself is named after “chronos, ” the Greek word for time.cron is the system process which will automatically perform tasks for you according to a set schedule. The schedule is Continue Reading

SBT and Github commands using Linux Cronjob for github project

Reading Time: 3 minutes When i was in the middle of my project I encountered a challenge to run SBT and Github commands for my cloned project at regular intervals(say after every hour or two). When I looked up to the problem it seemed a bit challenging until I did not bump into Linux Cronjob(A time based job scheduler ). Alright, for those who do not know about Cronjobs. Continue Reading