Created
July 29, 2021 14:17
-
-
Save kerin/0fc062518e4009d88e1d8bd8470f2044 to your computer and use it in GitHub Desktop.
jupyterhub on k8s helm values
This file contains hidden or 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
proxy: | |
secretToken: "supersecret" | |
singleuser: | |
defaultUrl: /lab | |
image: | |
name: jupyter/minimal-notebook | |
tag: latest | |
# imagePullPolicy: Always | |
profileList: | |
- default: true | |
description: "To avoid too much bells and whistles: Python. Based on https://jupyter-docker-stacks.readthedocs.io/en/latest/using/selecting.html#jupyter-minimal-notebook" | |
display_name: Minimal environment | |
kubespawner_override: | |
image: jupyter/minimal-notebook:latest | |
imagePullPolicy: Always | |
- description: Contains R. Based on https://jupyter-docker-stacks.readthedocs.io/en/latest/using/selecting.html#jupyter-r-notebook | |
display_name: r-notebook | |
kubespawner_override: | |
image: jupyter/r-notebook:latest | |
imagePullPolicy: Always | |
- description: All Spark. Based on https://jupyter-docker-stacks.readthedocs.io/en/latest/using/selecting.html#jupyter-all-spark-notebook | |
display_name: Spark environment | |
kubespawner_override: | |
image: jupyter/all-spark-notebook:latest | |
imagePullPolicy: Always | |
- description: "Includes libraries for data analysis from the Julia, Python, and R communities." | |
display_name: Datascience JupyterLab Notebook | |
kubespawner_override: | |
image: jupyter/datascience-notebook:latest | |
imagePullPolicy: Always | |
- description: "Elyra is a set of AI-centric extensions to JupyterLab Notebooks. Based on https://elyra.readthedocs.io/en/latest/getting_started/overview.html" | |
display_name: Elyra | |
kubespawner_override: | |
image: elyra/elyra | |
tag: dev | |
imagePullPolicy: Always | |
scheduling: | |
userScheduler: | |
enabled: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment