Update README.md

adding dashboard issue solution
This commit is contained in:
mcwimpy 2018-11-14 13:44:22 +01:00 committed by GitHub
parent 3287d96ff7
commit a0a194b288
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,13 +6,17 @@ First of all start minikube on your machine:
```sh ```sh
minikube start minikube start
``` ```
If you get an error message along th lines of 'The vboxdrv kernel module is not loaded.' - then you have the same issue i had. to solve this you need to install the propper linux kernel host modules package. Here an example for Manjaro: [troubleshoot] If you get an error message along th lines of 'The vboxdrv kernel module is not loaded.' - then you have the same issue i had. to solve this you need to install the propper linux kernel host modules package. Here an example for Manjaro:
https://forum.manjaro.org/t/installing-virtualbox-kernel-modules/6999 https://forum.manjaro.org/t/installing-virtualbox-kernel-modules/6999
You can always get an overview and see what's going on with your minikube: You can always get an overview and see what's going on with your minikube:
```sh ```sh
minikube dashboard minikube dashboard
``` ```
[troubleshoot] now again you might run into trouble with an error like 'kubectl could not be found on your path.' In this case run the following command:
```sh
curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.10.0/bin/linux/amd64/kubectl && chmod +x kubectl && sudo cp kubectl /usr/local/bin/ && rm kubectl
```
Build Docker images, using the Minikube Docker daemon: Build Docker images, using the Minikube Docker daemon:
```sh ```sh