To list all containers inside all pods run the following kubectl command:
$ kubectl get po -o jsonpath='{range .items[*]}{"pod: "}{.metadata.name}{"\n"}{range .spec.containers[*]}{"\tname: "}{.name}{"\n\timage: "}{.image}{"\n"}{end}'
This code gives us insight into the number of people who visit our website, where they are from, and what they are clicking on.