File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff 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+
1972041 . 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 \
Original file line number Diff line number Diff line change 7070 args :
7171 - --config
7272 - /etc/binderhub/config/binderhub_config.py
73+ {{- with .Values.lifecycle }}
74+ lifecycle :
75+ {{- . | toYaml | nindent 10 }}
76+ {{- end }}
7377 volumeMounts :
7478 - mountPath : /etc/binderhub/config/
7579 name : config
Original file line number Diff line number Diff line change @@ -211,6 +211,7 @@ ingress:
211211 # - chart-example.local
212212
213213initContainers : []
214+ lifecycle : {}
214215extraVolumes : []
215216extraVolumeMounts : []
216217extraEnv : []
You can’t perform that action at this time.
0 commit comments