Documentation Index
Fetch the complete documentation index at: https://docs.ivory.finance/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
What are Foundry Notebooks?
A Foundry Notebook is a full JupyterLab environment that lives inside your tenant’s isolated workspace. It runs on the same cluster as your IOMETE data lakehouse, so you can pull in your Iceberg tables directly without moving data around. It’s the fastest way to iterate on a model idea before you hand it off to the AutoML pipeline. Each notebook server is a Kubernetes pod managed by the Kubeflow Notebook Controller. You own your server — no one else in the platform can access it.Notebook servers use
emptyDir storage by default, meaning everything in /home/jovyan is lost when the pod restarts. Save notebooks to your mounted datasets or export them before shutting down.Create a notebook server
Provisions a JupyterLab pod in the shared Kubeflow namespace, labelled with your tenant slug for isolation. The response comes back immediately — the pod itself takes 30–60 seconds to reachready state while the container image pulls.
Request body
| Field | Required | Default | Description |
|---|---|---|---|
name | Yes | — | Short identifier for this server (letters, numbers, hyphens) |
image | No | kubeflownotebookswg/jupyter-scipy:v1.8.0 | Container image. The default includes NumPy, Pandas, scikit-learn, Matplotlib, and SciPy. Use any public or private image your cluster can pull. |
cpu | No | 1 | CPU request and limit (Kubernetes quantity string, e.g. "2", "500m") |
memory | No | 4Gi | Memory request and limit (e.g. "8Gi", "512Mi") |
List notebook servers
Returns all running or pending notebook servers that belong to your tenant. Theready field tells you whether JupyterLab is accepting connections.
Delete a notebook server
Shuts down the notebook pod and removes the Kubernetes resource. This is permanent — any unsaved work in/home/jovyan is gone.
The API returns 204 No Content on success. If the name doesn’t belong to your tenant you’ll get 404.

