I can get the IP address of the exposed container through:
kubectl get service hello-nodeSay that I want to run ls on this container and obtain the results. How could I do that?
you might want to use kubectl exec .... To run lson a containers run:
kubectl exec <pod> lsYou'll find the pod-id with:
kubectl get podsThe full documentation can be found on kubernetes.io
Cheers