Fix image name casing to match OpenStack: Debian-13-Trixie

This commit is contained in:
2026-04-19 16:47:10 +02:00
parent addccd4a82
commit 5bac08dd03
+2 -2
View File
@@ -41,7 +41,7 @@ openstack flavor list
# Basic — boot from default storage
openstack server create \
--flavor c4m8 \
--image debian-13-trixie \
--image Debian-13-Trixie \
--network my-network \
--security-group opencode-devbox \
--user-data cloud-init.yml \
@@ -57,7 +57,7 @@ openstack server create \
--network my-network \
--security-group opencode-devbox \
--user-data cloud-init.yml \
--block-device source=image,id=$(openstack image show debian-13-trixie -f value -c id),dest=volume,size=40,shutdown=preserve,bootindex=0,volume_type=performance \
--block-device source=image,id=$(openstack image show Debian-13-Trixie -f value -c id),dest=volume,size=40,shutdown=preserve,bootindex=0,volume_type=performance \
devbox-vm
```