File tree 2 files changed +56
-0
lines changed
docs/source/getting_started
2 files changed +56
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -22,3 +22,33 @@ kubectl get -A pods
22
22
```
23
23
24
24
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
+ ```
You can’t perform that action at this time.
0 commit comments