I would like to schedule jobs for execution at a later date and time. I am using Podman. Previously, this was easy using Docker and Swarm, where one could define a cron-like expression for recurrent job execution in the future using swarm-cronjob
.
With Podman, I see no such feature or module.
How can I accomplish this? Is there a Swarm equivalent for Podman? If not, is there a cron equivalent for Podman? I have looked through the official docs but found nothing of the sort.
I have this same question.
Running your podman container on a schedule using cron or a systemd timer is an acceptable solution as long as you have access to the host where your container is installed. If the container is on a Kubernetes platform where you don't actually have access to a host and the host where the container is running may change each time the container runs, you will need to use a Kubernetes CronJob YML.
Seems the solution is as follows:
If you have access to the host, schedule your container or pod start using a systemd timer and service.
Here is an example test-container.service:
And test-container.timer which will run every 5 minutes
Now if you are on Kubernetes cluster you can schedule this using a Kubernetes CronJob YML file like the following which will also start the container every 5 minutes:
The only other thing to consider is that you want to configure your container to exit after it has executed and performed it's function, otherwise the container start command will fail because the container is already running.