nerdexam
Linux_Foundation

CKA · Question #31

Create an nginx pod and list the pod with different levels of verbosity

// create a pod kubectl run nginx --image=nginx --restart=Never --port=80 // List the pod with different verbosity kubectl get po nginx --v=7 kubectl get po nginx --v=8 kubectl get po nginx --v=9

Submitted by valeria.br· May 4, 2026Workloads and Scheduling

Question

Create an nginx pod and list the pod with different levels of verbosity

Explanation

// create a pod kubectl run nginx --image=nginx --restart=Never --port=80 // List the pod with different verbosity kubectl get po nginx --v=7 kubectl get po nginx --v=8 kubectl get po nginx --v=9

Topics

#Pod management#kubectl#Resource listing#Nginx

Community Discussion

No community discussion yet for this question.

Full CKA Practice