Add floating IP instructions to OpenStack deploy docs

This commit is contained in:
2026-04-19 16:22:52 +02:00
parent fa3bb12d44
commit 7b0f6ed880
+14
View File
@@ -61,6 +61,20 @@ openstack server create \
devbox-vm 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:
```bash
# Allocate a new floating IP from the external network
openstack floating ip create <external-network>
# Assign it to the VM
openstack server add floating ip devbox-vm <floating-ip>
```
To find your external network name: `openstack network list --external`. If you already have an unassigned floating IP, skip the create step.
The VM boots with Docker installed, firewall configured (or skipped on OpenStack), and your SSH key authorized. Log in as the `devbox` user. The VM boots with Docker installed, firewall configured (or skipped on OpenStack), and your SSH key authorized. Log in as the `devbox` user.
### Console password (optional) ### Console password (optional)