GuidesChangelogDiscussions
Log In

Job Management

You can use Ketch's provider for Crossplane to provide developers with an easy way to deploy jobs across Kubernetes clusters.

Deploying Jobs

apiVersion: ketch.io/v1alpha1
kind: Job
metadata:
  name: crossplane-job
spec:
  forProvider:
    name: crossplane-job
    framework: dev
    backoffLimit: 4
    policy:
      restartPolicy: Never
    containers:
      - name: pi
        image: perl
        command: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"]

Specification

ComponentTypeDescription
namestringThe name of the job to be deployed by Ketch

Required: Yes
frameworkstringThe framework Ketch should use to deploy the job.

Required: Yes
backoffLimitintSpecifies the number of retries before considering a Job as failed. The back-off limit is set by default to 6

Required: No
policystringJob restart policy.

Options:
- Never
- OnFailure

By default, a Job will run uninterrupted unless a Pod fails (restartPolicy=Never) or a Container exits in error (restartPolicy=OnFailure), at which point the Job defers to the backoffLimit described above. Once the backoffLimit has been reached the Job will be marked as failed and any running Pods will be terminated.

Required: Yes
containersstringThe Job container image and command details.

Required: Yes