From 2a6514a1c6b652c7106e293950ee6b6e26df9a83 Mon Sep 17 00:00:00 2001 From: Raniere Silva Date: Wed, 8 Jan 2025 15:50:18 +0100 Subject: [PATCH] Add last section to documentation of localhost --- docs/source/getting_started/local_environment.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/source/getting_started/local_environment.md b/docs/source/getting_started/local_environment.md index 2655b71f8..9f37f8b0f 100644 --- a/docs/source/getting_started/local_environment.md +++ b/docs/source/getting_started/local_environment.md @@ -15,8 +15,9 @@ You will need a local Kubernetes cluster. A few options are Install Docker Desktop on [Mac](https://docs.docker.com/desktop/setup/install/mac-install/), [Windows](https://docs.docker.com/desktop/setup/install/windows-install/), or [Linux](https://docs.docker.com/desktop/setup/install/linux/). And [turn on Kubernetes](https://docs.docker.com/desktop/features/kubernetes/#install-and-turn-on-kubernetes). -## Set up `kubectl` +## Set up `kubectl` to connect to Kubernetes +Once you have `kubectl` installed, you can connect it with your local Kubernetes. To do so, run the following command: ``` @@ -33,7 +34,7 @@ kubectl get -A pods and a list of all running pods should be printed. -## Deploy Harbor +## Deploy Harbor to Kubernetes Run the following command: @@ -45,7 +46,7 @@ helm repo add harbor https://helm.goharbor.io helm install harbor harbor/harbor ``` -## Deploy mybinder.org +## Deploy mybinder.org to Kubernetes Run the following command: @@ -65,4 +66,8 @@ chartpress --skip-build ``` python deploy.py localhost -``` \ No newline at end of file +``` + +## Access your mybinder.org + +Open http://localhost with your favourite web browser. \ No newline at end of file