From f7c472df5fe65f4cfd7fbea61a105a0f63df1317 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Wed, 5 Jun 2019 15:17:58 +0200 Subject: [PATCH] Add tmpauthenticator by default to TLJH Is popular enough we should let people use it by default --- docs/topic/authenticator-configuration.rst | 2 ++ tljh/installer.py | 1 + 2 files changed, 3 insertions(+) diff --git a/docs/topic/authenticator-configuration.rst b/docs/topic/authenticator-configuration.rst index 75e6efdc8..d9182c7f2 100644 --- a/docs/topic/authenticator-configuration.rst +++ b/docs/topic/authenticator-configuration.rst @@ -16,6 +16,8 @@ can be used with TLJH. A number of them ship by default with TLJH: available. #. `FirstUseAuthenticator `_ - Users set their password when they log in for the first time. Default authenticator used in TLJH. +#. `TmpAuthenticator `_ - Opens the JupyterHub to the + world, makes a new user every time someone logs in. #. `NativeAuthenticator `_ - Allow users to signup, add password security verification and block users after failed attempts oflogin. We try to have specific how-to guides & tutorials for common authenticators. Since we can not cover diff --git a/tljh/installer.py b/tljh/installer.py index b597e0b9c..3447e0670 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -208,6 +208,7 @@ def ensure_jupyterhub_package(prefix): 'jupyterhub-firstuseauthenticator==0.12', 'jupyterhub-nativeauthenticator==0.0.4', 'jupyterhub-ldapauthenticator==1.2.2', + 'jupyterhub-tmpauthenticator==0.6', 'oauthenticator==0.8.2', ]) traefik.ensure_traefik_binary(prefix)