This repository contains a Terraform template for running JupyterHub on Google Kubernetes Engine.
We've also included some example notebooks (applications/ray/example_notebooks
), including one that serves a GPT-J-6B model with Ray AIR (see
here for the original notebook). To run these, follow the instructions at
applications/ray/README.md
to install a Ray cluster.
This module deploys the following resources, once per user:
- JupyterHub deployment
- User namespace
- Kubernetes service accounts
-
GCP Project with following APIs enabled
- container.googleapis.com
- gkehub.googleapis.com (required when using private clusters with Anthos Connect Gateway)
- iap.googleapis.com (required when using authentication with Identity Aware Proxy)
-
A functional GKE cluster.
- To create a new standard or autopilot cluster, follow the instructions in
infrastructure/README.md
- Alternatively, you can set the
create_cluster
variable to true inworkloads.tfvars
to provision a new GKE cluster. This will default to creating a GKE Autopilot cluster; if you want to provision a standard cluster you must also setautopilot_cluster
to false.
- To create a new standard or autopilot cluster, follow the instructions in
-
This module is configured to use Identity Aware Proxy (IAP) as default authentication method for JupyterHub. It expects the brand & the OAuth consent configured in your org. You can check the details here: OAuth consent screen
This code can also perform auto brand creation. Please check the details below
- Preinstall the following on your computer:
- Terraform
- Gcloud CLI
JupyterHub server can use either local storage or GCS to store notebooks and other artifcts.
To use GCS, create a bucket with your username. For example, when authenticating with IAP as [email protected], ensure your bucket name is gcsfuse-<username>
- If needed, clone the repo
git clone https://github.com/GoogleCloudPlatform/ai-on-gke
cd ai-on-gke/applications/jupyter
- Edit
workloads.tfvars
with your GCP settings. Thenamespace
that you specify will become a K8s namespace for your JupyterHub services. For more information about what the variables do visit here
Important Note:
If using this with the Ray module (applications/ray/
), it is recommended to use the same k8s namespace
for both i.e. set this to the same namespace as applications/ray/workloads.tfvars
.
Variable | Description | Required |
---|---|---|
project_id | GCP Project Id | Yes |
cluster_name | GKE Cluster Name | Yes |
cluster_location | GCP Region | Yes |
cluster_membership_id | Fleet membership name for GKE cluster. Required when using private clusters with Anthos Connect Gateway |
|
namespace | The namespace that JupyterHub and rest of the other resources will be installed in. | Yes |
gcs_bucket | GCS bucket to be used for Jupyter storage | |
create_service_account | Create service accounts used for Workload Identity mapping | Yes |
gcp_and_k8s_service_account | GCP service account used for Workload Identity mapping and k8s sa attached with workload | Yes |
For variables under JupyterHub with IAP
, please see the section below
NOTE: To secure the Jupyter endpoint, this module enables IAP by default. It is strongly recommended to keep this configuration. If you wish to disable it, do the following: set the
add_auth
flag to false in theworkloads.tf
file.
-
If you already have a brand setup for your project, use the existing values to fill in the variable values in workloads.tf
-
If you have not enabled the IAP API before or created a Brand for your project, please follow these steps:
- Navigate to the
brand
page to create your own brand:
See here for more information about how to create a brand automatically. Please note, auto brand creation enables the application only for internal (within the org) users. This can be switched to external users from the consent screen.
- Navigate to the
See the example .tfvars
files under /applications/jupyter
for different brand/IAP configurations.
Variable | Description | Default Value | Required |
---|---|---|---|
add_auth | Enable IAP on JupyterHub | true | Yes |
brand | Name of the brand used for creating IAP OAuth clients. Only one is allowed per project. View existing brands: gcloud iap oauth-brands list . Leave it empty to create a new brand. Uses support_email |
||
support_email | Support email assocated with the brand. Used as a point of contact for consent for the "OAuth Consent" in Cloud Console. Optional field if brand is empty. |
||
default_backend_service | default_backend_service | ||
service_name | Name of the Backend Service that gets created when enabling IAP. | ||
url_domain_addr | Provided by the user if they want to bring their own URL/Domain. Used by the IAP resources if filled in. Filling this in will disable automatic global IP reservation. Must also fill in url_domain_name. | ||
url_domain_name | This variable will only be used if url_domain_addr is provided. It is the name associated with the domain provided by the user. Since we are using Ingress, it will require the kubernetes.io/ingress.global-static-ip-name annotation along with the name associated. |
||
client_id | Client ID of an OAuth 2.0 Client ID created by the user for enabling IAP. You must also input the client_secret. If this variable is unset, the template will create an OAuth client for you - in this case, you must ensure the associated brand is Internal i.e. only principals within the organization can access the application. |
||
client_secret | Client Secret associated with the client_id. This variable will only be used when the client id is filled out. | ||
members_allowlist | Comma seperated values for users to be allowed access through IAP. Example values: user:[email protected] |
NOTE: Terraform keeps state metadata in a local file called
terraform.tfstate
. Deleting the file may cause some resources to not be cleaned up correctly even if you delete the cluster. We suggest usingterraform destroy
before reapplying/reinstalling.
- Ensure your gcloud application default credentials are in place.
gcloud auth application-default login
-
Run
terraform init
-
Run
terraform apply --var-file=./workloads.tfvars
. It can take upto 5 minutes on standard clusters & upto 10 minutes on AutoPilot clusters. Due to some IAP limitations, this is expected to fail with an errorError retrieving IAM policy for iap webbackendservice
which will be resolved by the next step. -
If using authentication with IAP (i.e.
add_auth = true
), rerun terraform apply again. This is needed to configure Jupyter with IAP correctly.- Verify the backend service for IAP has been created (takes 5-10 mins) with
gcloud compute backend-services list
- Should have
jupyter-proxy-public
in the name eg.:k8s1-63da503a-jupyter-proxy-public-80-74043627
.
- Should have
- Run
terraform apply --var-file=./workloads.tfvars
- Verify the backend service for IAP has been created (takes 5-10 mins) with
- Extract the randomly generated password for JupyterHub login
terraform output jupyterhub_password
- Setup port forwarding for the frontend:
kubectl port-forward service/proxy-public -n <namespace> 8081:80 &
, and openlocalhost:8081
in a browser.
-
Note down the value for the
domain
from the terraform output section:terraform output domain
. You can open this in a browser & login with your credentials. Alternatively, domain value for Jupyter Ingress can be found on Certificate Manager page. -
Ensure the managed cert for the domain has finished provisioning:
kubectl get managedcertificate -n <namespace>
. This can take 10 - 20 minutes. You may see an SSL error if you try to hit the domain when the cert isn'tActive
. -
Open the external IP in a browser and login. If you get an access error, see the
Setup Access
section below. Please note there may be some propagation delay after adding IAP principals (5-10 mins). -
Select profile and open a Jupyter Notebook
NOTE: Domain specific managed certificate may take some time to finish provisioning. This can take between 10-15 minutes. The browser may not display the login page correctly until the certificate provisioning is complete.
In order for users to login to JupyterHub via IAP, their access needs to be configured. To allow access for users/groups:
-
Navigate to the GCP IAP Cloud Console and select your backend-service for
<namespace>/proxy-public
. -
Click on
Add Principal
, insert the username / group name and select underCloud IAP
with roleIAP-secured Web App User
. Once presmission is granted, these users / groups can login to JupyterHub with IAP. Please note there may be some propagation delay after adding IAP principals (5-10 mins).
JupyterHub is configured to provide 2 choices for storage:
-
Default JupyterHub Storage -
pd.csi.storage.gke.io
with reclaim policyDelete
-
GCSFuse -
gcsfuse.csi.storage.gke.io
uses GCS Buckets and require users to pre-create buckets with name formatgcsfuse-{username}
For more information about Persistent storage and the available options, visit here
This example is adapted from Ray AIR's examples here.
-
Open the
gpt-j-online.ipynb
notebook underai-on-gke/applications/ray/example_notebooks
. -
Open a terminal in the Jupyter session and install Ray AIR:
pip install ray[air]
-
Run through the notebook cells. You can change the prompt in the last cell:
prompt = ( ## Input your own prompt here )
-
This should output a generated text response.
IMPORTANT If you enable automatic brand creation, only Internal
brand will be created, allowing only the users under the same org as the project to access the application.
Make sure Policy for Restrict Load Balancer Creation Based on Load Balancer Types allows EXTERNAL_HTTP_HTTPS.
Ensure that the following variables within workloads.tfvars
are set:
- enable_iap_service - Enables the IAP service API. Leave as false if IAP is enabled before.
- brand - creates a brand for the project. Only one is currently allowed per project. Leave it empty to create a new brand
- support_email - used by brand, required field.
- IMPORTANT client_id and client_secret - If your brand is
external
, you must provide your own client_id and client_secret. If your brand isinternal
, you can choose to leave the variable as is and allow terraform to create one for you. - if you do bring your own OAuth client, you must add to the
Authorized redirect URIs
Field:https://iap.googleapis.com/v1/oauth/clientIds/<client ID>:handleRedirect
Note:
This module uses <ip>.nip.io
as the domain name with a global static ipv4 address that is configured automatically. Optionaly you can also use a custom doamin & existing ingress ip address in the workloads.tfvars
file.
For more information about JupyterHub profiles and the preset profiles visit here