CKAD-exercises
CKAD-exercises copied to clipboard
Thanks + Typo
First off - thanks for creating this - it's great prep. Secondly, I think there may be an issue with one of the answers to the services questions. The answers had this:
kubectl run busybox --image=busybox -it --rm --restart=Never -- sh wget -O- 10.108.152.197:80
But the error I got is that wget is not found. These two alternatives worked:
kubectl run busybox --image=busybox -it --rm --restart=Never -- wget -O- 10.108.152.197
kubectl run busybox --image=busybox -it --rm --restart=Never -- wget -O- 10.108.152.197:80
sorry, catching up on this - is this still an issue? if yeah, please feel free to make a PR!
OK.