Skip to content

Commit 349f93c

Browse files
authored
fix: update the image upload references
1 parent 5ab0ebe commit 349f93c

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

docs/openstack-glance-images.md

+10-5
Original file line numberDiff line numberDiff line change
@@ -259,10 +259,17 @@ openstack --os-cloud default image create \
259259

260260
Make sure you get the most up to date image URL from the [upstream documentation](https://fedoraproject.org/coreos/download).
261261

262+
Download the image.
263+
262264
``` shell
263265
# NOTE: CoreOS provides a compressed image.
264266
wget https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/40.20240616.3.0/x86_64/fedora-coreos-40.20240616.3.0-openstack.x86_64.qcow2.xz
265267
xz -d fedora-coreos-40.20240616.3.0-openstack.x86_64.qcow2.xz
268+
```
269+
270+
Upload the image to glance.
271+
272+
``` shell
266273
openstack --os-cloud default image create \
267274
--progress \
268275
--disk-format qcow2 \
@@ -283,21 +290,19 @@ openstack --os-cloud default image create \
283290
fedora-coreos-40
284291
```
285292

286-
### Fedora CoreOS Image Required by Magnum
293+
#### Fedora CoreOS Image Required by Magnum
287294

288295
!!! note
289296

290297
When configuring the ClusterTemplate, you must specify the image used to boot the servers. To do this, register the image with OpenStack Glance and ensure that the os_distro property is set to fedora-coreos. The os_distro attribute must be defined and accurately reflect the distribution used by the cluster driver. This parameter is mandatory and does not have a default value, so it must be specified explicitly. Note that the os_distro attribute is case-sensitive. Currently, only Fedora CoreOS is supported. For more detailed information, refer to the [upstream magnum documentation](https://docs.openstack.org/magnum/latest/user/index.html).
291298

292299
``` shell
293-
wget https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/40.20240728.3.0/x86_64/fedora-coreos-40.20240728.3.0-openstack.x86_64.qcow2.xz
294-
xz -d fedora-coreos-40.20240728.3.0-openstack.x86_64.qcow2.xz
295300
openstack --os-cloud default image create \
296301
--progress \
297302
--disk-format qcow2 \
298303
--container-format bare \
299304
--public \
300-
--file fedora-coreos-40.20240728.3.0-openstack.x86_64.qcow2 \
305+
--file fedora-coreos-40.20240616.3.0-openstack.x86_64.qcow2 \
301306
--property hw_vif_multiqueue_enabled=true \
302307
--property hw_qemu_guest_agent=yes \
303308
--property hypervisor_type=kvm \
@@ -323,7 +328,7 @@ openstack --os-cloud default image create \
323328
--disk-format qcow2 \
324329
--container-format bare \
325330
--public \
326-
--file openSUSE-Leap-15.5-Minimal-VM.x86_64-kvm-and-xen.qcow2 \
331+
--file openSUSE-Leap-15.2-OpenStack.x86_64-0.0.4-Build8.25.qcow2 \
327332
--property hw_vif_multiqueue_enabled=true \
328333
--property hw_qemu_guest_agent=yes \
329334
--property hypervisor_type=kvm \

0 commit comments

Comments
 (0)