Kris's Quick Cup of (A)K8S #2
It鈥檚 time for a new edition of Kris鈥檚 Quick cup of Kubernetes where I鈥檓 utilizing Azure Kubernetes Service (AKS) for demo purposes!馃樅 In second edition of this tech tip series I would like to share a few tips related to CronJobs, Rolling Updates and AKS add-ons that can make your life easier when working with Kubernetes and specifically Azure Kubernetes Service. #1 - Run CronJob instantly Sometimes you may need to run a CronJob (scheduled Job) instantly, for example, when you鈥檙e debugging some execution errors. So, can you do that instantly or do you need to wait for the next time slot that the CronJob is scheduled for to execute? Well, you can pretty easily create a regular Job based on CronJob definition and in that way trigger it instantly - here鈥檚 how you can do that with kubectl: ...