Q11 on Troubleshooting. The Deployment don’t appears after multiple attempts even after returning back from Q16 backwards.
It appears only after the “end-Exam” is pressed for me(twice) . Also include the namespace detail for the deployment in the question will be helpful…
If finding the namespace too is part of the question , then “kubectl get deployements -A” don’t output the deployment “db-deployment-cka05-trb” during the exam timer.
Is this the mock exam that is part of the 3 exams in the CKA course, or CKA Ultimate Mocks exam 1?
Part of CKA Ultimate Mocks exam 1
Let me know , if we are restricted to share screenshots here.
Sorry , I hope this forum is secured and unavailble to public.
It is fine to paste screenshots and text. You should not paste anything that shows a password though
I can see the deployment here
The following should get it
k get deployment -n dev-wl07 db-deployment-cka05-trb
It is possible each time you run the mock that the deployment may appear in a different namespace, so look at the output of k get deployments -A
first to determine the namespace.
1 Like
When I ran it myself and jumped directly to Q11, it showed up in default
namespace
Thanks … This time i got the deployment under default namespace
So , In the exam, if a namespace is not specified, should I assume it to be the default
namespace?
If that’s the case, do you recommend explicitly adding namespace: default
when creating objects, or should I simply omit it and let the objects be created in the default namespace as implied by the question?”
Usually they’ll specify the namespace. If they don’t, however, then “default” is a good assumption.
1 Like