From 783d34f53afb4dd32b366bf9810ace78d14f258e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Wed, 24 Apr 2019 13:04:03 +0200 Subject: [PATCH] Fix README for minikube --- deployment/digital-ocean/dashboard/README.md | 1 + deployment/minikube/README.md | 13 +++++++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/deployment/digital-ocean/dashboard/README.md b/deployment/digital-ocean/dashboard/README.md index a2e5446b2..3ae6378bf 100644 --- a/deployment/digital-ocean/dashboard/README.md +++ b/deployment/digital-ocean/dashboard/README.md @@ -49,6 +49,7 @@ token: eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZ Grab the token from above and paste it into the [login screen](http://localhost:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/) When you are logged in, you should see sth. like: + ![Dashboard](./dashboard-screenshot.png) Feel free to save the login token from above in your password manager. Unlike the `kubeconfig` file, this token does not expire. diff --git a/deployment/minikube/README.md b/deployment/minikube/README.md index f1c56d216..e77ddd667 100644 --- a/deployment/minikube/README.md +++ b/deployment/minikube/README.md @@ -2,9 +2,8 @@ There are many Kubernetes providers, but if you're just getting started, Minikube is a tool that you can use to get your feet wet. -[Install Minikube](https://kubernetes.io/docs/tasks/tools/install-minikube/) - -Open minikube dashboard: +After you [installed Minikube](https://kubernetes.io/docs/tasks/tools/install-minikube/) +open your minikube dashboard: ```text $ minikube dashboard @@ -12,9 +11,15 @@ $ minikube dashboard This will give you an overview. Some of the steps below need some timing to make ressources available to other dependent deployments. Keeping an eye on the dashboard is a great way to check that. -Follow the [installation instruction](deployment.md#installation-with-kubernetes) below. If all the pods and services have settled and everything looks green in your minikube dashboard, expose the `nitro-web` service on your host system with: +Follow the installation instruction for [Human Connection](../human-connection/README.md). +If all the pods and services have settled and everything looks green in your +minikube dashboard, expose the services you want on your host system. + +For example: ```text $ minikube service nitro-web --namespace=human-connection +# optionally +$ minikube service nitro-backend --namespace=human-connection ```