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

[New Hub prototype] Binderhub UI demo #4119

Merged
merged 24 commits into from
May 30, 2024
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
999a69a
Add initial support for a binderhub UI hub
GeorgianaElena May 22, 2024
81bd511
Add the config files to the new cluster
GeorgianaElena May 22, 2024
34891e0
Use the hub's url
GeorgianaElena May 22, 2024
57dd87e
Make use of binderhub-service new extraEnv
consideRatio May 22, 2024
9d873eb
Use latest binderhub
GeorgianaElena May 24, 2024
8c03dc9
Export more relevant env vars
GeorgianaElena May 24, 2024
c7389a9
Temp use the old chart until latest is fixed
GeorgianaElena May 24, 2024
ecdd191
Fix ingress config and add binderhub's public ip for oauth callback
GeorgianaElena May 24, 2024
492f701
Switch to cilogon, load roles
GeorgianaElena May 25, 2024
f1f04f1
Reset base url otherwise we're stuck with /binder/services
GeorgianaElena May 25, 2024
f17c600
Export JUPYTERHUB_BASE_URL instead of JUPYTHUB_API_URL to fix redirect
GeorgianaElena May 25, 2024
6aa4d03
JUPYTERHUB_API_URL needs to be set as well otherwise a weird concaten…
GeorgianaElena May 25, 2024
e0bbb13
Update the binderhub-service chart
GeorgianaElena May 27, 2024
fe284c1
Temp declare extra config from chart in hub's values file
GeorgianaElena May 27, 2024
55b819e
Temp use old's registry creds
GeorgianaElena May 27, 2024
2f125c1
Add scopes for the binder service to use relevant hub REST API
consideRatio May 28, 2024
c2d5f91
Unset initContainers referencing home folders not mounted
consideRatio May 28, 2024
3523ccb
Unset other volume mounts not used
consideRatio May 28, 2024
e72c1e8
Cleanup not needed parts
consideRatio May 28, 2024
6637088
Cleanup re-setting of default jupyterhub-singleuser
consideRatio May 28, 2024
617292c
Tweak permissions for binder service to be minimal
consideRatio May 28, 2024
7d17a3f
Additional tweaking of required config for binderhub-ui
consideRatio May 28, 2024
41818be
Move the ingress class nama and annotations to basehub
GeorgianaElena May 28, 2024
488641f
Update the registry password with the one in terraform output
GeorgianaElena May 28, 2024
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
7 changes: 6 additions & 1 deletion config/clusters/2i2c/binderhub-ui-demo.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ jupyterhub:
redirectToServer: false
services:
binder:
display: false
consideRatio marked this conversation as resolved.
Show resolved Hide resolved
oauth_no_confirm: true
oauth_redirect_uri: https://binderhub-ui-demo.2i2c.cloud/oauth_callback
loadRoles:
Expand All @@ -50,6 +49,12 @@ jupyterhub:
scopes:
- servers
- read:users # admin:users is required if authentication isn't enabled
user:
scopes:
- self
# Admin users will by default have access:services, so this is only
# observed to be required for non-admin users.
- access:services!service=binder
config:
BinderSpawnerMixin:
auth_enabled: true
Expand Down