diff --git a/kubernetes/MINIKUBE.md b/kubernetes/MINIKUBE.md new file mode 100644 index 0000000..2bd2f2d --- /dev/null +++ b/kubernetes/MINIKUBE.md @@ -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`.