/z2jh-aws

🥞 Zero-to-JupyterHub with Kubernetes using an opinionated tech stack

Primary LanguageMakefileBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

z2jh-aws

A take on Zero-to-JupyterHub with Kubernetes using a very specific tech stack, namely:

Before You Begin

Make sure the tech stack above and all the complexity that comes with it are a good fit for your use case before continuing. Here are some alternatives:

  • If you only need a Jupyter Notebook server for yourself, you do not need to set up JupyterHub. You should instead follow the instructions to install and run a standalone Jupyter Notebook server.
  • If you need to run Jupyter Notebook servers for a small group of people and have no interest in learning about Kubernetes, you will be better off following the guide for The Littlest JupyterHub.
  • If you intend to use a Kubernetes provider other than AWS, you should follow the instructions in the full Zero-to-JupyterHub guide.
  • If you are familiar with Kubernetes but have never configured JupyterHub on run on k8s before, you should follow the instructions in the full Zero-to-JupyterHub guide at least once before using the highly-opinionated shortcuts enabled by this repository.

Prerequisites

  • macOS
  • Homebrew
  • A public domain name

Basic Usage

  1. Install tools used throughout the rest of the instructions using brew.

    make client-prereqs
  2. Create an AWS IAM access key and secret for the account that will be used to provision AWS infrastructure.

  3. Configure a profile (e.g., personal) in ~/.aws/credentials containing the IAM credentials and desired region for your AWS infrastructure.

    [personal]
    aws_access_key_id=YOUR_IAM_KEY_ID
    aws_secret_access_key=YOUR_IAM_KEY_SECRET
    region=us-east-1
    
  4. Configure Elastic Kubernetes Service (EKS) and Elastic Container Registry (ECR) instances on AWS using Terraform. Fair warning: AWS will start charging you after you run this command.

    export AWS_PROFILE=personal
    make k8s-cluster
  5. Sign up for a (free) CloudFlare account if you don't already have one.

  6. Add a site to your Cloudflare account matching your domain name (e.g., parente.dev).

  7. Login to your domain name registrar to configure your domain name to use the CloudFlare nameservers (currently, alec.ns.cloudflare.com and alice.ns.cloudflare.com).

  8. Back on the CloudFlare website, click the Crypto icon for your new site and change the SSL dropdown to Full.

  9. Also on the CloudFlare site, get your CloudFlare API token from My Profile → API Tokens → Global API Key. p.

  10. Now at the console, apply configurations to Kubernetes for Helm tiller, nginx ingress, Let's Encrypt certificate issuer, and CloudFlare DNS.

    export FQDN=parente.dev
    export CLOUDFLARE_API_KEY=YOUR_CLOUDFLARE_API_KEY
    export CLOUDFLARE_EMAIL=parente@gmail.com
    make k8s-services
  11. Deploy JupyterHub configured to use the jupyter/minimal-notebook Docker image from jupyter/docker-stacks and FirstUseAuthenticator.

    make jupyterhub
  12. Visit https://YOUR_DOMAIN in your browser.

  13. Login with username admin and a strong password of your choosing.

  14. Click File → Hub Control Panel → Admin → Add Users to populate a whitelist of users allowed to login.

Customization / How do I ...

See what's configured in Kubernetes

make show

Use a different JupyterHub Docker image tag

See https://jupyterhub.github.io/helm-chart/ for available versions and https://github.com/jupyterhub/zero-to-jupyterhub-k8s/tree/master/images/hub for the contents of each image. Substitute the version you want into the command below.

make jupyterhub HUB_IMAGE_TAG=0.8.2

Use a different Docker image as my user environment

Choose any of the images maintained at or derived from https://github.com/jupyter/docker-stacks. Produce one of your own using https://github.com/jupyterhub/repo2docker. Then substitute the image name and tag in the command below.

make jupyterhub USER_IMAGE=jupyter/datascience-notebook USER_IMAGE_TAG=2ce7c06a61a1

Build private, custom JupyterHub and user Docker images

  1. Modify the Dockerfile.hub and Dockerfile.user files in this repository so that they define the Docker images you want to use.

  2. Run the following commands to build the images and push them to the AWS ECR instances you provisioned during setup. Specify whatever tag / version number you want to assign to the images (default: latest).

    make hub-image HUB_IMAGE_TAG=1
    make user-image USER_IMAGE_TAG=1
  3. Run the following command to deploy JupyterHub with your custom images:

    make jupyterhub-custom HUB_IMAGE_TAG=1 USER_IMAGE_TAG=1

Use a different method of authentication

Modify the auth section in helmfile.yaml based on the guidance in the Authentication section of Zero to JupyterHub.

Use a different DNS, Kubernetes, TLS, etc. provider

Refer to the Zero to JupyterHub with Kubernetes documentation and share your own take on the general instructions in your own GitHub project.

Run these commands on a different operating system

Use the approprate package manager for your platform to install all of the tools instead by make client-prereqs. If make is not any option for you, run the commands specified in the Makefile directly.

Run kubectl commands

cd z2jh-aws
export KUBECONFIG=./output/jupyterhub/kubeconfig-jupyterhub
kubectl get pods

Tear everything down

make destroy