赞
踩
架构图
工作流程
Glance-api
glance-api用于接收镜像API的调用,诸如镜像发现、恢复以及存储等。作为一个后台进程, glance-api对外提供 REST API接口,响应用户发起的镜像查询、获取和存储的调用
Glance-registry
glance- registry用于存储、处理和恢复镜像的元数据,元数据包括镜像的的大小和类型等属性, registry是一个内部服务接口,不建议暴露给普通用户
Database
database用于存放镜像的元数据,可以根据需要选择数据库,如 MySQL、 SQLite等
Storage repository for image files
一般情况下, glance并不需要存储任何镜像,而是将镜像存储在后端仓库中。 Glance支持多种 repository。主要包括对象存储 Swift、块存储 Cinder、 VMware的ESX/ESXi或者vCenter、亚马逊的S3、HTTP可用服务器、Ceph等
openstack image list
openstack image show 镜像名
openstack image create --file 镜像文件名 --disk-format qcow2 --container-format bare --public centos7
生产一个qcow2格式的镜像,名字为centos7glance image-create --name “centos7” --file centos.img --disk-format raw --container-format bare --progress
openstack image delete 镜像名
openstack image create --file 镜像 --disk-format qcow2 --container-format bare --public 镜像名
qemu-img convert -f raw -O qcow2 centos7.img centos7.qcow2
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。