0

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

sepulworld
  • 21
  • 1
  • 5
  • 1
    Actually, this solved itself by me running an apt-get upgrade on the Horizon Dashboard. You can now edit the images availability via the dashboard. This is great. – sepulworld Oct 05 '12 at 02:06

2 Answers2

2

openstack image set --public IMAGE_ID

yasin lachini
  • 5,188
  • 6
  • 33
  • 56
1

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

heckj
  • 7,136
  • 3
  • 39
  • 50