Re: [Openstack] rpms for rhel5.x to install Open stack Object Storage

2011-11-25 Thread Jay Pipes
Hi guys,

The glance-upload tool was removed from Glance with commit
5677bfa44d1d3cbf0f764b09947df454f916b8d0:

https://github.com/openstack/glance/commit/5677bfa44d1d3cbf0f764b09947df454f916b8d0

So, around a month ago...

Just an FYI. Everything that you could do with glance-upload is
possible with the glance add command. glance-upload was an older
utility that has now been deprecated.

Lorin, I'll review your patchset shortly.

Cheers!
-jay

On Wed, Nov 23, 2011 at 8:37 PM, Lorin Hochstein lo...@isi.edu wrote:
 Hi Razique:
 Thanks. I've proposed adding  these examples to the docs:
 https://review.openstack.org/1883
 https://review.openstack.org/1888
 Lorin
 --
 Lorin Hochstein, Computer Scientist
 USC Information Sciences Institute
 703.812.3710
 http://www.east.isi.edu/~lorin



 On Nov 23, 2011, at 2:44 AM, Razique Mahroua wrote:

 Hi Lorin,
 Glance has it's own ways to upload objects :
 Here are the available ways to do it :

  Startimg upload
 glance -v add name=ubuntu-10.10-amd64 is_public=true 
 /root/maverick-server-uec-amd64.tar.gz
 # OR add property (ex. distro)
 glance -v add name=ubuntu-10.10-amd64 is_public=true distro=ubuntu 10.10
  /root/maverick-server-uec-amd64.tar.gz

 # Upload from other URL
 glance -v add name=uubntu-10.04-amd64 is_public=true
 location=http://uec-images.ubuntu.com/lucid/current/lucid-server-uec-amd64.tar.gz;
 # Upload qcow2
 glance -v add name=ubuntu-11.04-amd64 is_public=true distro=ubuntu 11.04
 disk_format=qcow2  /data/images/rock_natty.qcow2
 # Other
 glance-upload --type=kernel ./maverick-server-uec-amd64-vmlinuz-virtual
 maverick-server-uec-amd64-vmlinuz-virtual
 glance-upload --type=ramdisk ./maverick-server-uec-amd64-loader
 maverick-server-uec-amd64-loader
 glance-upload --type=machine --kernel=7 --ramdisk=8
 ./maverick-server-uec-amd64.img maverick-server-uec-amd64.img
 glance-upload --type=raw --kernel=nokernel --ramdisk=noramdisk
 ./maverick-server-uec-amd64.img maverick-server-uec-amd64.img_v2

 You can also use nova-manage image ... (image_upload/ ramdisk_upload/
 kernel_upload)
 Nuage  Co - Razique Mahroua
 razique.mahr...@gmail.com
 NUAGECO-LOGO-Fblan_petit.jpg
 Le 22 nov. 2011 à 16:57, Jay Pipes a écrit :

 On Mon, Nov 21, 2011 at 9:34 PM, Lorin Hochstein lo...@isi.edu wrote:

 How does the deprecation of nova-objectstore affect nova support for

 euca-upload-bundle? Will euca-upload-bundle support go away in the future,

 or does Glance support euca-upload-bundle through an S3 front-end interface,

 or something else?

 Hi Lorin,

 It's not really that nova-objectstore has gone anywhere... just that
 it is not being developed further, and while it used to be that if you
 were using the EC2 API and tooling you would need to have a Nova
 FLAG.image_service set to nova.images.s3.S3ImageService, this is no
 longer the case. nova-objectstore is still used in the EC2 API for the
 purposes of euca2ools, as certain tools like euca-bundle-image only
 work with an S3 object store. nova-objectstore stores the manifest.xml
 and compressed image parts during the process of bundling an image.
 However, the eventual image is stored in Glance. So, nova-objectstore
 is a service that enables the euca-bundle-image and euca-upload-bundle
 tools to work with Nova, but it serves no other purpose and is no
 longer a configurable part of Nova's image management.

 Hope that makes sense!

 Cheers,
 -jay

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp




___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] rpms for rhel5.x to install Open stack Object Storage

2011-11-25 Thread Lorin Hochstein
Thanks, Jay. I've abandoned the docbook change and will update the glance RST 
docs change based on your review comments.

Lorin
--
Lorin Hochstein, Computer Scientist
USC Information Sciences Institute
703.812.3710
http://www.east.isi.edu/~lorin




On Nov 25, 2011, at 12:14 PM, Jay Pipes wrote:

 Hi guys,
 
 The glance-upload tool was removed from Glance with commit
 5677bfa44d1d3cbf0f764b09947df454f916b8d0:
 
 https://github.com/openstack/glance/commit/5677bfa44d1d3cbf0f764b09947df454f916b8d0
 
 So, around a month ago...
 
 Just an FYI. Everything that you could do with glance-upload is
 possible with the glance add command. glance-upload was an older
 utility that has now been deprecated.
 
 Lorin, I'll review your patchset shortly.
 
 Cheers!
 -jay
 
 On Wed, Nov 23, 2011 at 8:37 PM, Lorin Hochstein lo...@isi.edu wrote:
 Hi Razique:
 Thanks. I've proposed adding  these examples to the docs:
 https://review.openstack.org/1883
 https://review.openstack.org/1888
 Lorin
 --
 Lorin Hochstein, Computer Scientist
 USC Information Sciences Institute
 703.812.3710
 http://www.east.isi.edu/~lorin
 
 
 
 On Nov 23, 2011, at 2:44 AM, Razique Mahroua wrote:
 
 Hi Lorin,
 Glance has it's own ways to upload objects :
 Here are the available ways to do it :
 
 Startimg upload
 glance -v add name=ubuntu-10.10-amd64 is_public=true 
 /root/maverick-server-uec-amd64.tar.gz
 # OR add property (ex. distro)
 glance -v add name=ubuntu-10.10-amd64 is_public=true distro=ubuntu 10.10
  /root/maverick-server-uec-amd64.tar.gz
 
 # Upload from other URL
 glance -v add name=uubntu-10.04-amd64 is_public=true
 location=http://uec-images.ubuntu.com/lucid/current/lucid-server-uec-amd64.tar.gz;
 # Upload qcow2
 glance -v add name=ubuntu-11.04-amd64 is_public=true distro=ubuntu 11.04
 disk_format=qcow2  /data/images/rock_natty.qcow2
 # Other
 glance-upload --type=kernel ./maverick-server-uec-amd64-vmlinuz-virtual
 maverick-server-uec-amd64-vmlinuz-virtual
 glance-upload --type=ramdisk ./maverick-server-uec-amd64-loader
 maverick-server-uec-amd64-loader
 glance-upload --type=machine --kernel=7 --ramdisk=8
 ./maverick-server-uec-amd64.img maverick-server-uec-amd64.img
 glance-upload --type=raw --kernel=nokernel --ramdisk=noramdisk
 ./maverick-server-uec-amd64.img maverick-server-uec-amd64.img_v2
 
 You can also use nova-manage image ... (image_upload/ ramdisk_upload/
 kernel_upload)
 Nuage  Co - Razique Mahroua
 razique.mahr...@gmail.com
 NUAGECO-LOGO-Fblan_petit.jpg
 Le 22 nov. 2011 à 16:57, Jay Pipes a écrit :
 
 On Mon, Nov 21, 2011 at 9:34 PM, Lorin Hochstein lo...@isi.edu wrote:
 
 How does the deprecation of nova-objectstore affect nova support for
 
 euca-upload-bundle? Will euca-upload-bundle support go away in the future,
 
 or does Glance support euca-upload-bundle through an S3 front-end interface,
 
 or something else?
 
 Hi Lorin,
 
 It's not really that nova-objectstore has gone anywhere... just that
 it is not being developed further, and while it used to be that if you
 were using the EC2 API and tooling you would need to have a Nova
 FLAG.image_service set to nova.images.s3.S3ImageService, this is no
 longer the case. nova-objectstore is still used in the EC2 API for the
 purposes of euca2ools, as certain tools like euca-bundle-image only
 work with an S3 object store. nova-objectstore stores the manifest.xml
 and compressed image parts during the process of bundling an image.
 However, the eventual image is stored in Glance. So, nova-objectstore
 is a service that enables the euca-bundle-image and euca-upload-bundle
 tools to work with Nova, but it serves no other purpose and is no
 longer a configurable part of Nova's image management.
 
 Hope that makes sense!
 
 Cheers,
 -jay
 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp
 
 
 

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] rpms for rhel5.x to install Open stack Object Storage

2011-11-23 Thread Lorin Hochstein
Hi Razique:

Thanks. I've proposed adding  these examples to the docs:

https://review.openstack.org/1883
https://review.openstack.org/1888 

Lorin
--
Lorin Hochstein, Computer Scientist
USC Information Sciences Institute
703.812.3710
http://www.east.isi.edu/~lorin




On Nov 23, 2011, at 2:44 AM, Razique Mahroua wrote:

 Hi Lorin,
 Glance has it's own ways to upload objects : 
 Here are the available ways to do it : 
  Startimg upload
 glance -v add name=ubuntu-10.10-amd64 is_public=true  
 /root/maverick-server-uec-amd64.tar.gz 
 # OR add property (ex. distro)
 glance -v add name=ubuntu-10.10-amd64 is_public=true distro=ubuntu 10.10 
  /root/maverick-server-uec-amd64.tar.gz 
  
 # Upload from other URL
 glance -v add name=uubntu-10.04-amd64 is_public=true 
 location=http://uec-images.ubuntu.com/lucid/current/lucid-server-uec-amd64.tar.gz;
 # Upload qcow2
 glance -v add name=ubuntu-11.04-amd64 is_public=true distro=ubuntu 11.04 
 disk_format=qcow2  /data/images/rock_natty.qcow2
 # Other
 glance-upload --type=kernel ./maverick-server-uec-amd64-vmlinuz-virtual 
 maverick-server-uec-amd64-vmlinuz-virtual
 glance-upload --type=ramdisk ./maverick-server-uec-amd64-loader 
 maverick-server-uec-amd64-loader
 glance-upload --type=machine --kernel=7 --ramdisk=8 
 ./maverick-server-uec-amd64.img maverick-server-uec-amd64.img
 glance-upload --type=raw --kernel=nokernel --ramdisk=noramdisk 
 ./maverick-server-uec-amd64.img maverick-server-uec-amd64.img_v2
 
 You can also use nova-manage image ... (image_upload/ ramdisk_upload/ 
 kernel_upload)
 
 Nuage  Co - Razique Mahroua 
 razique.mahr...@gmail.com
 
 NUAGECO-LOGO-Fblan_petit.jpg
 
 Le 22 nov. 2011 à 16:57, Jay Pipes a écrit :
 
 On Mon, Nov 21, 2011 at 9:34 PM, Lorin Hochstein lo...@isi.edu wrote:
 How does the deprecation of nova-objectstore affect nova support for
 euca-upload-bundle? Will euca-upload-bundle support go away in the future,
 or does Glance support euca-upload-bundle through an S3 front-end interface,
 or something else?
 
 Hi Lorin,
 
 It's not really that nova-objectstore has gone anywhere... just that
 it is not being developed further, and while it used to be that if you
 were using the EC2 API and tooling you would need to have a Nova
 FLAG.image_service set to nova.images.s3.S3ImageService, this is no
 longer the case. nova-objectstore is still used in the EC2 API for the
 purposes of euca2ools, as certain tools like euca-bundle-image only
 work with an S3 object store. nova-objectstore stores the manifest.xml
 and compressed image parts during the process of bundling an image.
 However, the eventual image is stored in Glance. So, nova-objectstore
 is a service that enables the euca-bundle-image and euca-upload-bundle
 tools to work with Nova, but it serves no other purpose and is no
 longer a configurable part of Nova's image management.
 
 Hope that makes sense!
 
 Cheers,
 -jay
 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp
 

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] rpms for rhel5.x to install Open stack Object Storage

2011-11-22 Thread Jay Pipes
On Mon, Nov 21, 2011 at 9:34 PM, Lorin Hochstein lo...@isi.edu wrote:
 How does the deprecation of nova-objectstore affect nova support for
 euca-upload-bundle? Will euca-upload-bundle support go away in the future,
 or does Glance support euca-upload-bundle through an S3 front-end interface,
 or something else?

Hi Lorin,

It's not really that nova-objectstore has gone anywhere... just that
it is not being developed further, and while it used to be that if you
were using the EC2 API and tooling you would need to have a Nova
FLAG.image_service set to nova.images.s3.S3ImageService, this is no
longer the case. nova-objectstore is still used in the EC2 API for the
purposes of euca2ools, as certain tools like euca-bundle-image only
work with an S3 object store. nova-objectstore stores the manifest.xml
and compressed image parts during the process of bundling an image.
However, the eventual image is stored in Glance. So, nova-objectstore
is a service that enables the euca-bundle-image and euca-upload-bundle
tools to work with Nova, but it serves no other purpose and is no
longer a configurable part of Nova's image management.

Hope that makes sense!

Cheers,
-jay

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] rpms for rhel5.x to install Open stack Object Storage

2011-11-22 Thread Razique Mahroua
Hi Lorin,Glance has it's own ways to upload objects :Here are the available ways to do it : Startimg upload
glance -v add name="ubuntu-10.10-amd64" is_public=true  /root/maverick-server-uec-amd64.tar.gz 
# OR add property (ex. distro)
glance -v add name="ubuntu-10.10-amd64" is_public=true distro="ubuntu 10.10"  /root/maverick-server-uec-amd64.tar.gz 

# Upload from other URL
glance -v add name="uubntu-10.04-amd64" is_public=true location="http://uec-images.ubuntu.com/lucid/current/lucid-server-uec-amd64.tar.gz"
# Upload qcow2
glance -v add name="ubuntu-11.04-amd64" is_public=true distro="ubuntu 11.04" disk_format="qcow2"  /data/images/rock_natty.qcow2
# Other
glance-upload --type=kernel ./maverick-server-uec-amd64-vmlinuz-virtual maverick-server-uec-amd64-vmlinuz-virtual
glance-upload --type=ramdisk ./maverick-server-uec-amd64-loader maverick-server-uec-amd64-loader
glance-upload --type=machine --kernel=7 --ramdisk=8 ./maverick-server-uec-amd64.img maverick-server-uec-amd64.img
glance-upload --type=raw --kernel=nokernel --ramdisk=noramdisk ./maverick-server-uec-amd64.img maverick-server-uec-amd64.img_v2You can also use nova-manage image ... (image_upload/ ramdisk_upload/ kernel_upload)
Nuage  Co - Razique Mahrouarazique.mahr...@gmail.com

Le 22 nov. 2011 à 16:57, Jay Pipes a écrit :On Mon, Nov 21, 2011 at 9:34 PM, Lorin Hochstein lo...@isi.edu wrote:How does the deprecation of nova-objectstore affect nova support foreuca-upload-bundle? Will euca-upload-bundle support go away in the future,or does Glance support euca-upload-bundle through an S3 front-end interface,or something else?Hi Lorin,It's not really that nova-objectstore has gone anywhere... just thatit is not being developed further, and while it used to be that if youwere using the EC2 API and tooling you would need to have a NovaFLAG.image_service set to nova.images.s3.S3ImageService, this is nolonger the case. nova-objectstore is still used in the EC2 API for thepurposes of euca2ools, as certain tools like euca-bundle-image onlywork with an S3 object store. nova-objectstore stores the manifest.xmland compressed image parts during the process of bundling an image.However, the eventual image is stored in Glance. So, nova-objectstoreis a service that enables the euca-bundle-image and euca-upload-bundletools to work with Nova, but it serves no other purpose and is nolonger a configurable part of Nova's image management.Hope that makes sense!Cheers,-jay___Mailing list: https://launchpad.net/~openstackPost to : openstack@lists.launchpad.netUnsubscribe : https://launchpad.net/~openstackMore help : https://help.launchpad.net/ListHelp___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] rpms for rhel5.x to install Open stack Object Storage

2011-11-21 Thread Sudhakar Maiya
Hi,
Can some one help for prerequisites to install Openstack Object Storage
in RHEL system.

Thanks  Regards
Sudhakar
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] rpms for rhel5.x to install Open stack Object Storage

2011-11-21 Thread John Dickinson
I suspect there is a communication gap somewhere, but this is certainly not the 
case. Openstack Object Storage (swift) is not deprecated. Glance provides a 
bridge between nova and swift, but all three are important, active projects.


Sudhaker,

I know that rpms exist for swift, but I don't know where they live. (I should 
find out--anyone know?)

--John



On Nov 21, 2011, at 6:18 AM, David Busby wrote:

 Also, as I recall Object Store is deprecated in favour of glance, at least 
 this was the case in October during the training course.
 
 Added cc to openstack@lists.launchpad.net as I forgot in last email.
 
 On 21 Nov 2011, at 12:15, David Busby wrote:
 
 HI Sudhakar,
 
 I do not believe there are any RPM packages being built of maintained for 
 5.x due to the large list of dependencies, one of which being the libvirt 
 version required (The exact version escapes me for the moment).
 
 There are EPEL packages for 6.x in the works (and we would always welcome 
 another tester), and there are GridDynamics RPMS already available for 6.x I 
 believe.
 
 
 Cheers
 
 David
 
 
 On 21 Nov 2011, at 11:25, Sudhakar Maiya wrote:
 
 Hi,
 Can some one help for prerequisites to install Openstack Object Storage 
 in RHEL system.
 
 Thanks  Regards
 Sudhakar
 
 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp
 
 
 
 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp



smime.p7s
Description: S/MIME cryptographic signature
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] rpms for rhel5.x to install Open stack Object Storage

2011-11-21 Thread Lorin Hochstein
Is object store being deprecated? 

My understanding is that the Object Storage (nova-objectstore) provides an S3 
front-end for glance so that euca-upload-bundle works properly. You can now use 
nova image-create instead of euca-bundle-vol to accomplish this, but I wasn't 
aware of plans to roll the S3 front-end functionality directly into glance (is 
there?) to continue supporting euca-upload-bundle without nova-objectstore.

Lorin
--
Lorin Hochstein, Computer Scientist
USC Information Sciences Institute
703.812.3710
http://www.east.isi.edu/~lorin




On Nov 21, 2011, at 7:18 AM, David Busby wrote:

 Also, as I recall Object Store is deprecated in favour of glance, at least 
 this was the case in October during the training course.
 
 Added cc to openstack@lists.launchpad.net as I forgot in last email.
 
 On 21 Nov 2011, at 12:15, David Busby wrote:
 
 HI Sudhakar,
 
 I do not believe there are any RPM packages being built of maintained for 
 5.x due to the large list of dependencies, one of which being the libvirt 
 version required (The exact version escapes me for the moment).
 
 There are EPEL packages for 6.x in the works (and we would always welcome 
 another tester), and there are GridDynamics RPMS already available for 6.x I 
 believe.
 
 
 Cheers
 
 David
 
 
 On 21 Nov 2011, at 11:25, Sudhakar Maiya wrote:
 
 Hi,
 Can some one help for prerequisites to install Openstack Object Storage 
 in RHEL system.
 
 Thanks  Regards
 Sudhakar
 
 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp
 
 
 
 
 
 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] rpms for rhel5.x to install Open stack Object Storage

2011-11-21 Thread Vishvananda Ishaya
Openstack Object Storage usually refers to the swift project.

Vish

On Nov 21, 2011, at 4:18 AM, David Busby wrote:

 Also, as I recall Object Store is deprecated in favour of glance, at least 
 this was the case in October during the training course.
 
 Added cc to openstack@lists.launchpad.net as I forgot in last email.
 
 On 21 Nov 2011, at 12:15, David Busby wrote:
 
 HI Sudhakar,
 
 I do not believe there are any RPM packages being built of maintained for 
 5.x due to the large list of dependencies, one of which being the libvirt 
 version required (The exact version escapes me for the moment).
 
 There are EPEL packages for 6.x in the works (and we would always welcome 
 another tester), and there are GridDynamics RPMS already available for 6.x I 
 believe.
 
 
 Cheers
 
 David
 
 
 On 21 Nov 2011, at 11:25, Sudhakar Maiya wrote:
 
 Hi,
 Can some one help for prerequisites to install Openstack Object Storage 
 in RHEL system.
 
 Thanks  Regards
 Sudhakar
 
 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp
 
 
 
 
 
 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] rpms for rhel5.x to install Open stack Object Storage

2011-11-21 Thread Jacob Walcik
Sudhakar,

Grid Dynamics has built OpenStack Nova (compute) and Swift (object store) RPMs 
for the Diablo release. Unfortunately I believe they are targeting RHEL6 rather 
than RHEL5, so the packages may not work without modification (or a large 
number of related upgrades). They have a blog with some details here:

http://openstackgd.wordpress.com/

The YUM repo for the RHEL6 packages is here:

http://yum.griddynamics.net/yum/diablo/

There is a post in their blog with a link to the source packages. Building 
those packages on RHEL5 would likely require an update to Python.

-Jacob Walcik


From: openstack-bounces+jacob.walcik=rackspace@lists.launchpad.net 
[openstack-bounces+jacob.walcik=rackspace@lists.launchpad.net] on behalf of 
Sudhakar Maiya [sma...@gmail.com]
Sent: Monday, November 21, 2011 5:25 AM
To: openstack@lists.launchpad.net
Subject: [Openstack] rpms for rhel5.x to install Open stack Object Storage

Hi,
Can some one help for prerequisites to install Openstack Object Storage in 
RHEL system.

Thanks  Regards
Sudhakar


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] rpms for rhel5.x to install Open stack Object Storage

2011-11-21 Thread Yun Mao
John,

there is OpenStack Object Store, a.k.a. Swift, there is also an object
store inside nova called nova-objectstore. The latter is deprecated.
See here:

https://answers.launchpad.net/nova/+question/156113

Yun

On Mon, Nov 21, 2011 at 8:19 AM, John Dickinson m...@not.mn wrote:
 I suspect there is a communication gap somewhere, but this is certainly not 
 the case. Openstack Object Storage (swift) is not deprecated. Glance provides 
 a bridge between nova and swift, but all three are important, active projects.


 Sudhaker,

 I know that rpms exist for swift, but I don't know where they live. (I should 
 find out--anyone know?)

 --John



 On Nov 21, 2011, at 6:18 AM, David Busby wrote:

 Also, as I recall Object Store is deprecated in favour of glance, at least 
 this was the case in October during the training course.

 Added cc to openstack@lists.launchpad.net as I forgot in last email.

 On 21 Nov 2011, at 12:15, David Busby wrote:

 HI Sudhakar,

 I do not believe there are any RPM packages being built of maintained for 
 5.x due to the large list of dependencies, one of which being the libvirt 
 version required (The exact version escapes me for the moment).

 There are EPEL packages for 6.x in the works (and we would always welcome 
 another tester), and there are GridDynamics RPMS already available for 6.x 
 I believe.


 Cheers

 David


 On 21 Nov 2011, at 11:25, Sudhakar Maiya wrote:

 Hi,
     Can some one help for prerequisites to install Openstack Object 
 Storage in RHEL system.

 Thanks  Regards
 Sudhakar


 ___
 Mailing list: https://launchpad.net/~openstack
 Post to     : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp




 ___
 Mailing list: https://launchpad.net/~openstack
 Post to     : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


 ___
 Mailing list: https://launchpad.net/~openstack
 Post to     : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp



___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] rpms for rhel5.x to install Open stack Object Storage

2011-11-21 Thread Anne Gentle
Ah, naming is fun. :) You heard in training that the service
nova-objectstore is a deprecated service within OpenStack Compute (Nova).
OpenStack Object Store (Swift) is certainly thriving and can be a backend
to store images in the Image Service (Glance).

Check this page for the latest RHEL packaging for OpenStack projects
http://wiki.openstack.org/Packaging/RHEL.

Anne

On Mon, Nov 21, 2011 at 7:19 AM, John Dickinson m...@not.mn wrote:

 I suspect there is a communication gap somewhere, but this is certainly
 not the case. Openstack Object Storage (swift) is not deprecated. Glance
 provides a bridge between nova and swift, but all three are important,
 active projects.


 Sudhaker,

 I know that rpms exist for swift, but I don't know where they live. (I
 should find out--anyone know?)

 --John



 On Nov 21, 2011, at 6:18 AM, David Busby wrote:

  Also, as I recall Object Store is deprecated in favour of glance, at
 least this was the case in October during the training course.
 
  Added cc to openstack@lists.launchpad.net as I forgot in last email.
 
  On 21 Nov 2011, at 12:15, David Busby wrote:
 
  HI Sudhakar,
 
  I do not believe there are any RPM packages being built of maintained
 for 5.x due to the large list of dependencies, one of which being the
 libvirt version required (The exact version escapes me for the moment).
 
  There are EPEL packages for 6.x in the works (and we would always
 welcome another tester), and there are GridDynamics RPMS already available
 for 6.x I believe.
 
 
  Cheers
 
  David
 
 
  On 21 Nov 2011, at 11:25, Sudhakar Maiya wrote:
 
  Hi,
  Can some one help for prerequisites to install Openstack Object
 Storage in RHEL system.
 
  Thanks  Regards
  Sudhakar
 
 
  ___
  Mailing list: https://launchpad.net/~openstack
  Post to : openstack@lists.launchpad.net
  Unsubscribe : https://launchpad.net/~openstack
  More help   : https://help.launchpad.net/ListHelp
 
 
 
 
  ___
  Mailing list: https://launchpad.net/~openstack
  Post to : openstack@lists.launchpad.net
  Unsubscribe : https://launchpad.net/~openstack
  More help   : https://help.launchpad.net/ListHelp


 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] rpms for rhel5.x to install Open stack Object Storage

2011-11-21 Thread Jay Pipes
On Mon, Nov 21, 2011 at 8:19 AM, John Dickinson m...@not.mn wrote:
 I suspect there is a communication gap somewhere, but this is certainly not 
 the case. Openstack Object Storage (swift) is not deprecated. Glance provides 
 a bridge between nova and swift, but all three are important, active projects.

I believe the OP was referring to nova-object-store. This is indeed
deprecated in favour of Glance.

Cheers,
-jay

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp