Kubernetes - Pods
You want to delete all pods in the namespace
dev with label tier=backend. Which command correctly does this?dev with label tier=backend. Which command correctly does this?-n and for label selector is --selector or -l.kubectl delete pod -n dev --selector tier=backend.--label flag. B uses plural pods and invalid --label. C has invalid selector syntax --selector tier backend missing =.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions