From 7970e2fb9c4d41d68cd4ed321c0cb55cf27f6330 Mon Sep 17 00:00:00 2001 From: Markus Kahl Date: Wed, 1 Jun 2022 14:05:31 +0100 Subject: [PATCH] extra info for development via minikube --- kubernetes/MINIKUBE.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 kubernetes/MINIKUBE.md 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`.