Test Minikube installation

Create a sample deployment and expose it on port 8080:

kubectl create deployment hello-minikube --image=k8s.gcr.io/echoserver:1.4
kubectl expose deployment hello-minikube --type=NodePort --port=8080
Access the service - let minikube launch a web browser for you:
minikube service hello-minikube