kubernetes-mastery
kubernetes-mastery copied to clipboard
Cronjob command has changed format
Multiple slides and videos reference creating cronjobs from kubectl run
commands. We need to update the slides, example commands, and corresponding videos.
The correct command has changed from:
kubectl run every3mins --schedule="*/3 * * * *" --restart=OnFailure \ --image=alpine sleep 10
to:
kubectl create cronjob sleep --schedule="*/3 * * * *" --restart=OnFailure --image=alpine -- sleep 10
To Do's
- [ ] Update slide What if we wanted something different?
- [ ] Update slide Creating a Cron Job
- [ ] Update video Kubectl run Cronjob
- [ ] Add #cronjob href to the slides and add to the section first video Resources