通常, https : //serverfault.com/a/268727/126950 :
但是, http : //docs.openstack.org/folsom/openstack-ops/content/snapsnots.html说
在OpenStack中,实例快照是一个映像。 您直接上传的图像和glance上创build的图像之间的唯一区别在于,快照创build的图像在glance数据库中具有其他属性。
那么为什么OpenStack将图像与快照区分开来呢?
这两者之间没有任何意义上的区别,只有OpenStack仪表板才能区分图像和快照。 我之前把这个问题作为一个UI错误提交了,并且在即将到来的(havana)的OpenStack版本中已经修复了。
我没有足够的代表直接评论JDS的问题,但这里是答案:你必须下载快照并通过一目了然创build一个图像,所以像这样:
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 ""