I\'ve created a Kubernetes Scheduled Job, which runs twice a day according to its schedule. However, I would like to trigger it manually for testing purposes. How can I do t
If you want to test the job, create a Job config from your Cron Job (ScheduledJob) config and run it manually using the following command:
kubectl create -f ./job.yaml