extra info for development via minikube

This commit is contained in:
Markus Kahl
2022-06-01 14:05:31 +01:00
parent 19269f8429
commit 7970e2fb9c

17
kubernetes/MINIKUBE.md Normal file
View File

@@ -0,0 +1,17 @@
# Accessing OpenProject
If the minikube tunnel doesn't work, find out the used OpenProject port via
```
kubectl --context minikube get services
```
and then open the tunnel yourself via
```
ssh -i $(minikube ssh-key) docker@localhost -p 60390 -L 8080:localhost:30265
```
to be able to access OpenProject under http://localhost:8080.
60390 would be the minikube container's mapped ssh port which you can see via `docker ps`.