...
Once minikube is running, it has a really cool dashboard that can be used to administer it. The dashboard can be triggered by using the following command minikube dashboard, this will lock the terminal. When it runs, it will automatically open the dashboard using your default browser.
Most of the commands that you can execute from the shell can be done from the dashboard
Running an application
- kubectl version
- kubectl get version
- kubectl run kubernetes-bootcamp --image=gcr.io/google-samples/kubernetes-bootcamp:v1 --port=8080
- kubectl get deployments
...