Skip to content

Commit

Permalink
Merge pull request #1911 from rgaiacs/1910-improve-documentation
Browse files Browse the repository at this point in the history
Add Missing Step in Develop Helm chart
  • Loading branch information
manics authored Jan 14, 2025
2 parents 3b3743b + 43ab94a commit fd0f31f
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions docs/source/contribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,19 @@ continue.
```

1. Configure `docker` using environment variables to use the same Docker daemon
as your `minikube` cluster. This means images you build are directly
available to the cluster.
as your local Kubernetes cluster. This means images you build are directly
available to the cluster. If using `minikube`,

```bash
eval $(minikube docker-env)
```

If using Docker Desktop,

```bash
docker context use desktop-linux
```

1. Start BinderHub with the testing config file.

```bash
Expand Down Expand Up @@ -189,18 +195,24 @@ continue.
```

2. Configure `docker` using environment variables to use the same Docker daemon
as your `minikube` cluster. This means images you build are directly
available to the cluster.
as your local Kubernetes cluster. This means images you build are directly
available to the cluster. If using `minikube`,

```bash
eval $(minikube docker-env)
```

If using Docker Desktop,

```bash
docker context use desktop-linux
```

3. Build the docker images referenced by the Helm chart and update its default
values to reference these images.

```bash
(cd helm-chart && chartpress)
(python3 -m build . && cd helm-chart && chartpress)
```

4. Get the chart dependencies (for example JupyterHub)
Expand Down

0 comments on commit fd0f31f

Please sign in to comment.