Kubernetes - kubectl Essential Commands
You want to delete all pods with the label
app=frontend. Which command correctly deletes only those pods?app=frontend. Which command correctly deletes only those pods?--selector or -l flag with the label key=value.--selector app=frontend, which is the correct full flag. kubectl delete -l app=frontend uses -l but misses the resource type pods.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions