Skip to content

Commit

Permalink
Merge pull request #557 from willingc/annotate-user
Browse files Browse the repository at this point in the history
Add informational fields and minimal comments to jupyterhub chart
  • Loading branch information
choldgraf authored Mar 6, 2018
2 parents db0e23e + c5fbccb commit 028c71e
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
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 e.g. 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

0 comments on commit 028c71e

Please sign in to comment.