- Take me to Practice Test
Solutions to practice test - resource limtis
-
Run the command 'kubectl describe pod rabbit' and inspect requests.
Details
$ kubectl describe pod rabbit -
Run the command 'kubectl delete pod rabbit'.
Details
$ kubectl delete pod rabbit -
Run the command 'kubectl get pods' and inspect the status of the pod elephant
Details
$ kubectl get pods -
The status 'OOMKilled' indicates that the pod ran out of memory. Identify the memory limit set on the POD.
-
Generate a template of the existing pod.
Details
$ kubectl get pods elephant -o yaml > elephant.yamlUpdate the elephant.yaml pod defination with the resource memory limits to 20Mi
Details
resources: limits: memory: 20Mi --- </details> Delete the pod and recreate it. <details>$ kubectl delete pod elephant $ kubectl create -f elephant.yaml
</details> -
Inspect the status of POD. Make sure it's running
Details
$ kubectl get pods -
Run the command 'kubectl delete pod elephant'.
Details
$ kubectl delete pod elephant