How to Create a Kubernetes Job From a Cron Job
As a Kubernetes user, I find that I often need to trigger a kubernetes cron job manually, outside of its schedule. Fortunately, since the release of Kubernetes 1.10, we're able to specify a cronjob config when creating a kubernetes job manually.
tl;dr;
kubectl create job --from=cronjob/<cronjob-name> <job-name>