- Home
- All questions
- Question 654
CKA study material · question 654 of 1000
Which Job field asks Kubernetes to clean up the Job and its Pods a fixed time after it finishes?
Show the answer
Answer: D. ttlSecondsAfterFinished
ttlSecondsAfterFinished hands a finished Job to the TTL controller, which deletes it cascadingly along with its Pods. activeDeadlineSeconds bounds how long the Job may run, which is a different question.
Source: Jobs (Kubernetes) — Clean up finished jobs automatically