从远程服务器注册 Glance 图片
Glance image registration from remote server
我正在尝试将图像从服务器注册到远程 openstack glance 安装。基本上我已经通过 shell 脚本在本地处理了图像,现在想在不同的系统上快速导入它 运行。
提前致谢
看来您只需要将图片上传到 Glance:
确保您已安装 glance-client
pip install python-glanceclient
source openrc
#一个带有远程openstack安装凭证的openrc文件,参考[1]
glance image-create --container-format CONTAINER_FORMAT --disk-format DISK_FORMAT --name IMAGE_NAME --file a-path-to-local-image-file --progress
有关参数说明,请参阅 "glance help image-create"
就是这样。图像将通过 HTTP 上传到远程 glance 安装。
您可以通过 glance image-list
列出图像
[1] http://docs.openstack.org/icehouse/install-guide/install/apt/content/ch_clients_openrc_files.html
我正在尝试将图像从服务器注册到远程 openstack glance 安装。基本上我已经通过 shell 脚本在本地处理了图像,现在想在不同的系统上快速导入它 运行。
提前致谢
看来您只需要将图片上传到 Glance:
确保您已安装 glance-client
pip install python-glanceclient
source openrc
#一个带有远程openstack安装凭证的openrc文件,参考[1]glance image-create --container-format CONTAINER_FORMAT --disk-format DISK_FORMAT --name IMAGE_NAME --file a-path-to-local-image-file --progress
有关参数说明,请参阅 "glance help image-create"
就是这样。图像将通过 HTTP 上传到远程 glance 安装。 您可以通过 glance image-list
列出图像[1] http://docs.openstack.org/icehouse/install-guide/install/apt/content/ch_clients_openrc_files.html