使用 CirrOS 来验证映像服务的操作,这是一个小的 Linux 映像,可以帮助您测试 OpenStack 部署。
有关如何下载和构建镜像的更多信息,请参阅 OpenStack 虚拟机映像指南。有关如何管理镜像的信息,请参阅 OpenStack 最终用户指南。
在控制节点上执行这些命令。
1、Source admin
凭证获取对 admin 专用 CLI 命令的访问权限:
$ . admin-openrc
2、下载源镜像:
$ wget http://download.cirros-cloud.net/0.3.5/cirros-0.3.5-x86_64-disk.img
如果您的发行版没有包含 wget,请安装。
3、使用 QCOW2 磁盘格式、裸容器格式和公共可见性上传镜像到镜像服务,所有项目都可以访问它:
$ openstack image create "cirros" \
--file cirros-0.3.5-x86_64-disk.img \
--disk-format qcow2 --container-format bare \
--public
+------------------+------------------------------------------------------+
| Field | Value |
+------------------+------------------------------------------------------+
| checksum | 133eae9fb1c98f45894a4e60d8736619 |
| container_format | bare |
| created_at | 2015-03-26T16:52:10Z |
| disk_format | qcow2 |
| file | /v2/images/cc5c6982-4910-471e-b864-1098015901b5/file |
| id | cc5c6982-4910-471e-b864-1098015901b5 |
| min_disk | 0 |
| min_ram | 0 |
| name | cirros |
| owner | ae7a98326b9c455588edd2656d723b9d |
| protected | False |
| schema | /v2/schemas/image |
| size | 13200896 |
| status | active |
| tags | |
| updated_at | 2015-03-26T16:52:10Z |
| virtual_size | None |
| visibility | public |
+------------------+------------------------------------------------------+
有关 openstack image create 的参数,请参见 OpenStack 用户指南中的 Create or update an image (glance)。
有关镜像的磁盘和容器格式的信息,请参阅 OpenStack 虚拟机映像指南中的 Disk and container formats for images。
OpenStack 动态生成 IDs,因此您将在示例命令输出中看到不同的值。
4、确认上传镜像和验证属性:
$ openstack image list
+--------------------------------------+--------+--------+
| ID | Name | Status |
+--------------------------------------+--------+--------+
| 38047887-61a7-41ea-9b49-27987d5e8bb9 | cirros | active |
+--------------------------------------+--------+--------+
网友评论