openstack - Glance image registration from remote server -
i trying register image server remote openstack glance installation. have processed image locally through shell script , want import in glance running on different system.
thanks in advance
looks need upload image glance:
make sure have glance-client installed
pip install python-glanceclient
source openrc
#an openrc file creds remote openstack installation, see [1] referenceglance image-create --container-format container_format --disk-format disk_format --name image_name --file a-path-to-local-image-file --progress
see "glance image-create" params description
that's it. image uploaded remote glance installation on http. can list images there via glance image-list
[1] http://docs.openstack.org/icehouse/install-guide/install/apt/content/ch_clients_openrc_files.html
Comments
Post a Comment