Skip to content

Commit

Permalink
Fix binder-staging so launches succeed
Browse files Browse the repository at this point in the history
Just porting over changes we had in our basehub chart that were
missing, to deal with some breaking changes in kubespawner

Ref #3508
  • Loading branch information
yuvipanda committed Dec 6, 2023
1 parent 03acd16 commit 2db9085
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions helm-charts/binderhub/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,17 +99,15 @@ binderhub:
#
# DASK_GATEWAY__CLUSTER__OPTIONS__IMAGE makes the default worker image
# match the singleuser image.
DASK_GATEWAY__CLUSTER__OPTIONS__IMAGE: "{JUPYTER_IMAGE_SPEC}"
DASK_GATEWAY__CLUSTER__OPTIONS__IMAGE: "{{JUPYTER_IMAGE_SPEC}}"
# DASK_GATEWAY__CLUSTER__OPTIONS__ENVIRONMENT makes some environment
# variables be copied over to the worker nodes from the user nodes.
DASK_GATEWAY__CLUSTER__OPTIONS__ENVIRONMENT:
'{"SCRATCH_BUCKET": "$(SCRATCH_BUCKET)",
"PANGEO_SCRATCH": "$(PANGEO_SCRATCH)"}'
DASK_GATEWAY__CLUSTER__OPTIONS__ENVIRONMENT: '{{"SCRATCH_BUCKET": "$(SCRATCH_BUCKET)", "PANGEO_SCRATCH": "$(PANGEO_SCRATCH)"}}'
# DASK_DISTRIBUTED__DASHBOARD__LINK makes the suggested link to the
# dashboard account for the /user/<username> prefix in the path. Note
# that this still misbehave if you have a named server but now its at
# least functional for non-named servers.
DASK_DISTRIBUTED__DASHBOARD__LINK: "/user/{JUPYTERHUB_USER}/proxy/{port}/status"
DASK_DISTRIBUTED__DASHBOARD__LINK: "/user/{{JUPYTERHUB_USER}}/proxy/{{port}}/status"
extraFiles:
jupyter_notebook_config.json:
mountPath: /usr/local/etc/jupyter/jupyter_notebook_config.json
Expand Down

0 comments on commit 2db9085

Please sign in to comment.