https://www.youtube.com/watch?v=_vHTaIJm9uY
Clone this repo and try each step. For detailed walkthrough refer to the tutorial on The New Stack.
Create a Kubernetes deployment with the image:
$ kubectl run my-web --image=guillierf/myweb --port=80**
Create a Kubernetes service of type NodePort:
$ kubectl expose deployment my-web --target-port=80 --type=NodePort**