diff --git a/docs/topic/authenticator-configuration.rst b/docs/topic/authenticator-configuration.rst index 75e6efd..d9182c7 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 b597e0b..3447e06 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)