We often find ourselves needing to test our Cronjobs more than we’d like out of band with their standard scheduled runtime. Kubernetes makes it super easy to do this by spawning a Job from the CronJob itself.
kubectl create job --from=cronjob/<cronjob-name> <job-name>
Thanks again stackoverflow!