diff --git a/job-example/job.yaml b/job-example/job.yaml new file mode 100644 index 0000000..2755c1e --- /dev/null +++ b/job-example/job.yaml @@ -0,0 +1,13 @@ +apiVersion: batch/v1 +kind: Job +metadata: + name: pi +spec: + template: + spec: + containers: + - name: pi + image: perl:5.34.0 + command: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"] + restartPolicy: Never + backoffLimit: 4