Create a busybox pod (using kubectl command) that runs the command "env". Run it and see the output - Casey-lab-95/cka GitHub Wiki
kubectl run busybox --image=busybox --command --restart=Never -it -- env # -it will help in seeing the output
or, just run it without -it
kubectl run busybox --image=busybox --command --restart=Never -- env
and then, check its logs
kubectl logs busybox