#Kubernetes question. The #mastodon helm chart sets up a cron job that runs every Sunday morning to clean up the media cache, this appears to leave Job pods in the `kubectl get pods` list. Should they clean themselves up or do I run `kubectl delete pod` on the `Completed` items?
@ben Checkout the cleanupPolicy on https://kubernetes.io/docs/concepts/workloads/controllers/job/#job-termination-and-cleanup that is taking care of the cleanup schedule
Jobs

Jobs represent one-off tasks that run to completion and then stop.

Kubernetes