Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump up kubespawner version #1137

Merged
merged 3 commits into from
Mar 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/howto/customize/custom-image.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(customize/custom-image)=
# Use a custom hub image
# Use a custom user image

Community hubs use an image we curate as the default. This can be replaced with your
own custom image fairly easily. However, custom images should be maintained
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/basehub/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ jupyterhub:
- --Configurator.config_file=/usr/local/etc/jupyterhub-configurator/jupyterhub_configurator_config.py
image:
name: quay.io/2i2c/pilot-hub
tag: "0.0.1-n2453.h7734a80"
tag: "0.0.1-n2546.ha1b6098"
nodeSelector:
hub.jupyter.org/node-purpose: core
networkPolicy:
Expand Down
6 changes: 6 additions & 0 deletions helm-charts/images/hub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ ENV CONFIGURATOR_VERSION ed7e3a0df1e3d625d10903ef7d7fd9c2fbb548db

RUN pip install --no-cache git+https://github.com/yuvipanda/jupyterhub-configurator@${CONFIGURATOR_VERSION}


# Install newer version of jupyterhub-kubespawner, to bring in https://github.com/jupyterhub/kubespawner/pull/525
# https://github.com/2i2c-org/infrastructure/issues/1103 is happening frequently enough
# z2jh 1.2.x ships with kubespawner 1.1.0, so we just do a little bump
RUN pip install --no-cache --upgrade jupyterhub-kubespawner==1.1.2

USER root
RUN mkdir -p /usr/local/etc/jupyterhub-configurator

Expand Down