Skip to content

Commit

Permalink
Expand notes for local development
Browse files Browse the repository at this point in the history
Relates to jupyterhub#3157
  • Loading branch information
rgaiacs committed Jan 7, 2025
1 parent 2c23aea commit 426810f
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
26 changes: 26 additions & 0 deletions config/docker-desktop.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
binderhub:
registry:
username: "your-username"
# This is unsafe! Only se for local development
password: "your-password"

ingress:
hosts:
- localhost

jupyterhub:
ingress:
hosts:
- localhost

prometheus:
enabled: false

grafana:
enabled: false

cryptnono:
enabled: false

cluster-autoscaler:
enabled: false
30 changes: 30 additions & 0 deletions docs/source/getting_started/docker_desktop.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,33 @@ kubectl get -A pods
```

and a list of all running pods should be printed.

## Deploy Harbor to Docker Desktop

Run the following command:

```
helm repo add harbor https://helm.goharbor.io
```

```
helm install harbor harbor/harbor
```

## Deploy mybinder.org to Docker Desktop

Run the following command:

```
source cert-manager.env
```

```
for d in ./mybinder*/; do
helm dependency update "$d"
done
```

```
python deploy.py docker-desktop
```

0 comments on commit 426810f

Please sign in to comment.