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

Add informational fields and minimal comments to jupyterhub chart #557

Merged
merged 3 commits into from
Mar 6, 2018
Merged
Show file tree
Hide file tree
Changes from 2 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
16 changes: 14 additions & 2 deletions jupyterhub/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
apiVersion: v1
description: Multi-user Jupyter installation
name: jupyterhub
version: v0.7-dev
apiVersion: v1
description: JupyterHub is a multi-user Jupyter installation.
keywords:
- jupyterhub
- jupyter
home:
- https://zero-to-jupyterhub.readthedocs.io
- https://jupyterhub.readthedocs.io
sources:
- https://github.com/jupyterhub/zero-to-jupyterhub-k8s
- https://github.com/jupyterhub/jupyterhub
maintainers:
- name: Yuvi Panda
- name: Project Jupyter
15 changes: 13 additions & 2 deletions jupyterhub/values.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Default values for jupyterhub.
# This is a YAML-formatted file.

# hub is the main JupyterHub server
hub:
service:
type: ClusterIP
Expand Down Expand Up @@ -40,9 +44,12 @@ hub:
pdb:
enabled: true

# rbac is role based access control.
# **caution** disabling rbac will give root access.
rbac:
enabled: true

# proxy is a user-facing object for user access to JupyterHub
proxy:
secretToken: ''
service:
Expand Down Expand Up @@ -99,8 +106,9 @@ proxy:
hosts: []


# Google OAuth secrets
# auth is the authenticator used i.e. Google OAuth secrets
auth:
# type is the specific authenticator used by the hub
type: dummy
whitelist:
users:
Expand All @@ -113,7 +121,7 @@ auth:
enabled: false
cryptoKey:


# singleuser is the Jupyter singleuser notebook server
singleuser:
networkTools:
image:
Expand Down Expand Up @@ -155,6 +163,7 @@ singleuser:
cmd: jupyterhub-singleuser
defaultUrl:

# prePuller is used to pre-pull images to nodes and decrease user startup time
prePuller:
hook:
enabled: true
Expand All @@ -169,12 +178,14 @@ prePuller:
name: gcr.io/google_containers/pause
tag: '3.0'

# ingress is the object used to manage external access to the cluster
ingress:
enabled: false
annotations: {}
hosts: []
tls:

# cull is the service used to remove inactive user notebook pods
cull:
enabled: true
users: false
Expand Down