Jobs and CronJobs in Kubernetes
Reading Time: 3 minutes A Job creates one or more Pods and ensures that a specified number of them successfully terminate. Kubernetes Jobs are created to run pods for a short period of time which are running for completion as opposed to different objects in Kubernetes like Replicasets, Replication Controllers, Demonesets, which is run continuously. In Kubernetes , we have two types of jobs: Run to completion Cronjobs Run Continue Reading