mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-02-06 09:55:50 +00:00
Merge pull request #43 from Mastercuber/kubernetes-readme
Add troubleshoot to kubernetes README
This commit is contained in:
commit
f250c60fc9
@ -6,14 +6,15 @@ First of all start minikube on your machine:
|
|||||||
```sh
|
```sh
|
||||||
minikube start
|
minikube start
|
||||||
```
|
```
|
||||||
[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:
|
**[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
|
||||||
|
**[troubleshoot]** When you can not start minikube, try also to remove the cluster with `minikube delete` and start again with `minikube start`. Sometimes this fix startup problems of the cluster.
|
||||||
|
|
||||||
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:
|
**[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
|
```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
|
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
|
||||||
```
|
```
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user