Running Hello World Application
Hello World Deployment in Kubernetes
Open Docker Desktop and run Docker.
Open Terminal to start Minikube.
$ minikube start$ kubectl get allUse this deployment file for Hello World application.
$ kubectl create -f helloworld.yamlExpose the deployment as Node port to view in browser.
$ kubectl expose deployment helloworld --type=NodePortOpen your deployment in a browser!!
$ minikube service helloworldLast updated
Was this helpful?