-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5249 from 2i2c-org/dubois
add an ephemeral dubois hub
- Loading branch information
Showing
3 changed files
with
39 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# nfs functionality explicitly disabled in case a common.values.yaml | ||
# file is used to enable it for all hubs in the cluster | ||
nfs: | ||
enabled: false | ||
pv: | ||
enabled: false | ||
|
||
jupyterhub: | ||
ingress: | ||
hosts: [dubois.2i2c.cloud] | ||
tls: | ||
- hosts: [dubois.2i2c.cloud] | ||
secretName: https-auto-tls | ||
hub: | ||
config: | ||
JupyterHub: | ||
authenticator_class: tmp | ||
custom: | ||
singleuserAdmin: | ||
# Turn off trying to mount shared-readwrite folder for admins | ||
extraVolumeMounts: [] | ||
singleuser: | ||
initContainers: [] | ||
storage: | ||
# No persistent storage should be kept to reduce any potential data | ||
# retention & privacy issues. | ||
type: none | ||
extraVolumeMounts: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
jupyterhub: | ||
ingress: | ||
hosts: [dubois.2i2c.cloud] | ||
hosts: [prod.dubois.2i2c.cloud] | ||
tls: | ||
- hosts: [dubois.2i2c.cloud] | ||
- hosts: [prod.dubois.2i2c.cloud] | ||
secretName: https-auto-tls | ||
hub: | ||
config: | ||
GitHubOAuthenticator: | ||
oauth_callback_url: https://dubois.2i2c.cloud/hub/oauth_callback | ||
oauth_callback_url: https://prod.dubois.2i2c.cloud/hub/oauth_callback |