Linux_Foundation
CKAD · Question #8
It is always useful to look at the resources your applications are consuming in a cluster. From the pods running in namespace cpu-stress, write the name only of the pod that is consuming the most…
student@node-1~$ kubectl top pods -n cpu-stress NAME CPU(cores) MEMORY(bytes) max-load-58b5ae 21m <unknown> max-load-5b87a 21m <unknown> max-load-5d471 21m <unknown> student@node-1~$ echo "max-load-58b5ae" > /opt/KDOBG0301/pod.txt
Submitted by deeparc· May 4, 2026Application Observability and Maintenance
Question
It is always useful to look at the resources your applications are consuming in a cluster. From the pods running in namespace cpu-stress, write the name only of the pod that is consuming the most CPU to file /opt/KDOBG0301/pod.txt, which has already been created
Exhibits
Explanation
student@node-1~$ kubectl top pods -n cpu-stress NAME CPU(cores) MEMORY(bytes) max-load-58b5ae 21m <unknown> max-load-5b87a 21m <unknown> max-load-5d471 21m <unknown> student@node-1~$ echo "max-load-58b5ae" > /opt/KDOBG0301/pod.txt
Topics
#Resource Monitoring#kubectl top#Pod Management#CPU Usage
Community Discussion
No community discussion yet for this question.



