From c37279c8fd49a70a9ec868235f86f39c7213ad02 Mon Sep 17 00:00:00 2001 From: Avocet Date: Mon, 20 Apr 2026 15:08:54 +0000 Subject: [PATCH 1/2] docs: volumes are only supported in ord region MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The volumes page and tutorial incorrectly listed ams (Amsterdam) as a supported region for volumes and snapshots. Currently only ord (Chicago) supports volumes — ams volume infrastructure is not yet provisioned. Fixes misleading docs that cause API errors when users try to create volumes in ams. --- examples/tutorials/volumes.md | 3 ++- sandbox/volumes.md | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/examples/tutorials/volumes.md b/examples/tutorials/volumes.md index 96d02af76..22c57b88f 100644 --- a/examples/tutorials/volumes.md +++ b/examples/tutorials/volumes.md @@ -42,7 +42,8 @@ const client = new Client(); ## Provision storage for the cache -Pick a region (`ord` or `ams`) that matches the sandboxes you plan to run. +Pick a region that matches the sandboxes you plan to run. Currently only `ord` +(Chicago) supports volumes. We're going to provide 2 GB of storage for our training cache volume: diff --git a/sandbox/volumes.md b/sandbox/volumes.md index 0a018490b..e2e1700d5 100644 --- a/sandbox/volumes.md +++ b/sandbox/volumes.md @@ -30,7 +30,7 @@ const client = new Client(); const volume = await client.volumes.create({ slug: "training-cache", - region: "ord", // ord (Chicago) or ams (Amsterdam) + region: "ord", // only "ord" (Chicago) is supported today capacity: "2GB", // accepts bytes or "1GB"/"512MB" style strings }); @@ -54,7 +54,7 @@ sdk = DenoDeploy() volume = sdk.volumes.create( slug="training-cache", - region="ord", # ord (Chicago) or ams (Amsterdam) + region="ord", # only "ord" (Chicago) is supported today capacity="2GB" # accepts bytes or "1GB"/"512MB" style strings ) @@ -78,7 +78,7 @@ sdk = AsyncDenoDeploy() volume = await sdk.volumes.create( slug="training-cache", - region="ord", # ord (Chicago) or ams (Amsterdam) + region="ord", # only "ord" (Chicago) is supported today capacity="2GB" # accepts bytes or "1GB"/"512MB" style strings ) @@ -98,7 +98,7 @@ print(volume) | Field | Required | Details | | ---------- | -------- | -------------------------------------------------------------------------------------------------------------------------- | | `slug` | ✅ | Unique per organization. Slugs become part of the mount metadata, so pick something descriptive. | -| `region` | ✅ | Must match an available sandbox region (`"ord"` or `"ams"` today). Only sandboxes in the same region can mount the volume. | +| `region` | ✅ | Currently only `"ord"` (Chicago) is supported. Only sandboxes in the same region can mount the volume. | | `capacity` | ✅ | Between 300 MB and 20 GB. Pass a number of bytes or a string with `GB/MB/KB` (decimal) or `GiB/MiB/KiB` (binary) units. | ### Inspect and search volumes From 78922e55204a8591315754601dc83890d9457feb Mon Sep 17 00:00:00 2001 From: Avocet Date: Mon, 20 Apr 2026 15:13:47 +0000 Subject: [PATCH 2/2] fix: format markdown table --- sandbox/volumes.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sandbox/volumes.md b/sandbox/volumes.md index e2e1700d5..551c6a2cf 100644 --- a/sandbox/volumes.md +++ b/sandbox/volumes.md @@ -95,11 +95,11 @@ print(volume) -| Field | Required | Details | -| ---------- | -------- | -------------------------------------------------------------------------------------------------------------------------- | -| `slug` | ✅ | Unique per organization. Slugs become part of the mount metadata, so pick something descriptive. | -| `region` | ✅ | Currently only `"ord"` (Chicago) is supported. Only sandboxes in the same region can mount the volume. | -| `capacity` | ✅ | Between 300 MB and 20 GB. Pass a number of bytes or a string with `GB/MB/KB` (decimal) or `GiB/MiB/KiB` (binary) units. | +| Field | Required | Details | +| ---------- | -------- | ----------------------------------------------------------------------------------------------------------------------- | +| `slug` | ✅ | Unique per organization. Slugs become part of the mount metadata, so pick something descriptive. | +| `region` | ✅ | Currently only `"ord"` (Chicago) is supported. Only sandboxes in the same region can mount the volume. | +| `capacity` | ✅ | Between 300 MB and 20 GB. Pass a number of bytes or a string with `GB/MB/KB` (decimal) or `GiB/MiB/KiB` (binary) units. | ### Inspect and search volumes