1 min readFeb 25, 2020
Thanks for lettings us know, and congrats on passing the exam! Yes, killer.sh is harder on purpose :)
We recently updated killer.sh to k8s version 1.17.3 and the questions/solutions according. But these commands still work, can be used and are still just marked deprecated in 1.17.3:
- create Deployment (
kubectl run name)
- create CronJob (
kubectl run name --schedule=”*/1 * * * *"
) - create Job (
kubectl run pod1 --restart=OnFailure
)
Using kubectl run name --restart=Never
to create a single Pod isn’t even marked deprecated at all.
If someone else comes to different results please let me know the kubelet version
output. I used:
Client Version: version.Info{Major:"1", Minor:"17", GitVersion:"v1.17.3", GitCommit:"06ad960bfd03b39c8310aaf92d1e7c12ce618213", GitTreeState:"clean", BuildDate:"2020-02-11T18:14:22Z", GoVersion:"go1.13.6", Compiler:"gc", Platform:"linux/amd64"}Server Version: version.Info{Major:"1", Minor:"17", GitVersion:"v1.17.3", GitCommit:"06ad960bfd03b39c8310aaf92d1e7c12ce618213", GitTreeState:"clean", BuildDate:"2020-02-11T18:07:13Z", GoVersion:"go1.13.6", Compiler:"gc", Platform:"linux/amd64"}