Edith Puclla:
This command is for list pods with images and with specific labels in json:
kubectl get po -n skywalker --selector=jedi=true -o jsonpath="{range .items[*]}{.metadata.name},{.spec.containers[0].image}{'\n'}{end}" > /root/jedi-true.txt
It is from one of the testers to practice for the exam.
My question is: How you can remember the syntax of this json query?