Does this command display all the pods in the cluster that are labeled as ‘env: development’?
‘kubectl get pods --all-namespaces -l ‘env in (development)’ ’
Does this command display all the pods in the cluster that are labeled as ‘env: development’?
‘kubectl get pods --all-namespaces -l ‘env in (development)’ ’
kubectl get pods --all-namespaces -l env=development
Correct answer is b