Skip to main content

CronJob



Resource Icon

Resource Overview

A Kubernetes resource that creates Jobs periodically according to a schedule.

Associated Resources

Parent Resource

Connected Targets


Resource Configuration

Basic Settings

  • namespace : Namespace where the CronJob will be deployed
  • schedule : Job execution schedule defined using a cron expression
  • timezone : Time zone used to interpret the schedule
  • concurrency_policy : Policy for handling concurrent job executions (Allow / Forbid / Replace)
  • starting_deadline_seconds : Time window allowed to start a job if the schedule is missed
  • successful_jobs_history_limit : Number of successful Jobs to retain
  • failed_jobs_history_limit : Number of failed Jobs to retain
  • containers : Definition of container specifications to be executed
  • init_containers : Definition of preliminary tasks executed before the main containers
  • volume : Volume configuration to be mounted in containers
  • pod_security_context : Pod-level security context configuration
  • image_pull_secrets : Reference to Secrets used for pulling container images

References