dgkanatsios / CKAD-exercises

A set of exercises to prepare for Certified Kubernetes Application Developer exam by Cloud Native Computing Foundation
MIT License
8.62k stars 5.6k forks source link

Thanks + Typo #342

Open Rasputin2 opened 9 months ago

Rasputin2 commented 9 months ago

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

dgkanatsios commented 8 months ago

sorry, catching up on this - is this still an issue? if yeah, please feel free to make a PR!

Rasputin2 commented 8 months ago

OK.