tldr/pages/common/minikube.md

21 lines
385 B
Markdown
Raw Normal View History

2018-10-01 17:27:58 +01:00
# minikube
> Tool to run Kubernetes locally.
2019-06-04 10:25:11 +01:00
> More information: <https://github.com/kubernetes/minikube>.
2018-10-01 17:27:58 +01:00
- Start the cluster:
`minikube start`
- Get the IP address of the cluster:
`minikube ip`
- Access a service named my_service exposed via a node port and get the url:
`minikube service {{my_service}} --url`
- Open kubernetes dashboard in a browser:
`minikube dashboard`