22nd June 2021
Projects⚑
-
New: Add the Life seedling project.
Life is a real time sandbox role game where you play as yourself surviving in today's world.
DevOps⚑
Infrastructure Solutions⚑
Jobs⚑
-
New: Explain how to rerun failed cronjobs.
If you have a job that has failed after the 6 default retries, it will show up in your monitorization forever, to fix it, you can manually trigger the job.
bash kubectl get job "your-job" -o json \ | jq 'del(.spec.selector)' \ | jq 'del(.spec.template.metadata.labels)' \ | kubectl replace --force -f -