Merge pull request #365 from yuvipanda/tmpauthenticator-add

Add tmpauthenticator by default to TLJH
This commit is contained in:
Georgiana Elena
2019-06-05 16:44:32 +03:00
committed by GitHub
2 changed files with 3 additions and 0 deletions

View File

@@ -16,6 +16,8 @@ can be used with TLJH. A number of them ship by default with TLJH:
available. available.
#. `FirstUseAuthenticator <https://github.com/yuvipanda/jupyterhub-firstuseauthenticator>`_ - Users set #. `FirstUseAuthenticator <https://github.com/yuvipanda/jupyterhub-firstuseauthenticator>`_ - Users set
their password when they log in for the first time. Default authenticator used in TLJH. their password when they log in for the first time. Default authenticator used in TLJH.
#. `TmpAuthenticator <https://github.com/jupyterhub/tmpauthenticator>`_ - Opens the JupyterHub to the
world, makes a new user every time someone logs in.
#. `NativeAuthenticator <https://native-authenticator.readthedocs.io/en/latest/>`_ - Allow users to signup, add password security verification and block users after failed attempts oflogin. #. `NativeAuthenticator <https://native-authenticator.readthedocs.io/en/latest/>`_ - 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 We try to have specific how-to guides & tutorials for common authenticators. Since we can not cover

View File

@@ -208,6 +208,7 @@ def ensure_jupyterhub_package(prefix):
'jupyterhub-firstuseauthenticator==0.12', 'jupyterhub-firstuseauthenticator==0.12',
'jupyterhub-nativeauthenticator==0.0.4', 'jupyterhub-nativeauthenticator==0.0.4',
'jupyterhub-ldapauthenticator==1.2.2', 'jupyterhub-ldapauthenticator==1.2.2',
'jupyterhub-tmpauthenticator==0.6',
'oauthenticator==0.8.2', 'oauthenticator==0.8.2',
]) ])
traefik.ensure_traefik_binary(prefix) traefik.ensure_traefik_binary(prefix)