From 81100fd5bb029ea5deecd3ecb6833b8025b84826 Mon Sep 17 00:00:00 2001 From: Joakim Persson Date: Sun, 19 Apr 2026 18:15:53 +0200 Subject: [PATCH] Add caveats and two-step fallback for inline boot-from-volume command --- deploy/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/deploy/README.md b/deploy/README.md index 8485412..cd7f264 100644 --- a/deploy/README.md +++ b/deploy/README.md @@ -61,6 +61,12 @@ openstack server create \ devbox-vm ``` +> **Note:** The inline `volume_type` parameter requires API microversion 2.67+. If the server goes to ERROR state, check your volume quota (`openstack quota show`) and try creating the volume separately: +> ```bash +> openstack volume create --image Debian-13-Trixie --size 40 --type performance --bootable devbox-boot-volume +> openstack server create --flavor c4m8 --volume devbox-boot-volume --network my-network --security-group opencode-devbox --user-data cloud-init.yml devbox-vm +> ``` + #### Floating IP OpenStack doesn't support assigning a floating IP at instance creation time — it's a separate step after the VM is active: