We currently launch pods for workers and after the pod has succeeded or failed the pod will still be visible in the pod list from kubectl get pods. For pods that fail we should probably refrain from deleting them to assist with postmortem debugging but for succeeded pods we may want to automatically clean them up.
Pods don't support a TTL but completed pods (succeeded or failed) are eventually garbage collected.
We currently launch pods for workers and after the pod has succeeded or failed the pod will still be visible in the pod list from
kubectl get pods
. For pods that fail we should probably refrain from deleting them to assist with postmortem debugging but for succeeded pods we may want to automatically clean them up.Pods don't support a TTL but completed pods (succeeded or failed) are eventually garbage collected.