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 # 재시도 횟수 설정
activeDeadlineSeconds: 100 #파드의 실행시간 설정 |