mirror of
https://github.com/isa10110/testinghelmforgrapahnainwin.git
synced 2025-01-18 07:09:23 +01:00
futher experiments
This commit is contained in:
parent
6650d0526a
commit
bb011a9b7f
|
@ -63,6 +63,16 @@ als nächstes müssen wir podman Installieren
|
|||
```
|
||||
sudo apt -y install podman
|
||||
```
|
||||
now enable podman
|
||||
|
||||
```
|
||||
sudo systemctl start podman
|
||||
|
||||
sudo systemctl enable podman
|
||||
```
|
||||
|
||||
you can inform yourself if it worked by the **status** option of systemctl
|
||||
|
||||
now you can logout and test podman mit **podman -v**
|
||||
|
||||
|
||||
|
@ -82,6 +92,9 @@ sudo install minikube-linux-amd64 /usr/local/bin/minikube
|
|||
type ** minikube version** to test minikube.
|
||||
|
||||
start Minikube
|
||||
|
||||
you can do the following step as root
|
||||
|
||||
```
|
||||
sudo minikube start --force
|
||||
```
|
||||
|
@ -93,6 +106,27 @@ minikube status
|
|||
now you can install kubectl follow this official guidlines.
|
||||
https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/#install-using-native-package-management
|
||||
|
||||
you want to use the cluster from external therefore we have to add ouer user to the sudoers group
|
||||
|
||||
```
|
||||
sudo usermod -a -G $user
|
||||
```
|
||||
|
||||
then you have to add your minicube config to run as non root
|
||||
|
||||
````
|
||||
minikube config set rootless true
|
||||
````
|
||||
|
||||
we now bend the ip to 0.0.0.0 therefore we use the minikube option --listen-address='0.0.0.0'
|
||||
|
||||
This is a potential securaty risc but it shuld allow us to acsess the ip of wsl system .
|
||||
|
||||
(and it dont works therefore i shuld dig into that difrently)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Based on this tutorills
|
||||
https://medium.com/@areesmoon/installing-minikube-on-ubuntu-20-04-lts-focal-fossa-b10fad9d0511
|
||||
|
@ -167,4 +201,3 @@ kubectl get all
|
|||
|
||||
>> many things you normaly do in the cli you can now do by hand :)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue