Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
# Download image
Browse here https://builds.coreos.fedoraproject.org/browser?stream=stable&arch=x86_64

# Decompress
xz -d <image.qcow2.xz>

# Convert
qemu-img convert -f qcow2 -O raw <image.qcow2> <image.raw>

# Upload to glance. Note the  properties. These are important
openstack image create \
                      --disk-format=raw \
                      --container-format=bare \
                      --file=<imagw>.raw \
                      --min-disk <big enough> \
                      --property os_distro='fedora-atomiccoreos' \
                      --property hw_rng_model='virtio' \
                      --public \
                      --protected \
                      fedora-coreos<version>-stable

...