Manually start CronJobs in Kubernetes

To manually run a CronJob as a Job you should create job. Specify the CronJob to base the job of using the --from flag:

kubectl create job --from=cronjob/mysql-backup mysql-backup-manual-001
You can verify the job is created and executed with the command:
kubectl get jobs