[Expose the Pod using the NodePort service]
$ kubectl expose pod mc3 --type=NodePort --port=80
service "mc3" exposed

[Identify port on the node that is forwarded to the Pod]
$ kubectl describe service mc3

Now can use your browser (or curl) to navigate to your node port to access the web application.
http://NODE_PUBLIC_IP_ADDRESS:NODE_PORT_NO
