Hello World Deployment in Kubernetes
Use this deployment file for Hello World application.
$ kubectl create -f helloworld.yaml
Expose the deployment as Node port to view in browser.
$ kubectl expose deployment helloworld --type=NodePort
$ minikube service helloworld