Complete the command to delete a pod named 'my-pod'.
kubectl delete pod [1]The command kubectl delete pod my-pod deletes the pod named 'my-pod'.
Complete the command to delete all pods with the label 'app=nginx'.
kubectl delete pods -l [1]The label selector app=nginx targets pods with the label 'app' set to 'nginx'.
Fix the error in the command to force delete a pod named 'temp-pod'.
kubectl delete pod [1] --force --grace-period=0
The pod name should be 'temp-pod' without extra flags or underscores.
Fill both blanks to delete pods in the 'default' namespace with label 'tier=backend'.
kubectl delete pods -n [1] -l [2]
The namespace is 'default' and the label selector is 'tier=backend' to target the correct pods.
Fill all three blanks to delete pods with label 'env=prod' in namespace 'staging' and wait for completion.
kubectl delete pods -n [1] -l [2] --wait=[3]
Namespace is 'staging', label selector is 'env=prod', and '--wait=true' makes the command wait until deletion finishes.