I need to execute a job create from cronjob in kubernetes. Manualy I can run it like this:
kubectl create job manual-job --from=cronjob/some-cronjob
Though I'm not sure how to translate this to yaml.
Probably I need to put a from: section in the spec ,but I'm not sure how.