I'm trying to figure out what the easiest way of running a "one time job" on Azure Container Apps is.
I know that it can be done with Azure Container Instances or Azure Kubernetes Service, but is there something similar for ACA?
Ideally, I'm looking for some kind of cli command like az containerapps run --image <some-image>
that can run in an environment and is cleaned up when it has finished running.
Is that possible?