在OpenStack平台的admin项目中使用cirros-0.3.4-x86_64-disk.img镜像文件创建名为glance-cirros的镜像,通过OpenStack命令将glance-cirros镜像指定demo项目进行共享使用
时间: 2023-05-30 15:05:38 浏览: 886
opensatck镜像测试cirros-0.4.0-x86-64-disk
1. 将cirros-0.3.4-x86_64-disk.img镜像文件上传到OpenStack平台中的glance镜像服务中。
```
$ openstack image create --file cirros-0.3.4-x86_64-disk.img --disk-format qcow2 --container-format bare --public glance-cirros
```
2. 将glance-cirros镜像共享给demo项目。
```
$ openstack image set --property visibility=shared glance-cirros
$ openstack image add project demo glance-cirros
```
现在,demo项目就可以使用glance-cirros镜像了。
阅读全文