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
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:
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
The text was updated successfully, but these errors were encountered: