I have scheduled an application to run as Cronjob in Kubernetes. When there is code change, I\'m changing image in CronJob.
I\'m looking for an option where I can disabl
If you want to suspend cronjob via patch, use:
kubectl patch cronjobs <job-name> -p '{"spec" : {"suspend" : true }}'