-
-
Save phonglh79/2615452783cbc28f1f345d6b1b96a7bb to your computer and use it in GitHub Desktop.
export images and volume snapshots from OpenStack Ceph RBD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -xe | |
imageid=$1 | |
qemu-img convert -f raw -O qcow2 rbd:images/$imageid $imageid.qcow2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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