You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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
Original Q&A
The text was updated successfully, but these errors were encountered: