쿠버네티스 Job activeDeadlineSeconds

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 00:51 판 (봇: Jmnote의 2020-10-24T09:32:56Z 에 작성한 602222 판으로 되돌림)

1 개요

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

2 같이 보기

3 참고

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