Skip to content

Instantly share code, notes, and snippets.

@phonglh79
Forked from samos123/export-image.sh
Created May 30, 2023 08:32
Show Gist options
  • Save phonglh79/2615452783cbc28f1f345d6b1b96a7bb to your computer and use it in GitHub Desktop.
Save phonglh79/2615452783cbc28f1f345d6b1b96a7bb to your computer and use it in GitHub Desktop.
export images and volume snapshots from OpenStack Ceph RBD
#!/bin/bash
set -xe
imageid=$1
qemu-img convert -f raw -O qcow2 rbd:images/$imageid $imageid.qcow2
#!/bin/bash
set -xe
snapid=$1
volid=$(cinder snapshot-show $snapid | grep volume_id | awk '{ print $4 }')
qemu-img convert -f raw -O qcow2 rbd:volumes/volume-$volid@snapshot-$snapid $snapid.qcow2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment