You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/getting_started/local_environment.md
+18-8Lines changed: 18 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,30 @@
1
1
# Getting started with local development
2
2
3
-
This page contains a starting point for people who want to know more about the BinderHub deployment by playing around with a local development instance running on Kubernetes with [Docker Desktop](https://docs.docker.com/desktop/).
3
+
This page contains a starting point for people who want to know more about the BinderHub deployment by playing around with a local development instance.
4
4
5
-
## Install Docker Desktop
5
+
## Local Kubernetes
6
+
7
+
You will need a local Kubernetes cluster. A few options are
8
+
9
+
-[Kubernetes with Docker Desktop](https://docs.docker.com/desktop/features/kubernetes/) (recommended)
10
+
-[minikube](https://minikube.sigs.k8s.io/docs/)
11
+
-[k3d](https://k3d.io/stable/)
12
+
-[kind](https://kind.sigs.k8s.io/)
13
+
14
+
### Install Docker Desktop
6
15
7
16
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).
8
17
9
-
## Set up `kubectl` to connect to Docker Desktop
18
+
## Set up `kubectl`
10
19
11
-
You can connect `kubectl` with Docker Desktop.
12
20
To do so, run the following command:
13
21
14
22
```
15
-
kubectl config use-context docker-desktop
23
+
kubectl config use-context k8s-context-name
16
24
```
17
25
26
+
If using Docker Desktop, `k8s-context-name` is `docker-desktop`.
0 commit comments