通常、 https://serverfault.com/a/268727/12695 :
ただし、 http://docs.openstack.org/folsom/openstack-ops/content/snapsnots.html は言う
OpenStackでは、インスタンスのスナップショットはイメージです。 glanceに直接アップロードした画像とスナップショットで作成した画像の唯一の違いは、スナップショットで作成した画像にはglanceデータベースに追加のプロパティがあることです。
では、なぜOpenStackはスナップショットと画像を区別するのですか?
JDSの質問に直接コメントするのに十分な担当者がいませんが、答えは次のとおりです。スナップショットをダウンロードして、一目で画像を作成する必要があるため、次のようになります。
source openrc
glance list-images #find your snapshots ID
glance image-download "snapshot-ID" --file "some name".qcow2 #without the ""
glance image-create --name "desired image name" --disk-format qcow2 --container-format bare --min-disk="size of the virtual disk of the snapshot" --is-public True --is-protected True --file "some-name".qcow2 #again without the ""