"K8s Job activeDeadlineSeconds"의 두 판 사이의 차이

(새 문서: ==개요== ;K8s Job activeDeadlineSeconds <syntaxhighlight lang='yaml'> apiVersion: batch/v1 kind: Job metadata: name: pi-with-timeout spec: backoffLimit: 5 activeDeadlineSecon...)
 
 
2번째 줄: 2번째 줄:
;K8s Job activeDeadlineSeconds
;K8s Job activeDeadlineSeconds


<syntaxhighlight lang='yaml'>
<syntaxhighlight lang='yaml' highlight=7>
apiVersion: batch/v1
apiVersion: batch/v1
kind: Job
kind: Job

2022년 8월 11일 (목) 01:44 기준 최신판

1 개요[ | ]

K8s Job activeDeadlineSeconds
apiVersion: batch/v1
kind: Job
metadata:
  name: pi-with-timeout
spec:
  backoffLimit: 5
  activeDeadlineSeconds: 100
  template:
    spec:
      containers:
      - name: pi
        image: perl:5.34.0
        command: ["perl",  "-Mbignum=bpi", "-wle", "print bpi(2000)"]
      restartPolicy: Never

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}