Skip to content

Commit 0268bc6

Browse files
committed
Expand notes for local development
Relates to jupyterhub#3157
1 parent ed8f56b commit 0268bc6

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

config/docker-desktop.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
binderhub:
2+
registry:
3+
username: "your-username"
4+
# This is unsafe! Only se for local development
5+
password: "your-password"
6+
7+
ingress:
8+
hosts:
9+
- localhost
10+
11+
jupyterhub:
12+
ingress:
13+
hosts:
14+
- localhost
15+
16+
prometheus:
17+
enabled: false
18+
19+
grafana:
20+
enabled: false
21+
22+
cryptnono:
23+
enabled: false
24+
25+
cluster-autoscaler:
26+
enabled: false

docs/source/getting_started/docker_desktop.md

+30
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,33 @@ kubectl get -A pods
2222
```
2323

2424
and a list of all running pods should be printed.
25+
26+
## Deploy Harbor to Docker Desktop
27+
28+
Run the following command:
29+
30+
```
31+
helm repo add harbor https://helm.goharbor.io
32+
```
33+
34+
```
35+
helm install harbor harbor/harbor
36+
```
37+
38+
## Deploy mybinder.org to Docker Desktop
39+
40+
Run the following command:
41+
42+
```
43+
source cert-manager.env
44+
```
45+
46+
```
47+
for d in ./mybinder*/; do
48+
helm dependency update "$d"
49+
done
50+
```
51+
52+
```
53+
python deploy.py docker-desktop
54+
```

0 commit comments

Comments
 (0)