Skip to content

Commit f5df15c

Browse files
committed
Add dependencies retrieval for helm chart development preparation
Without it the validation will fail with a message that might not be clear for new helm chart developers.
1 parent c7cbf63 commit f5df15c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

CONTRIBUTING.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,13 @@ continue.
194194
(cd helm-chart && chartpress)
195195
```
196196

197+
1. Get the chart dependencies (for example JupyterHub)
198+
199+
```bash
200+
cd helm-chart/binderhub
201+
helm dependency update
202+
```
203+
197204
1. Validate, and then install the Helm chart defined in helm-chart/binderhub.
198205

199206
This validation step is not making any modification to your Kubernetes
@@ -209,6 +216,8 @@ continue.
209216

210217
If the validation succeeds, go ahead and upgrade/install the Helm chart.
211218

219+
Note that this will do the installation in the current namespace.
220+
212221
```bash
213222
helm upgrade --install binderhub-test helm-chart/binderhub \
214223
--values testing/k8s-binder-k8s-hub/binderhub-chart-config.yaml \

0 commit comments

Comments
 (0)