Ultimate CKA Mock Exam Question

Came across the following question in the CKA Mock Exams:
SECTION: SCHEDULING
For this question, please set the context to cluster3 by running:

kubectl config use-context cluster3

One of our Junior DevOps engineers have deployed a pod nginx-wl06 on the cluster3-controlplane node. However, while specifying the resource limits, instead of using Mebibyte as the unit, Gebibyte was used.

As a result, the node doesn’t have sufficient resources to deploy this pod and it is stuck in a pending state

Fix the units and re-deploy the pod (Delete and recreate the pod if needed).

Pod is running?

Fix the memory?

The pod nginx-wl06 is not in a pending state, it is running without any problems.
Says there is supposed to be a resource limit set on the pod but there is no limit set,
only a 100Gi memory request set.

This sounds like an error in the problem set up. I assume that you need to recreate the pod with a valid resources block, using the correct units. Try that and see if the grader accepts that.

ok, I will try it next time the question comes up