简体   繁体   中英

Make an OpenStack image public, available to all of my users

I have a 2 node Openstack deployment configured. Presently I have one image installed from the Eucalyptus website. The image is set as 'private' I would like to make it 'public' so all users on the Openstack deployment can use it. I can't quite figure out how to make this happen.

Here is the euca-describe-image output for the ami.

IMAGE ami-00000006 centos53-image-bucket/centos.5-3.x86-64.img.manifest.xml available private x86_64 machine aki-00000004 ari-00000005 instance-store

You can also use the glance CLI to change image properties.

use

glance image-list

to get a list of images, and them something like:

glance image-update ########-####-####-####-############ --is-public=true

to change it's setting to public

openstack 图像集 --public IMAGE_ID

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM