Re: [Openstack] What's the function of devstack?

2013-01-16 Thread Wojciech Dec
Hi,

devstack is a scripted (aka using a pre-canned config) openstack setup
using (generally latest) openstack code (from git). While not being an
offical openstack project, it is used by many as a quick  easy way to get
an openstack environment set-up. In terms of GUI, you'll get the horizon
web interface GUI to do basic things, but suggest getting familiarity with
the CLI.

You clearly should get familiar with http://devstack.org/

Cheers,
Woj.

On 15 January 2013 09:32, Jia Lee jeffryl...@gmail.com wrote:

 Hi,

 Could someone tell me the function of devstack and will there be a
 graphical user interface when the 'stack.sh'  is executed?


 --
 世界因你而精彩~

 ___
 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


[Openstack] [openstack] [nova-api] How to explain the 'POST' APIRouter in nova-api .release F?

2013-01-16 Thread 孟庆龙
Hi friends, I got the confused at the 'POST' Mapper Router in nova-api,
release F.

*code*:

self.resources['servers'] = servers.create_resource(ext_mgr)

mapper.resource(server, servers,

controller=self.resources['servers'],

collection={'detail': 'GET'},

member={'action': 'POST'})

ok, 'GET' is fine.

the 'GET' req, such as /v2/servers which coming from *nova list* cmd, the *
method* detail will be used to handler the req in
*controller*servers.Controller.

but how the 'POST', such as *cmd* nova pause server. Question list:

   1. what are the controller and action?
   2. how to explain the routing?

Tks all

Lawrency Meng
--

mail: mengql112...@gmail.com

phone: 13811465151
___
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] [Openstack-operators] [SWIFT] Change the partition power to recreate the RING

2013-01-16 Thread Alejandro Comisario
Thanks everyone.
It seems on a first glance that the application that's using swift, is
pushing all the PUT operations in a single container (+100 PUT/sec) so the
developers are making a quick change to try to split all the load across
lots of containers to scale horizontally since we are getting lots of
concurrency on a single container.

No doubt if thats the problem, our next move it to swap account/container
to SSD devices.
I'll keep you posted !

*
*
*Alejandro.*


On Wed, Jan 16, 2013 at 5:13 AM, Ywang225 ywang...@126.com wrote:

 If you cares about put performance, one thing needs to check, are you
 placing account and container with object together? If it is, this possibly
 becomes bottleneck, you could place account and container on dedicated
 nodes or dedicated faster disks. Of course, this involves ring changes.

 Another side is about the parameters for account and container servers,
 workers=48 seems too high, which will increase contention on accessing
 account or container db.

 -ywang

 在 2013-1-15,4:01,Alejandro Comisario alejandro.comisa...@mercadolibre.com
 写道:

 Chuck et All.

 Let me go through the point one by one.

 #1 Even seeing that object-auditor allways runs and never stops, we
 stoped the swift-*-auditor and didnt see any improvements, from all the
 datanodes we have an average of 8% IO-WAIT (using iostat), the only thing
 that we see is the pid xfsbuf runs once in a while causing 99% iowait for
 a sec, we delayed the runtime for that process, and didnt see changes
 either.

 Our object-auditor config for all devices is as follow :

 [object-auditor]
 files_per_second = 5
 zero_byte_files_per_second = 5
 bytes_per_second = 300

 #2 Our 12 proxyes are 6 physical and 6 kvm instances running on nova,
 checking iftop we are at an average of 15Mb/s of bandwidth usage so i dont
 think we are saturating the networking.
 #3 The overall Idle CPU on all datanodes is 80%, im not sure how to check
 the CPU usage per worker, let me paste the config for a device for object,
 account and container.

 *object-server.conf*
 *--*
 [DEFAULT]
 devices = /srv/node/sda3
 mount_check = false
 bind_port = 6010
 user = swift
 log_facility = LOG_LOCAL2
 log_level = DEBUG
 workers = 48
 disable_fallocate = true

 [pipeline:main]
 pipeline = object-server

 [app:object-server]
 use = egg:swift#object

 [object-replicator]
 vm_test_mode = yes
 concurrency = 8
 run_pause = 600

 [object-updater]
 concurrency = 8

 [object-auditor]
 files_per_second = 5
 zero_byte_files_per_second = 5
 bytes_per_second = 300

 *account-server.conf*
 *---*
 [DEFAULT]
 devices = /srv/node/sda3
 mount_check = false
 bind_port = 6012
 user = swift
 log_facility = LOG_LOCAL2
 log_level = DEBUG
 workers = 48
 db_preallocation = on
 disable_fallocate = true

 [pipeline:main]
 pipeline = account-server

 [app:account-server]
 use = egg:swift#account

 [account-replicator]
 vm_test_mode = yes
 concurrency = 8
 run_pause = 600

 [account-auditor]

 [account-reaper]

 *container-server.conf*
 *-*
 [DEFAULT]
 devices = /srv/node/sda3
 mount_check = false
 bind_port = 6011
 user = swift
 workers = 48
 log_facility = LOG_LOCAL2
 allow_versions = True
 disable_fallocate = true

 [pipeline:main]
 pipeline = container-server

 [app:container-server]
 use = egg:swift#container
 allow_versions = True

 [container-replicator]
 vm_test_mode = yes
 concurrency = 8
 run_pause = 500

 [container-updater]
 concurrency = 8

 [container-auditor]

 #4 We dont use SSL for swift so, no latency over there.

 Hope you guys can shed some light.


 *
 *
 *
 *
 *Alejandro Comisario
 #melicloud CloudBuilders*
 Arias 3751, Piso 7 (C1430CRG)
 Ciudad de Buenos Aires - Argentina
 Cel: +549(11) 15-3770-1857
 Tel : +54(11) 4640-8443


 On Mon, Jan 14, 2013 at 1:23 PM, Chuck Thier cth...@gmail.com wrote:

 Hi Alejandro,

 I really doubt that partition size is causing these issues.  It can be
 difficult to debug these types of issues without access to the
 cluster, but I can think of a couple of things to look at.

 1.  Check your disk io usage and io wait on the storage nodes.  If
 that seems abnormally high, then that could be one of the sources of
 problems.  If this is the case, then the first things that I would
 look at are the auditors, as they can use up a lot of disk io if not
 properly configured.  I would try turning them off for a bit
 (swift-*-auditor) and see if that makes any difference.

 2.  Check your network io usage.  You haven't described what type of
 network you have going to the proxies, but if they share a single GigE
 interface, if my quick calculations are correct, you could be
 saturating the network.

 3.  Check your CPU usage.  I listed this one last as you have said
 that you have already worked at tuning the number of workers (though I
 would be interested to hear how many workers you have running for each
 service).  The main thing to look for, is to see if all of your
 

Re: [Openstack] user committee points to review

2013-01-16 Thread Tim Bell
 

A few of you have had trouble reading the document. The updated link is at
https://docs.google.com/document/d/1yD8TfqUik2dt5xo_jMVHMl7tw9oIJnEndLK8YqET
oyo/edit

 

If you can't read it, please send me a note and I'll share it.

 

Tim

 

From: Tim Bell 
Sent: 09 January 2013 09:52
To: 'Sean Roberts'; OpenStack community; openstack
Subject: RE: Calling all user group and meetup organizers

 

 

Sean,

 

Is the aim to provide co-ordination for the OpenStack user groups worldwide
?

 

Ryan, JC and I have been putting together the structure for the OpenStack
user committee (as described on the foundation list at
http://lists.openstack.org/pipermail/foundation/2012-December/001289.html).
As we have collected input from various parties, there is a proposal for
part of the committee to consist of user group representatives from
different geographies. 

 

As mentioned in the mail to the foundation list, anyone who'd like to
contribute to the user committee structure/mandate is welcome to get in
touch for editing rights to
https://docs.google.com/document/d/1yD8TfqUik2dt5xo_jMVHMl7tw9oIJnEndLK8YqET
oyo

 

I am on travel on the 15th so I won't be able to attend the call but it
would be great if the conclusions could be distributed to the community
list.

 

Tim

 

From: openstack-bounces+tim.bell=cern...@lists.launchpad.net
mailto:openstack-bounces+tim.bell=cern...@lists.launchpad.net
[mailto:openstack-bounces+tim.bell=cern...@lists.launchpad.net] On Behalf Of
Sean Roberts
Sent: 09 January 2013 01:55
To: OpenStack community; openstack
Subject: [Openstack] Calling all user group and meetup organizers

 

We are going to have a planning meeting on Tuesday, 15 Jan 2012 11:00am to
1:00pm PST. RSVP via   http://www.meetup.com/openstack/events/93593062
http://www.meetup.com/openstack/events/93593062/  Connect remotely via webex
https://yahoomeetings.webex.com/yahoomeetings/j.php?ED=160663792UID=492396
097RT=MiM0
https://yahoomeetings.webex.com/yahoomeetings/j.php?ED=160663792UID=4923960
97RT=MiM0

If this time doesn't work for you, get ahold of me directly via
skype:seanroberts66, email, mobile, irc:sarob, twitter:sarob, or carrier
pigeon.

 

Stefano and Thierry will be joining us. I want to get input from people that
run user groups and meetups.

 

See you then!

 

Sean Roberts
Infrastructure Strategy
 mailto:sean...@yahoo-inc.com sean...@yahoo-inc.com
Direct (408) 349-5234  Mobile (925) 980-4729
 
701 First Avenue, Sunnyvale, CA, 94089-0703, US
Phone (408) 349-3300  Fax (408) 349-3301
 
  http://forgood.zenfs.com/logos/yahoo.png 



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


[Openstack] Help with Glance

2013-01-16 Thread Guilherme Russi
Hello Friends,

 I'm trying to import a image into glance using the command: glance
image-create --name=Ubuntu 12.04 UEC --public --container-format= ovf
--disk-format=qcow2  precise-server-cloudimg-amd64.img but it doesn't
work. My glance version is 2012.1.1, when I try to execute the command it
returns: glance: error: no such option: --name.

Can anybody help me?

Regards.

Guilherme.
___
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] Help with Glance

2013-01-16 Thread JuanFra Rodriguez Cardoso
Have you tried to issue:

glance image-create --name=Ubuntu 12.04 UEC *is_public=true*
--container-format=
ovf --disk-format=qcow2  precise-server-cloudimg-amd64.img

AFAIK, --public option is not recognized.

Best,
JuanFra.


2013/1/16 Guilherme Russi luisguilherme...@gmail.com

 glance image-create --name=Ubuntu 12.04 UEC --public --container-format=
 ovf --disk-format=qcow2  precise-server-cloudimg-amd64.img





-- 
JuanFra
___
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] Help with Glance

2013-01-16 Thread JuanFra Rodriguez Cardoso
mmm... can be an error related with quotes copied?
Test typing manually Ubuntu 12.04 UEC

2013/1/16 Guilherme Russi luisguilherme...@gmail.com

 It returned the same error, it looks like my glance doesn't know the
 commando --name, no such option: --name



 2013/1/16 JuanFra Rodriguez Cardoso juanfra.rodriguez.card...@gmail.com

 glance image-create --name=Ubuntu 12.04 UEC *is_public=true* 
 --container-format=
 ovf --disk-format=qcow2  precise-server-cloudimg-amd64.img






-- 
JuanFra
___
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] Help with Glance

2013-01-16 Thread JuanFra Rodriguez Cardoso
It shouldn't be problem with your distro.

Can you enable flags 'verbose=True' and 'debug=True' both
glance-registry.conf as glance-api.conf?
In this way, you can paste more useful info returned by the error.


2013/1/16 Guilherme Russi luisguilherme...@gmail.com

 I've tried to type all over again: glance image-create --name= Ubuntu
 12.04 UEC is_public= true --container-format= ovf --disk-format= qcow2 
 precise-server-cloudimg-amd64.img and got the same error, I'm using Debian
 Wheezy, maybe can be some problem with my dist?

 Thanks.



 2013/1/16 JuanFra Rodriguez Cardoso juanfra.rodriguez.card...@gmail.com

 mmm... can be an error related with quotes copied?
 Test typing manually Ubuntu 12.04 UEC


 2013/1/16 Guilherme Russi luisguilherme...@gmail.com

 It returned the same error, it looks like my glance doesn't know the
 commando --name, no such option: --name



 2013/1/16 JuanFra Rodriguez Cardoso juanfra.rodriguez.card...@gmail.com
 

 glance image-create --name=Ubuntu 12.04 UEC *is_public=true* 
 --container-format=
 ovf --disk-format=qcow2  precise-server-cloudimg-amd64.img






 --
 JuanFra





-- 
JuanFra
___
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] keystone help! keystone-all

2013-01-16 Thread Mballo Cherif
Hi everybody, I need help. When I install keystone and do keystone-all I get 
this error:
How can I fix this issus?

File /usr/bin/keystone-all, line 74, in module
serve(*servers)
  File /usr/bin/keystone-all, line 38, in serve
server.start()
  File /usr/lib/python2.7/dist-packages/keystone/common/wsgi.py, line 71, in 
start
socket = eventlet.listen((self.host, self.port), backlog=backlog)
  File /usr/lib/python2.7/dist-packages/eventlet/convenience.py, line 38, in 
listen
sock.bind(addr)
  File /usr/lib/python2.7/socket.py, line 224, in meth
return getattr(self._sock,name)(*args)
socket.error: [Errno 98] Address already in use

Thanks!

Sherif




___
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] keystone help! keystone-all

2013-01-16 Thread JuanFra Rodriguez Cardoso
Hi:

Check ports tcp/5000 and tcp/35357 are free before starting keystone.

Regards,
JuanFra.


2013/1/16 Mballo Cherif cherif.mba...@gemalto.com

 Hi everybody, I need help. When I install keystone and do keystone-all I
 get this error:

 How can I fix this issus?

 ** **

 File /usr/bin/keystone-all, line 74, in module
 serve(*servers)
   File /usr/bin/keystone-all, line 38, in serve
 server.start()
   File /usr/lib/python2.7/dist-packages/keystone/common/wsgi.py, line
 71, in start
 socket = eventlet.listen((self.host, self.port), backlog=backlog)
   File /usr/lib/python2.7/dist-packages/eventlet/convenience.py, line
 38, in listen
 sock.bind(addr)
   File /usr/lib/python2.7/socket.py, line 224, in meth
 return getattr(self._sock,name)(*args)
 socket.error: [Errno 98] Address already in use

 ** **

 Thanks!

 ** **

 Sherif

 ** **

 ** **

 ** **

 ** **

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




-- 
JuanFra
___
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] keystone help! keystone-all

2013-01-16 Thread Mballo Cherif
Tanks JuanFra ! I check it with natstat -antp after stoping keystone service, 
but these ports (5000, 35357) are not used by process. By the way This is in a 
VM into my  win7OS.
An others idea?


Thanks!

Sherif

From: JuanFra Rodriguez Cardoso [mailto:juanfra.rodriguez.card...@gmail.com]
Sent: mercredi 16 janvier 2013 16:33
To: Mballo Cherif
Cc: openstack@lists.launchpad.net
Subject: Re: [Openstack] keystone help! keystone-all

Hi:

Check ports tcp/5000 and tcp/35357 are free before starting keystone.

Regards,
JuanFra.


2013/1/16 Mballo Cherif 
cherif.mba...@gemalto.commailto:cherif.mba...@gemalto.com
Hi everybody, I need help. When I install keystone and do keystone-all I get 
this error:
How can I fix this issus?

File /usr/bin/keystone-all, line 74, in module
serve(*servers)
  File /usr/bin/keystone-all, line 38, in serve
server.start()
  File /usr/lib/python2.7/dist-packages/keystone/common/wsgi.py, line 71, in 
start
socket = eventlet.listen((self.host, self.port), backlog=backlog)
  File /usr/lib/python2.7/dist-packages/eventlet/convenience.py, line 38, in 
listen
sock.bind(addr)
  File /usr/lib/python2.7/socket.py, line 224, in meth
return getattr(self._sock,name)(*args)
socket.error: [Errno 98] Address already in use

Thanks!

Sherif





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



--
JuanFra
___
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] Difference between Swift and Cinder

2013-01-16 Thread harryxiyou
Hi all,

Swift is oriented Openstack object storage but Cinder is oriented Openstack
block storage. What are the detail differences betwwen object storage and
block storage? Cloud anyone tell me his/her ideas? Thanks inadvance.

-- 
Thanks
Harry Wei

___
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] keystone help! keystone-all

2013-01-16 Thread JuanFra Rodriguez Cardoso
Nice! No problem.

2013/1/16 Mballo Cherif cherif.mba...@gemalto.com

 Thanks juanFran ! I fix the issue, the problem was that I launched twice
 the keystone process with “service keystone start” and “keystone-all” J!
 Thanks you for your help!

 ** **

 ** **

 Sheriff.

 ** **

 *From:* JuanFra Rodriguez Cardoso [mailto:
 juanfra.rodriguez.card...@gmail.com]
 *Sent:* mercredi 16 janvier 2013 16:33
 *To:* Mballo Cherif
 *Cc:* openstack@lists.launchpad.net
 *Subject:* Re: [Openstack] keystone help! keystone-all

 ** **

 Hi:

 ** **

 Check ports tcp/5000 and tcp/35357 are free before starting keystone.


 Regards,

 JuanFra.

 ** **

 ** **

 2013/1/16 Mballo Cherif cherif.mba...@gemalto.com

 Hi everybody, I need help. When I install keystone and do keystone-all I
 get this error:

 How can I fix this issus?

  

 File /usr/bin/keystone-all, line 74, in module
 serve(*servers)
   File /usr/bin/keystone-all, line 38, in serve
 server.start()
   File /usr/lib/python2.7/dist-packages/keystone/common/wsgi.py, line
 71, in start
 socket = eventlet.listen((self.host, self.port), backlog=backlog)
   File /usr/lib/python2.7/dist-packages/eventlet/convenience.py, line
 38, in listen
 sock.bind(addr)
   File /usr/lib/python2.7/socket.py, line 224, in meth
 return getattr(self._sock,name)(*args)
 socket.error: [Errno 98] Address already in use

  

 Thanks!

  

 Sherif

  

  

  

  


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



 

 ** **

 --
 JuanFra 




-- 
JuanFra
___
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] Difference between Swift and Cinder

2013-01-16 Thread Kuo Hugo
[Cinder] (born from nova-volume)
The goal of the Cinder project is to separate the existing nova-volume
block service into its own project.


[Swift]
Swift is a highly available, distributed, eventually consistent object/blob
store. Organizations can use Swift to store lots of data efficiently,
safely, and cheaply.


Cinder is an project to leverage different backend storage pool as block
devices for Nova instance .

Swift is an object storage . The way to keep  files (objects) eventually
consistent.

There're many differences between Cinder and Swift.

In a short summary , swift is not that good for very fast real-time I/O .
And the object contents is unstructured . Looks like a box but you can not
open it. Once you modify the content , the whole object will be a new one
box.  Cinder provides user a pool for creating volume disk which  present
as block level driver.

If you ask me a question :
Could swift's container be an instance's virtual disk? The answer is YES
but in high risk.


Cheers
Hugo




2013/1/17 harryxiyou harryxi...@gmail.com

 Hi all,

 Swift is oriented Openstack object storage but Cinder is oriented Openstack
 block storage. What are the detail differences betwwen object storage and
 block storage? Cloud anyone tell me his/her ideas? Thanks inadvance.

 --
 Thanks
 Harry Wei

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




-- 
+Hugo Kuo+
tonyt...@gmail.com
+ tonyt...@gmail.com886 935004793
___
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] Difference between Swift and Cinder

2013-01-16 Thread Syed Armani
This question was also discussed last week. You may want to have a look at
the answers there.
https://lists.launchpad.net/openstack/msg19997.html


-- Syed Armani

On Wed, Jan 16, 2013 at 10:25 PM, Kuo Hugo tonyt...@gmail.com wrote:


 [Cinder] (born from nova-volume)
 The goal of the Cinder project is to separate the existing nova-volume
 block service into its own project.


 [Swift]
 Swift is a highly available, distributed, eventually consistent
 object/blob store. Organizations can use Swift to store lots of data
 efficiently, safely, and cheaply.


 Cinder is an project to leverage different backend storage pool as block
 devices for Nova instance .

 Swift is an object storage . The way to keep  files (objects) eventually
 consistent.

 There're many differences between Cinder and Swift.

 In a short summary , swift is not that good for very fast real-time I/O .
 And the object contents is unstructured . Looks like a box but you can not
 open it. Once you modify the content , the whole object will be a new one
 box.  Cinder provides user a pool for creating volume disk which  present
 as block level driver.

 If you ask me a question :
 Could swift's container be an instance's virtual disk? The answer is YES
 but in high risk.


 Cheers
 Hugo




 2013/1/17 harryxiyou harryxi...@gmail.com

 Hi all,

 Swift is oriented Openstack object storage but Cinder is oriented
 Openstack
 block storage. What are the detail differences betwwen object storage and
 block storage? Cloud anyone tell me his/her ideas? Thanks inadvance.

 --
 Thanks
 Harry Wei

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




 --
 +Hugo Kuo+
 tonyt...@gmail.com
 + tonyt...@gmail.com886 935004793

 ___
 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] Question about Disk Setup of Nova Compute Node

2013-01-16 Thread Gui Maluf
Hey Sean,
Did you found which is the best set up for your RAID?
I'm facing the same situation here.
 I've 11 dell r710 servers, with 4x3TB disk each, and I'm wondering if
worth it using a RAID5 or JBOD for some server that will run a
compute-network-volume node.
Did you got any solution?
Thanks in advance


On Sat, Jan 12, 2013 at 7:21 PM, Razique Mahroua
razique.mahr...@gmail.comwrote:

 Sorry, the first sentence is wrong :

 Hi,
 actually, even for a raid 10 you would end up with 3TB usable (more around
 2800 GB)

 In both cases you end up with 2 TB :)

 Regards,
 *Razique Mahroua** - **Nuage  Co*
  razique.mahr...@gmail.com
 Tel : +33 9 72 37 94 15


 Le 12 janv. 2013 à 22:19, Razique Mahroua razique.mahr...@gmail.com a
 écrit :

 Hi,
 actually, even for a raid 10 you would end up with 3TB usable (more around
 2800 GB). You could even go for either a RAID6 or RAID10 actually, since
 you have 4TB you would end up with 2TB in both cases

 Performance wise RAID10 is in most cases faster when it comes to reading
 speed, sometimes slower when it comes to writing speed, it all depends on
 you controller. You would bench both RAIDs and pick the faster one :)


 *Razique Mahroua** - **Nuage  Co*
  razique.mahr...@gmail.com
 Tel : +33 9 72 37 94 15

 NUAGECO-LOGO-Fblan_petit.jpg

 Le 11 janv. 2013 à 23:23, Sean Bigdatafun sean.bigdata...@gmail.com a
 écrit :

 Razique,

 Let's think of the following scenario, we use Nova to build an EC2-kind of
 compute cluster. For EC2, they offer

 M1.Small = 1 vCPU + 1.7GB Mem + 160GB Disk
 M1.Medium = 2vCPU + 3.75GB Mem + 410GB Disk
 M1.Large = 4vCPU + 7.5GB Mem + 850GB Disk
 M1.ExtraLarge = 8.vCPU + 15GB Mem + 1.7TB Dsik
 ...

 This means that they at least have 1.7TB disk space on a physical server
 (presumably 2 x 1TB disk).


 What RAID option  would we use in designing our cluster? For our Nova
 compute nodes,

 -- Do we have a JBOD configuration of 2 disks?
 -- do we have a RAID 0 of 2 disks?
 -- or do we use more enterprise like RAID 5?


 Thanks and hopefully this starts some discussion in this direction.

 Thanks,
 Sean

 On Fri, Jan 11, 2013 at 12:46 AM, Razique Mahroua 
 razique.mahr...@gmail.com wrote:

 Hi Sean,
 I may be wrong, but I think there is not any best RAID strategy when it
 comes to the disk for the nodes or a normal one. All RAID type have their
 pros and cons.
 It'a all about security over performance against total space that would
 end up usable. What RAID controller is that?

 Regards,
 *Razique Mahroua** - **Nuage  Co*
 razique.mahr...@gmail.com
 Tel : +33 9 72 37 94 15

 NUAGECO-LOGO-Fblan_petit.jpg

 Le 11 janv. 2013 à 08:36, Sean Bigdatafun sean.bigdata...@gmail.com a
 écrit :

 When I have a set of rack servers that is 1TB * 4 disks in each of it as
 Nova Compute Node, what is the best RAID (or JBOD) strategy OpenStack
 community recommend?

 Basically I'd like to know what a normal disk setup a compute node should
 be using.

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





 --
 --Sean





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




-- 
*guilherme* \n
\t *maluf*
NUAGECO-LOGO-Fblan_petit.jpg___
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] user committee points to review

2013-01-16 Thread Sean Roberts
That worked, I can read it now.

~sean

On Jan 16, 2013, at 6:18 AM, Tim Bell 
tim.b...@cern.chmailto:tim.b...@cern.ch wrote:


A few of you have had trouble reading the document. The updated link is at 
https://docs.google.com/document/d/1yD8TfqUik2dt5xo_jMVHMl7tw9oIJnEndLK8YqEToyo/edit

If you can’t read it, please send me a note and I’ll share it.

Tim

From: Tim Bell
Sent: 09 January 2013 09:52
To: 'Sean Roberts'; OpenStack community; openstack
Subject: RE: Calling all user group and meetup organizers


Sean,

Is the aim to provide co-ordination for the OpenStack user groups worldwide ?

Ryan, JC and I have been putting together the structure for the OpenStack user 
committee (as described on the foundation list at 
http://lists.openstack.org/pipermail/foundation/2012-December/001289.html). As 
we have collected input from various parties, there is a proposal for part of 
the committee to consist of user group representatives from different 
geographies.

As mentioned in the mail to the foundation list, anyone who’d like to 
contribute to the user committee structure/mandate is welcome to get in touch 
for editing rights to 
https://docs.google.com/document/d/1yD8TfqUik2dt5xo_jMVHMl7tw9oIJnEndLK8YqEToyo

I am on travel on the 15th so I won’t be able to attend the call but it would 
be great if the conclusions could be distributed to the community list.

Tim

From: 
openstack-bounces+tim.bell=cern...@lists.launchpad.netmailto:openstack-bounces+tim.bell=cern...@lists.launchpad.net
 [mailto:openstack-bounces+tim.bell=cern...@lists.launchpad.net] On Behalf Of 
Sean Roberts
Sent: 09 January 2013 01:55
To: OpenStack community; openstack
Subject: [Openstack] Calling all user group and meetup organizers

We are going to have a planning meeting on Tuesday, 15 Jan 2012 11:00am to 
1:00pm PST. RSVP via  http://www.meetup.com/openstack/events/93593062/  Connect 
remotely via webex 
https://yahoomeetings.webex.com/yahoomeetings/j.php?ED=160663792UID=492396097RT=MiM0
If this time doesn't work for you, get ahold of me directly via 
skype:seanroberts66, email, mobile, irc:sarob, twitter:sarob, or carrier pigeon.

Stefano and Thierry will be joining us. I want to get input from people that 
run user groups and meetups.

See you then!

Sean Roberts
Infrastructure Strategy
sean...@yahoo-inc.commailto:sean...@yahoo-inc.com
Direct (408) 349-5234  Mobile (925) 980-4729

701 First Avenue, Sunnyvale, CA, 94089-0703, US
Phone (408) 349-3300  Fax (408) 349-3301

[http://forgood.zenfs.com/logos/yahoo.png]
___
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] Question about flavor_access extension

2013-01-16 Thread Day, Phil
Hi Folks,

Can anyone point me to some examples of using the flavour_access extension 
please ?

I've been playing around with this in Devstack, and so far I've found that 
whilst I can create a non-public flavor and add access to a specific tenant 
(which I take to show that the extension is loaded properly)


-  It doesn't show up in the result of flavor-list, even for tenants 
that have access to it, or if the user has the admin role



-  Providing I know the ID of the flavor I can get details of it with 
nova flavor-show even if the tenant hasn't been added for access



-  Providing I know the ID of the flavor I can create an instance to 
use it even if the tenant hasn't been added for access


Looking in the code I can't see any support in the API to ever list private 
flavors, or to validate the access to a flavor, but maybe I'm looking in the 
wrong place.

Has anyone else been using this extension ?

Cheers,
Phil
___
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] Calling all user group and meetup organizers

2013-01-16 Thread Colin McNamara
Glad to hear you reaching out. The voice on the call offering space was me 
(Colin McNamara). My company Nexus has an office in Alpharetta Ga (1105 
Lakewood Parkway, Suite 110 Alpharetta, GA 30009) that has a training room that 
can fit roughly 15 people where we normally hold lunch and learns / brown bags 
/ Hackathons for our engineering teams. 
 
If you can send a note to my work email - colin.mcnam...@nexusis.com detailing 
the time and space requirements I'll connect you with a member of our Atlanta 
team who can arrange access and internet connectivity


Regards,

Colin

If you would like to schedule a time to speak with me, please click here to see 
my calendar and pick a time that works for your schedule. The system will 
automatically send us both an outlook meeting invite.

Colin McNamara
(858)208-8105
CCIE #18233,VCP
http://www.colinmcnamara.com
http://www.linkedin.com/in/colinmcnamara

OpenStack Elections are this week - Vote and let your voice be heard -  
https://www.bigpulse.com/p22034/ 




On Jan 15, 2013, at 1:07 PM, Doug Hellmann doug.hellm...@dreamhost.com wrote:

 Someone on the call today offered meeting space in Alpharetta, GA but I 
 couldn't hear your name clearly at the time. Could you drop me a note off 
 list, please, so we can talk about those arrangements?
 
 Thanks,
 Doug
 
 
 On Tue, Jan 8, 2013 at 7:54 PM, Sean Roberts sean...@yahoo-inc.com wrote:
 We are going to have a planning meeting on Tuesday, 15 Jan 2012 11:00am to 
 1:00pm PST. RSVP via  http://www.meetup.com/openstack/events/93593062/  
 Connect remotely via webex 
 https://yahoomeetings.webex.com/yahoomeetings/j.php?ED=160663792UID=492396097RT=MiM0
 If this time doesn't work for you, get ahold of me directly via 
 skype:seanroberts66, email, mobile, irc:sarob, twitter:sarob, or carrier 
 pigeon.
 
 Stefano and Thierry will be joining us. I want to get input from people that 
 run user groups and meetups.
 
 See you then!
 
 Sean Roberts
 Infrastructure Strategy
 sean...@yahoo-inc.com
 Direct (408) 349-5234  Mobile (925) 980-4729
  
 701 First Avenue, Sunnyvale, CA, 94089-0703, US
 Phone (408) 349-3300  Fax (408) 349-3301
  
 
 
 ___
 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] Question about Disk Setup of Nova Compute Node

2013-01-16 Thread Razique Mahroua
I always preferred RAID5 over JBOD myself, but you always need to bench first and decide after :)
Razique Mahroua-Nuage  Corazique.mahr...@gmail.comTel: +33 9 72 37 94 15

Le 16 janv. 2013 à 18:11, Gui Maluf guimal...@gmail.com a écrit :Hey Sean,Did you found which is the best set up for your RAID?I'm facing the same situation here.I've 11 dell r710 servers, with 4x3TB disk each, and I'm wondering if worth it using a RAID5 or JBOD for some server that will run a compute-network-volume node.

Did you got any solution?Thanks in advanceOn Sat, Jan 12, 2013 at 7:21 PM, Razique Mahroua razique.mahr...@gmail.com wrote:

Sorry, the first sentence is wrong :

Hi,actually, even for a raid 10 you would end up with 3TB usable (more around 2800 GB)In both cases you end up with 2 TB :)Regards,
Razique Mahroua-Nuage  Co



razique.mahr...@gmail.comTel: +33 9 72 37 94 15

NUAGECO-LOGO-Fblan_petit.jpg

Le 12 janv. 2013 à 22:19, Razique Mahroua razique.mahr...@gmail.com a écrit :

Hi,actually, even for a raid 10 you would end up with 3TB usable (more around 2800 GB). You could even go for either a RAID6 or RAID10 actually, since you have 4TB you would end up with 2TB in both cases

Performance wise RAID10 is in most cases faster when it comes to reading speed, sometimes slower when it comes to writing speed, it all depends on you controller. You would bench both RAIDs and pick the faster one :)


Razique Mahroua-Nuage  Co



razique.mahr...@gmail.comTel: +33 9 72 37 94 15

NUAGECO-LOGO-Fblan_petit.jpg

Le 11 janv. 2013 à 23:23, Sean Bigdatafun sean.bigdata...@gmail.com a écrit :Razique,

Let's think of the following scenario, we use Nova to build an EC2-kind of compute cluster. For EC2, they offerM1.Small = 1 vCPU + 1.7GB Mem + 160GB Disk
M1.Medium= 2vCPU + 3.75GB Mem + 410GB DiskM1.Large = 4vCPU + 7.5GB Mem + 850GB DiskM1.ExtraLarge = 8.vCPU + 15GB Mem + 1.7TB Dsik...This means that they at least have 1.7TB disk space on a physical server (presumably 2 x 1TB disk). 


What RAID option would we use in designing our cluster? For our Nova compute nodes,-- Do we have a JBOD configuration of 2 disks?-- do we have a RAID 0 of 2 disks?


-- or do we use more enterprise like RAID 5?Thanks and hopefully this starts some discussion in this direction.Thanks,Sean


On Fri, Jan 11, 2013 at 12:46 AM, Razique Mahroua razique.mahr...@gmail.com wrote:


Hi Sean,I may be wrong, but I think there is not any "best" RAID strategy when it comes to the disk for the nodes or a "normal" one. All RAID type have their pros and cons.


It'a all about security over performance against total space that would end up usable. What RAID controller is that?Regards,
Razique Mahroua-Nuage  Co


razique.mahr...@gmail.comTel: +33 9 72 37 94 15


NUAGECO-LOGO-Fblan_petit.jpg

Le 11 janv. 2013 à 08:36, Sean Bigdatafun sean.bigdata...@gmail.com a écrit :When I have a set of rack servers that is 1TB * 4 disks in each of it as Nova Compute Node, what is the best RAID (or JBOD) strategy OpenStack community recommend?


Basically I'd like to know what a normal disk setup a compute node should be using.

Thanks,Sean
___Mailing list: https://launchpad.net/~openstackPost to : openstack@lists.launchpad.net


Unsubscribe : https://launchpad.net/~openstackMore help : https://help.launchpad.net/ListHelp


-- --Sean


___
Mailing list: https://launchpad.net/~openstack
Post to   : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help  : https://help.launchpad.net/ListHelp
-- guilherme \n\t maluf

___
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] New to OpenStack - question Swift+Keystone Horizon

2013-01-16 Thread Brian Ipsen
Hi

I have just started to take a look at OpenStack (especially Swift, as this is 
what is most needed for a case I am investigating).
So far I have managed to get a Swift node up and running (all-in-one) on 
Ubuntu, but for some reasons I have been asked to take at look at the RedHat 
preview-implementation of the Folsom release.

Since Nova and the other parts not are needed, I would prefer not to install 
those parts... But will Horizon still be able to work - just with Swift and the 
underlying identity service based on keystone ?

I have tried the RedHat approach, and Keystone is up and running. I then tried 
to install and configure Horizon according to the RedHat instructions (and 
installed Swift afterwards). But whenever I log on to the Horizon interface, I 
get an internal server error page back.

Sine I don't know whether Horizon will run on such a limited setup (and I have 
not been able to locate information about it), I don't know whether it could be 
a bug in the RedHat implementation - or it simply is an unsupported setup...

Regards
Brian

PS: The error I get is this (from httpd error log):
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] mod_wsgi (pid=1715): 
Exception occurred processing WSGI script 
'/usr/share/openstack-dashboard/openstack_dashboard/wsgi/django.wsgi'.
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] Traceback (most recent 
call last):
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/core/handlers/wsgi.py, line 241, in 
__call__
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] response = 
self.get_response(request)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/core/handlers/base.py, line 179, in 
get_response
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] response = 
self.handle_uncaught_exception(request, resolver, sys.exc_info())
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/core/handlers/base.py, line 228, in 
handle_uncaught_exception
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 
callback(request, **param_dict)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/utils/decorators.py, line 91, in 
_wrapped_view
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] response = 
view_func(request, *args, **kwargs)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/views/defaults.py, line 33, in 
server_error
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 
http.HttpResponseServerError(t.render(Context({})))
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/template/base.py, line 140, in render
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 
self._render(context)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/template/base.py, line 134, in _render
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 
self.nodelist.render(context)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/template/base.py, line 823, in render
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] bit = 
self.render_node(node, context)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/template/base.py, line 837, in 
render_node
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 
node.render(context)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/template/loader_tags.py, line 123, in 
render
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 
compiled_parent._render(context)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/template/base.py, line 134, in _render
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 
self.nodelist.render(context)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/template/base.py, line 823, in render
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] bit = 
self.render_node(node, context)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/template/base.py, line 837, in 
render_node
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 
node.render(context)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/template/loader_tags.py, line 155, in 
render
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 
self.render_template(self.template, context)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 

Re: [Openstack] New to OpenStack - question Swift+Keystone Horizon

2013-01-16 Thread Gabriel Hurley
Horizon's list of required services includes Nova, Glance and Keystone. At 
present no work has been done to make it run with a Swift + Keystone (only) 
configuration. That said, it's not impossible. The easiest route would likely 
be to unregister all of the Nova and Glance-related panels in the existing 
System and Project dashboards (this can be done using Horizon's 
customization_module setting, though documentation for it is minimal), and 
provide a custom user_home function that directs users to the Containers 
(e.g. Swift) panel upon login.

In general as long as you don't ever touch any of the panels that try to make 
API calls to Nova or Glance you can avoid having to run those services. 
Unfortunately, *a lot* of the panels *do* make calls to those services. The 
Swift Containers panel does not, though, so it can be done.

Keystone is absolutely required, though, along with proper Swift + Keystone 
auth integration. That part is critical.

All the best,


-  Gabriel

From: openstack-bounces+gabriel.hurley=nebula@lists.launchpad.net 
[mailto:openstack-bounces+gabriel.hurley=nebula@lists.launchpad.net] On 
Behalf Of Brian Ipsen
Sent: Wednesday, January 16, 2013 1:29 PM
To: openstack@lists.launchpad.net
Subject: [Openstack] New to OpenStack - question Swift+Keystone  Horizon

Hi

I have just started to take a look at OpenStack (especially Swift, as this is 
what is most needed for a case I am investigating).
So far I have managed to get a Swift node up and running (all-in-one) on 
Ubuntu, but for some reasons I have been asked to take at look at the RedHat 
preview-implementation of the Folsom release.

Since Nova and the other parts not are needed, I would prefer not to install 
those parts... But will Horizon still be able to work - just with Swift and the 
underlying identity service based on keystone ?

I have tried the RedHat approach, and Keystone is up and running. I then tried 
to install and configure Horizon according to the RedHat instructions (and 
installed Swift afterwards). But whenever I log on to the Horizon interface, I 
get an internal server error page back.

Sine I don't know whether Horizon will run on such a limited setup (and I have 
not been able to locate information about it), I don't know whether it could be 
a bug in the RedHat implementation - or it simply is an unsupported setup...

Regards
Brian

PS: The error I get is this (from httpd error log):
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] mod_wsgi (pid=1715): 
Exception occurred processing WSGI script 
'/usr/share/openstack-dashboard/openstack_dashboard/wsgi/django.wsgi'.
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] Traceback (most recent 
call last):
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/core/handlers/wsgi.py, line 241, in 
__call__
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] response = 
self.get_response(request)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/core/handlers/base.py, line 179, in 
get_response
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] response = 
self.handle_uncaught_exception(request, resolver, sys.exc_info())
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/core/handlers/base.py, line 228, in 
handle_uncaught_exception
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 
callback(request, **param_dict)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/utils/decorators.py, line 91, in 
_wrapped_view
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] response = 
view_func(request, *args, **kwargs)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/views/defaults.py, line 33, in 
server_error
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 
http.HttpResponseServerError(t.render(Context({})))
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/template/base.py, line 140, in render
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 
self._render(context)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/template/base.py, line 134, in _render
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 
self.nodelist.render(context)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/template/base.py, line 823, in render
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] bit = 
self.render_node(node, context)
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34]   File 
/usr/lib/python2.6/site-packages/django/template/base.py, line 837, in 
render_node
[Wed Jan 16 20:12:40 2013] [error] [client 10.41.43.34] return 

Re: [Openstack] Question about Disk Setup of Nova Compute Node

2013-01-16 Thread Sean Bigdatafun
Gui,

Here is my current plan on the table (I have not started the action yet):

Go for RAID 5, because if a VM happen to rely on data on a local disk, I
can avoid the situation he notice a bad luck. (if I use JBOD, then I have
to say sorry to her, my customer, in such case)

IMO, it's always a tradeoff. I am just very curious how Amazon configures
its EC2 hardware.

Sean


On Wed, Jan 16, 2013 at 9:11 AM, Gui Maluf guimal...@gmail.com wrote:

  I've 11 dell r710 servers, with 4x3TB disk each, and I'm wondering if
 worth it using a RAID5 or JBOD for some server that will run a
 compute-network-volume node.





-- 
--Sean
___
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] Question about Disk Setup of Nova Compute Node

2013-01-16 Thread Blair Bethwaite
On 17 January 2013 09:48, Sean Bigdatafun sean.bigdata...@gmail.com wrote:

 IMO, it's always a tradeoff. I am just very curious how Amazon configures
 its EC2 hardware.


Good luck getting that information! You might be able to make some guesses
from benchmark info though, there is plenty around. This post from Scalyr
takes a great all round look at EC2 IO performance, and it's pretty recent
data: http://blog.scalyr.com/2012/10/16/a-systematic-look-at-ec2-io/ .

Personally, I would guess that for ephemeral drives they use either no RAID
at all or RAID10, probably none though, especially as they don't advertise
any reliability for these drives. The issue of rebuild performance in
parity-based RAID configs and the effect it would have on guest performance
would be a significant consideration. Having said that, it's difficult to
find reports of ephemeral drive failures, and Amazon don't quote any
failure rates themselves.

-- 
Cheers,
~Blairo
___
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] What's the function of devstack?

2013-01-16 Thread Ajiva Fan
a gui like ubuntu installation interface can be provided by dialog
which devstack currently doesn't use, devstack just generates plain
console output

On 1/16/13, Wojciech Dec wdec.i...@gmail.com wrote:
 Hi,

 devstack is a scripted (aka using a pre-canned config) openstack setup
 using (generally latest) openstack code (from git). While not being an
 offical openstack project, it is used by many as a quick  easy way to get
 an openstack environment set-up. In terms of GUI, you'll get the horizon
 web interface GUI to do basic things, but suggest getting familiarity with
 the CLI.

 You clearly should get familiar with http://devstack.org/

 Cheers,
 Woj.

 On 15 January 2013 09:32, Jia Lee jeffryl...@gmail.com wrote:

 Hi,

 Could someone tell me the function of devstack and will there be a
 graphical user interface when the 'stack.sh'  is executed?


 --
 世界因你而精彩~

 ___
 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] Help with Glance

2013-01-16 Thread Ajiva Fan
My glance version is 2012.1.1

i think command like the following way may solve your problem:
# glance add is_public=true name=Ubuntu 12.04 UEC container_format=
ovf disk_format=qcow2  precise-server-cloudimg-amd64.img

use # glance help to get more details

good luck

On 1/16/13, JuanFra Rodriguez Cardoso
juanfra.rodriguez.card...@gmail.com wrote:
 It shouldn't be problem with your distro.

 Can you enable flags 'verbose=True' and 'debug=True' both
 glance-registry.conf as glance-api.conf?
 In this way, you can paste more useful info returned by the error.


 2013/1/16 Guilherme Russi luisguilherme...@gmail.com

 I've tried to type all over again: glance image-create --name= Ubuntu
 12.04 UEC is_public= true --container-format= ovf --disk-format= qcow2 
 precise-server-cloudimg-amd64.img and got the same error, I'm using
 Debian
 Wheezy, maybe can be some problem with my dist?

 Thanks.



 2013/1/16 JuanFra Rodriguez Cardoso juanfra.rodriguez.card...@gmail.com

 mmm... can be an error related with quotes copied?
 Test typing manually Ubuntu 12.04 UEC


 2013/1/16 Guilherme Russi luisguilherme...@gmail.com

 It returned the same error, it looks like my glance doesn't know the
 commando --name, no such option: --name



 2013/1/16 JuanFra Rodriguez Cardoso
 juanfra.rodriguez.card...@gmail.com
 

 glance image-create --name=Ubuntu 12.04 UEC *is_public=true*
 --container-format=
 ovf --disk-format=qcow2  precise-server-cloudimg-amd64.img






 --
 JuanFra





 --
 JuanFra


___
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] [openstack] [nova] how to understand the vm_states ‘SUSPENDED’ and 'STOP‘ ?

2013-01-16 Thread 孟庆龙
Hi all,
 In the nova.compute.vm_states.py
 SUSPENDED = 'suspended'  # VM is suspended to disk.
 STOPPED = 'stopped'  # VM is powered off, the disk image is still
there.

 but what are the different between them ?

Tks,
Best Regards,

 Lawrency Meng
___
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] [openstack] [nova] how to understand the vm_states ‘SUSPENDED’ and 'STOP‘ ?

2013-01-16 Thread Wangpan
Hi qinglong,
suspended means Hibernation, the instance's memory and cpu states will be saved 
to disk, stoped means powered off,
suspended instance can be resume from the disk, and the jobs in instance will 
keep on running, but stopped instance will not.

2013-01-17



Wangpan



发件人:孟庆龙
发送时间:2013-01-17 11:21
主题:[Openstack] [openstack] [nova] how to understand the vm_states ‘SUSPENDED’ 
and 'STOP‘ ?
收件人:openstackopenstack@lists.launchpad.net
抄送:

Hi all,

 In the nova.compute.vm_states.py
 SUSPENDED = 'suspended'  # VM is suspended to disk.
 STOPPED = 'stopped'  # VM is powered off, the disk image is still there.


 but what are the different between them ?


Tks,

Best Regards,
 

 Lawrency Meng___
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] Error while creating cinder volume

2013-01-16 Thread Bontala, Vibhuvardhan
Hi,

I have a Glance image that I am using to create a Cinder volume using the 
native iSCSI driver. It had always worked in Folsom. But when I am trying for 
the first time on the Grizzly-2 code base, I am seeing an error. I have 
sufficient space in my root partition.

The command I used to create the Cinder volume is below.

cinder create 2 --image-id cca54f84-f0ff-4e8e-a9e9-671f4f1b5dc5 --display-name 
Vol1


2013-01-16 16:47:24.547 DEBUG cinder.utils 
[req-97f721cb-a87a-40f6-82ad-b3523b655800 4b84a5d2b68e4d3aa640b0888bbc606e 
7525b3ad32a043b3b9ad2dded6c4a8e0] Running cmd (subprocess): sudo 
/usr/local/bin/cinder-rootwrap /etc/cinder/rootwrap.conf qemu-img convert -O 
raw /tmp/tmplZsSWZ 
/dev/mapper/stack--volumes-volume--730f75cc--24da--4838--9308--d56954eb4974 
from (pid=27138) execute /opt/stack/cinder/cinder/utils.py:162
2013-01-16 16:47:24.661 DEBUG cinder.utils 
[req-97f721cb-a87a-40f6-82ad-b3523b655800 4b84a5d2b68e4d3aa640b0888bbc606e 
7525b3ad32a043b3b9ad2dded6c4a8e0] Result was 1 from (pid=27138) execute 
/opt/stack/cinder/cinder/utils.py:179
2013-01-16 16:47:25.104 ERROR cinder.openstack.common.rpc.amqp [-] Exception 
during message handling
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp Traceback (most 
recent call last):
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/openstack/common/rpc/amqp.py, line 276, in 
_process_data
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp rval = 
self.proxy.dispatch(ctxt, version, method, **args)
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/openstack/common/rpc/dispatcher.py, line 145, in 
dispatch
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp return 
getattr(proxyobj, method)(ctxt, **kwargs)
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/volume/manager.py, line 236, in create_volume
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
self._copy_image_to_volume(context, volume_ref, image_id)
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/volume/manager.py, line 420, in _copy_image_to_volume
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
self.db.volume_update(context, volume_id, {'status': 'error'})
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/contextlib.py, line 24, in __exit__
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
self.gen.next()
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/volume/manager.py, line 412, in _copy_image_to_volume
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp image_id)
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/volume/driver.py, line 676, in copy_image_to_volume
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
self.local_path(volume))
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/image/image_utils.py, line 233, in fetch_to_raw
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
convert_image(tmp, dest, 'raw')
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/image/image_utils.py, line 191, in convert_image
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
utils.execute(*cmd, run_as_root=True)
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/utils.py, line 186, in execute
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp cmd=' 
'.join(cmd))
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
ProcessExecutionError: Unexpected error while running command.
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp Command: sudo 
/usr/local/bin/cinder-rootwrap /etc/cinder/rootwrap.conf qemu-img convert -O 
raw /tmp/tmplZsSWZ 
/dev/mapper/stack--volumes-volume--730f75cc--24da--4838--9308--d56954eb4974
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp Exit code: 1
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp Stdout: ''
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp Stderr: 
'qemu-img: 
/dev/mapper/stack--volumes-volume--730f75cc--24da--4838--9308--d56954eb4974: 
error while converting raw: No space left on device\n'

I have sufficient space on the local hard disk. Below is the output for a bunch 
of useful commands to diagnose this issue.

stack@esg-dell-c4-s08:~$ df -H
Filesystem   Size  Used Avail Use% Mounted on
/dev/mapper/esg--dell--c4--s08-root   39G   17G   20G  47% /
udev  17G  4.1k   17G   1% /dev
tmpfs6.8G  361k  6.8G   1% /run
none 5.3M 0  5.3M   0% /run/lock
none   

Re: [Openstack] Error while creating cinder volume

2013-01-16 Thread Vishvananda Ishaya
in folsom, cinder didn't automatically convert images to raw when creating a 
volume. This is necessary because a qcow written directly to a volume will not 
boot properly. This means you need to create a volume that is the size of the 
virtual disk.

Vish

On Jan 16, 2013, at 8:39 PM, Bontala, Vibhuvardhan 
vibhuvardhan.bont...@emc.com wrote:

 Hi,
  
 I have a Glance image that I am using to create a Cinder volume using the 
 native iSCSI driver. It had always worked in Folsom. But when I am trying for 
 the first time on the Grizzly-2 code base, I am seeing an error. I have 
 sufficient space in my root partition.
  
 The command I used to create the Cinder volume is below.
  
 cinder create 2 --image-id cca54f84-f0ff-4e8e-a9e9-671f4f1b5dc5 
 --display-name Vol1
  
  
 2013-01-16 16:47:24.547 DEBUG cinder.utils 
 [req-97f721cb-a87a-40f6-82ad-b3523b655800 4b84a5d2b68e4d3aa640b0888bbc606e 
 7525b3ad32a043b3b9ad2dded6c4a8e0] Running cmd (subprocess): sudo 
 /usr/local/bin/cinder-rootwrap /etc/cinder/rootwrap.conf qemu-img convert -O 
 raw /tmp/tmplZsSWZ 
 /dev/mapper/stack--volumes-volume--730f75cc--24da--4838--9308--d56954eb4974 
 from (pid=27138) execute /opt/stack/cinder/cinder/utils.py:162
 2013-01-16 16:47:24.661 DEBUG cinder.utils 
 [req-97f721cb-a87a-40f6-82ad-b3523b655800 4b84a5d2b68e4d3aa640b0888bbc606e 
 7525b3ad32a043b3b9ad2dded6c4a8e0] Result was 1 from (pid=27138) execute 
 /opt/stack/cinder/cinder/utils.py:179
 2013-01-16 16:47:25.104 ERROR cinder.openstack.common.rpc.amqp [-] Exception 
 during message handling
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp Traceback 
 (most recent call last):
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
 /opt/stack/cinder/cinder/openstack/common/rpc/amqp.py, line 276, in 
 _process_data
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp rval = 
 self.proxy.dispatch(ctxt, version, method, **args)
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
 /opt/stack/cinder/cinder/openstack/common/rpc/dispatcher.py, line 145, in 
 dispatch
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp return 
 getattr(proxyobj, method)(ctxt, **kwargs)
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
 /opt/stack/cinder/cinder/volume/manager.py, line 236, in create_volume
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
 self._copy_image_to_volume(context, volume_ref, image_id)
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
 /opt/stack/cinder/cinder/volume/manager.py, line 420, in 
 _copy_image_to_volume
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
 self.db.volume_update(context, volume_id, {'status': 'error'})
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
 /usr/lib/python2.7/contextlib.py, line 24, in __exit__
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
 self.gen.next()
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
 /opt/stack/cinder/cinder/volume/manager.py, line 412, in 
 _copy_image_to_volume
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp image_id)
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
 /opt/stack/cinder/cinder/volume/driver.py, line 676, in copy_image_to_volume
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
 self.local_path(volume))
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
 /opt/stack/cinder/cinder/image/image_utils.py, line 233, in fetch_to_raw
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
 convert_image(tmp, dest, 'raw')
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
 /opt/stack/cinder/cinder/image/image_utils.py, line 191, in convert_image
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
 utils.execute(*cmd, run_as_root=True)
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
 /opt/stack/cinder/cinder/utils.py, line 186, in execute
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp cmd=' 
 '.join(cmd))
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
 ProcessExecutionError: Unexpected error while running command.
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp Command: sudo 
 /usr/local/bin/cinder-rootwrap /etc/cinder/rootwrap.conf qemu-img convert -O 
 raw /tmp/tmplZsSWZ 
 /dev/mapper/stack--volumes-volume--730f75cc--24da--4838--9308--d56954eb4974
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp Exit code: 1
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp Stdout: ''
 2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp Stderr: 
 'qemu-img: 
 /dev/mapper/stack--volumes-volume--730f75cc--24da--4838--9308--d56954eb4974: 
 error while converting raw: No space left on device\n'
  
 I have sufficient space on the local hard disk. 

Re: [Openstack] Error while creating cinder volume

2013-01-16 Thread Bontala, Vibhuvardhan
Vish,

I didn't quite understand the latter part. The image size is 1.8G. In the 
output below, I attempted to create a bootable volume of size 2G. If that looks 
smaller for a virtual disk, I tried with 4G and failed with the same error. 
Could you suggest me the minimum size of the virtual disk for what I am trying 
here?

Thanks
Vibhu

From: Vishvananda Ishaya [mailto:vishvana...@gmail.com]
Sent: Thursday, January 17, 2013 12:16 AM
To: Bontala, Vibhuvardhan
Cc: openstack mail list
Subject: Re: [Openstack] Error while creating cinder volume

in folsom, cinder didn't automatically convert images to raw when creating a 
volume. This is necessary because a qcow written directly to a volume will not 
boot properly. This means you need to create a volume that is the size of the 
virtual disk.

Vish

On Jan 16, 2013, at 8:39 PM, Bontala, Vibhuvardhan 
vibhuvardhan.bont...@emc.commailto:vibhuvardhan.bont...@emc.com wrote:


Hi,

I have a Glance image that I am using to create a Cinder volume using the 
native iSCSI driver. It had always worked in Folsom. But when I am trying for 
the first time on the Grizzly-2 code base, I am seeing an error. I have 
sufficient space in my root partition.

The command I used to create the Cinder volume is below.

cinder create 2 --image-id cca54f84-f0ff-4e8e-a9e9-671f4f1b5dc5 --display-name 
Vol1


2013-01-16 16:47:24.547 DEBUG cinder.utils 
[req-97f721cb-a87a-40f6-82ad-b3523b655800 4b84a5d2b68e4d3aa640b0888bbc606e 
7525b3ad32a043b3b9ad2dded6c4a8e0] Running cmd (subprocess): sudo 
/usr/local/bin/cinder-rootwrap /etc/cinder/rootwrap.conf qemu-img convert -O 
raw /tmp/tmplZsSWZ 
/dev/mapper/stack--volumes-volume--730f75cc--24da--4838--9308--d56954eb4974 
from (pid=27138) execute /opt/stack/cinder/cinder/utils.py:162
2013-01-16 16:47:24.661 DEBUG cinder.utils 
[req-97f721cb-a87a-40f6-82ad-b3523b655800 4b84a5d2b68e4d3aa640b0888bbc606e 
7525b3ad32a043b3b9ad2dded6c4a8e0] Result was 1 from (pid=27138) execute 
/opt/stack/cinder/cinder/utils.py:179
2013-01-16 16:47:25.104 ERROR cinder.openstack.common.rpc.amqp [-] Exception 
during message handling
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp Traceback (most 
recent call last):
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/openstack/common/rpc/amqp.py, line 276, in 
_process_data
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp rval = 
self.proxy.dispatch(ctxt, version, method, **args)
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/openstack/common/rpc/dispatcher.py, line 145, in 
dispatch
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp return 
getattr(proxyobj, method)(ctxt, **kwargs)
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/volume/manager.py, line 236, in create_volume
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
self._copy_image_to_volume(context, volume_ref, image_id)
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/volume/manager.py, line 420, in _copy_image_to_volume
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
self.db.volume_update(context, volume_id, {'status': 'error'})
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/contextlib.py, line 24, in __exit__
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
self.gen.next()
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/volume/manager.py, line 412, in _copy_image_to_volume
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp image_id)
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/volume/driver.py, line 676, in copy_image_to_volume
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
self.local_path(volume))
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/image/image_utils.py, line 233, in fetch_to_raw
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
convert_image(tmp, dest, 'raw')
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/image/image_utils.py, line 191, in convert_image
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
utils.execute(*cmd, run_as_root=True)
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp   File 
/opt/stack/cinder/cinder/utils.py, line 186, in execute
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp cmd=' 
'.join(cmd))
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp 
ProcessExecutionError: Unexpected error while running command.
2013-01-16 16:47:25.104 TRACE cinder.openstack.common.rpc.amqp Command: sudo 
/usr/local/bin/cinder-rootwrap /etc/cinder/rootwrap.conf qemu-img convert -O 
raw /tmp/tmplZsSWZ 

[Openstack] Quantim duplicate subnet creation

2013-01-16 Thread Balamurugan V G
Hi,

Is there a way to create a duplicate network/subnet for tenant in quantum.
Basically for a tenant, I want to have some instances(GroupA) share a
subnet and another set of instances(GroupB) share the same(duplicate)
subnet but GroupA and GroupB should be isolated. I have labnet which is the
flat network to which one instance from each group is assigned for external
connectivity. Then I want to have two private networks private1 and
private2 both sharing the same subnet but I was to assign some instances to
private1 and some in private2.

I have the following networks in a flat network setup.

root@openstack:~# quantum subnet-list
+--+--+--+--+
| id   | name | cidr |
allocation_pools |
+--+--+--+--+
| abb62a74-ad15-452c-857f-ee0a1b388ede |  | 192.168.168.0/24 |
{start: 192.168.168.2, end: 192.168.168.254} |
| eedc0c12-c3ed-42ce-a860-692e766087a2 |  | 10.5.12.0/24 |
{start: 10.5.12.21, end: 10.5.12.25} |
+--+--+--+--+
root@openstack:~#


Now, the following gets denied.

root@openstack:~# quantum subnet-create --tenant-id
7cda178971e84c5194c8531bf4f229d7  private2 192.168.168.0/24
Invalid input for operation: Requested subnet with cidr:
192.168.168.0/24for network: 64ec75d6-0c6f-44e1-a268-b573324c4160
overlaps with another
subnet.
root@openstack:~#

I understand that a duplicate network with a tenant is not a common
scenario and perhaps by design its not allowed.

But there could be cases like I mentioned.

Strangely, I am not allowed to create the duplicate network even across
tenants. Atleast this should be allowed.

BTW, I am running a single node Devstack.

Regards,
Balu
___
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-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_quantum_trunk #198

2013-01-16 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/198/Project:precise_grizzly_quantum_trunkDate of build:Wed, 16 Jan 2013 09:32:55 -0500Build duration:1 min 11 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFixes import order nitsby zhongyue.naheditquantum/db/loadbalancer/loadbalancer_db.pyeditquantum/plugins/nec/nec_plugin.pyeditquantum/tests/unit/hyperv/test_hyperv_rpcapi.pyeditquantum/plugins/hyperv/hyperv_quantum_plugin.pyeditquantum/tests/unit/test_db_plugin.pyeditquantum/tests/unit/db/loadbalancer/test_db_loadbalancer.pyeditquantum/tests/unit/hyperv/test_hyperv_quantum_plugin.pyeditquantum/tests/unit/hyperv/test_hyperv_quantum_agent.pyeditquantum/plugins/hyperv/rpc_callbacks.pyConsole Output[...truncated 2907 lines...]ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-e2d44e8a-bb57-45bc-a17d-eef8a39080cc', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/quantum/grizzly /tmp/tmprBzj1R/quantummk-build-deps -i -r -t apt-get -y /tmp/tmprBzj1R/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log faa1733ef0adfdfb3e625d60d96b08ce764ca824..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201301160932~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [20894c3] Fixes import order nitsdch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-e2d44e8a-bb57-45bc-a17d-eef8a39080cc', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-e2d44e8a-bb57-45bc-a17d-eef8a39080cc', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_quantum_trunk #203

2013-01-16 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/203/Project:raring_grizzly_quantum_trunkDate of build:Wed, 16 Jan 2013 09:34:06 -0500Build duration:2 min 9 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFixes import order nitsby zhongyue.naheditquantum/plugins/hyperv/rpc_callbacks.pyeditquantum/tests/unit/hyperv/test_hyperv_rpcapi.pyeditquantum/db/loadbalancer/loadbalancer_db.pyeditquantum/tests/unit/hyperv/test_hyperv_quantum_plugin.pyeditquantum/tests/unit/hyperv/test_hyperv_quantum_agent.pyeditquantum/plugins/nec/nec_plugin.pyeditquantum/tests/unit/test_db_plugin.pyeditquantum/tests/unit/db/loadbalancer/test_db_loadbalancer.pyeditquantum/plugins/hyperv/hyperv_quantum_plugin.pyConsole Output[...truncated 3540 lines...]INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/quantum/grizzly /tmp/tmpYZ6Arx/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpYZ6Arx/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 3575190ca17eb83b504401fb15dfb73679cdba55..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201301160934~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [20894c3] Fixes import order nitsdch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [faa1733] Use default_notification_level when notificationdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedch -a [cfcbc7a] Port to argparse based cfgdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-6262459b-dfa8-46dc-8dcc-f6bf3df9a2af', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-6262459b-dfa8-46dc-8dcc-f6bf3df9a2af', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: precise_grizzly_nova_trunk #477

2013-01-16 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/477/Project:precise_grizzly_nova_trunkDate of build:Wed, 16 Jan 2013 10:33:10 -0500Build duration:2 min 22 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20Changesenable hacking.py self testsby sdagueedittox.inieditrun_tests.shedittools/hacking.pyAdd common config options for SPICE graphicsby berrangeeditetc/nova/nova.conf.sampleaddnova/spice/__init__.pyAdd support for setting up channel> elements in libvirt configby berrangeeditnova/virt/libvirt/config.pyeditnova/tests/test_libvirt_config.pyAdd support for configuring SPICE graphics with libvirtby berrangeeditnova/virt/libvirt/driver.pyeditnova/tests/test_libvirt.pyUpdates prerequisite packages for fedoraby sthahaeditdoc/source/devref/development.environment.rstConsole Output[...truncated 5801 lines...]git log bdc4860866c432ff4be899ffc444f38efd9e371b..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201301161033~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [35217e5] Updates prerequisite packages for fedoradch -a [c215b5e] Add support for configuring SPICE graphics with libvirtdch -a [a41f4c9] Add support for setting up  elements in libvirt configdch -a [5873dbd] Add common config options for SPICE graphicsdch -a [a3eaf78] Reject user ports that have MACs the hypervisor cannot use.dch -a [1329899] Remove unused import.dch -a [41e0b40] Make resource tracker use conductor for migration updatesdch -a [a0ae2e2] minor improvements to nova/tests/test_metadata.pydch -a [4b9bd91] Cells: Add some cells support to admin_actions extensiondch -a [fc42f76] Populate service list with availability zone and correct unit testdch -a [fa96bbf] Add 'devname' to nova.network.model.VIF classdch -a [12e38d9] Cleaning up exception handlingdch -a [6b4ad2d] Cells: Add cells API extensiondch -a [f6c205f] More HostAPI() cleanup for cells.dch -a [3824352] Renames the new os-networks extensiondch -a [327989e] Fix problem with ipv6 link-local address(es)dch -a [313279f] enable hacking.py self testsdch -a [71fecfa] Correct docstring on sizelimit middleware.dch -a [e0ac5be] Cells: Commit resize quota reservations immediatelydch -a [0668194] Move network call from compute API to the managerdch -a [bc7dc55] Make sure reboot_instance uses updated instancedch -a [f51a285] Implements getPasswordData for ec2dch -a [733712b] Expand quota loggingdch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-809028a9-a279-4342-bfca-77271dbf4ad1', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-809028a9-a279-4342-bfca-77271dbf4ad1', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: raring_grizzly_python-novaclient_trunk #38

2013-01-16 Thread openstack-testing-bot
Title: raring_grizzly_python-novaclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_python-novaclient_trunk/38/Project:raring_grizzly_python-novaclient_trunkDate of build:Wed, 16 Jan 2013 11:10:44 -0500Build duration:4 min 53 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesMove from untitest2 to testtools.by mordrededittests/test_utils.pyedittests/test_auth_plugins.pyedittests/utils.pyedittools/test-requiresedittests/test_client.pyedittests/test_shell.pyedittests/v1_1/test_shell.pyFix the help text of add-fixed-ipby ndipanoveditnovaclient/v1_1/shell.pyAdd support for instance evacuate.by kpaveleditnovaclient/v1_1/servers.pyedittests/v1_1/test_servers.pyedittests/v1_1/test_shell.pyeditnovaclient/v1_1/shell.pyeditREADME.rstedittests/v1_1/fakes.pyWhen logging request include request databy andrew.laskieditnovaclient/client.pyUpdate hosts API action calls (startup etc.)by aababilovedittests/v1_1/test_shell.pyeditnovaclient/v1_1/hosts.pyedittests/v1_1/fakes.pyedittests/v1_1/test_hosts.pyFix a couple of broken shell testsby vishvanandaedittests/v1_1/test_shell.pyAdds tenant network support to the clientby matt.dietzaddtests/v1_1/contrib/fakes.pyeditnovaclient/v1_1/networks.pyedittests/v1_1/test_shell.pyaddtests/v1_1/contrib/test_tenant_networks.pyedittests/v1_1/fakes.pyedittests/v1_1/test_networks.pyaddnovaclient/v1_1/contrib/tenant_networks.pyConsole Output[...truncated 3770 lines...]Status: attemptedVersion: 1:2.10.0.56.g2408786+git201301161110~raring-0ubuntu1Finished at 20130116-1115Build needed 00:02:17, 2588k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'python-novaclient_2.10.0.56.g2408786+git201301161110~raring-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'python-novaclient_2.10.0.56.g2408786+git201301161110~raring-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-novaclient/grizzly /tmp/tmp5bd106/python-novaclientmk-build-deps -i -r -t apt-get -y /tmp/tmp5bd106/python-novaclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 6f580661f647bf5085edff75689eb28565728acb..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/python-novaclient/raring-grizzly --forcedch -b -D raring --newversion 1:2.10.0.56.g2408786+git201301161110~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [dffd415] Adds tenant network support to the clientdch -a [020de7c] Fix a couple of broken shell testsdch -a [b5f3307] Update hosts API action calls (startup etc.)dch -a [207969f] When logging request include request datadch -a [9e319ec] Add support for instance evacuate.dch -a [2d3e0d9] Fix the help text of add-fixed-ipdch -a [53aee5c] Move from untitest2 to testtools.dch -a [eb7c390] Update README.rstdch -a [6307310] Unify Manager._update behaviourdch -a [4cf314b] Fix some usage messages of 'nova volume-*'debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-novaclient_2.10.0.56.g2408786+git201301161110~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A python-novaclient_2.10.0.56.g2408786+git201301161110~raring-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'python-novaclient_2.10.0.56.g2408786+git201301161110~raring-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcess

[Openstack-ubuntu-testing-notifications] Build Failure: precise_grizzly_python-novaclient_trunk #39

2013-01-16 Thread openstack-testing-bot
Title: precise_grizzly_python-novaclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_python-novaclient_trunk/39/Project:precise_grizzly_python-novaclient_trunkDate of build:Wed, 16 Jan 2013 11:19:14 -0500Build duration:2 min 53 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesMove from untitest2 to testtools.by mordrededittests/v1_1/test_shell.pyedittests/utils.pyedittests/test_utils.pyedittests/test_shell.pyedittools/test-requiresedittests/test_client.pyedittests/test_auth_plugins.pyFix the help text of add-fixed-ipby ndipanoveditnovaclient/v1_1/shell.pyAdd support for instance evacuate.by kpaveleditnovaclient/v1_1/shell.pyeditnovaclient/v1_1/servers.pyedittests/v1_1/fakes.pyedittests/v1_1/test_shell.pyeditREADME.rstedittests/v1_1/test_servers.pyWhen logging request include request databy andrew.laskieditnovaclient/client.pyUpdate hosts API action calls (startup etc.)by aababilovedittests/v1_1/test_shell.pyedittests/v1_1/fakes.pyeditnovaclient/v1_1/hosts.pyedittests/v1_1/test_hosts.pyFix a couple of broken shell testsby vishvanandaedittests/v1_1/test_shell.pyAdds tenant network support to the clientby matt.dietzedittests/v1_1/test_networks.pyedittests/v1_1/test_shell.pyedittests/v1_1/fakes.pyaddnovaclient/v1_1/contrib/tenant_networks.pyeditnovaclient/v1_1/networks.pyaddtests/v1_1/contrib/test_tenant_networks.pyaddtests/v1_1/contrib/fakes.pyConsole Output[...truncated 2794 lines...]Status: attemptedVersion: 1:2.10.0.56.g2408786+git201301161119~precise-0ubuntu1Finished at 20130116-1122Build needed 00:01:17, 2600k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'python-novaclient_2.10.0.56.g2408786+git201301161119~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'python-novaclient_2.10.0.56.g2408786+git201301161119~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-novaclient/grizzly /tmp/tmpkLa2TS/python-novaclientmk-build-deps -i -r -t apt-get -y /tmp/tmpkLa2TS/python-novaclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 6f580661f647bf5085edff75689eb28565728acb..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/python-novaclient/precise-grizzly --forcedch -b -D precise --newversion 1:2.10.0.56.g2408786+git201301161119~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [dffd415] Adds tenant network support to the clientdch -a [020de7c] Fix a couple of broken shell testsdch -a [b5f3307] Update hosts API action calls (startup etc.)dch -a [207969f] When logging request include request datadch -a [9e319ec] Add support for instance evacuate.dch -a [2d3e0d9] Fix the help text of add-fixed-ipdch -a [53aee5c] Move from untitest2 to testtools.dch -a [eb7c390] Update README.rstdch -a [6307310] Unify Manager._update behaviourdch -a [4cf314b] Fix some usage messages of 'nova volume-*'debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-novaclient_2.10.0.56.g2408786+git201301161119~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A python-novaclient_2.10.0.56.g2408786+git201301161119~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'python-novaclient_2.10.0.56.g2408786+git201301161119~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubproce

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_quantum_trunk #199

2013-01-16 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/199/Project:precise_grizzly_quantum_trunkDate of build:Wed, 16 Jan 2013 11:31:03 -0500Build duration:1 min 32 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFix line endings from CRLF to LF.by driptoneditquantum/tests/unit/hyperv/test_hyperv_rpcapi.pyeditquantum/plugins/hyperv/common/__init__.pyeditquantum/tests/unit/hyperv/__init__.pyeditquantum/tests/unit/hyperv/test_hyperv_quantum_plugin.pyeditquantum/tests/unit/hyperv/test_hyperv_quantum_agent.pyConsole Output[...truncated 2910 lines...]INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/quantum/grizzly /tmp/tmpdHKIif/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpdHKIif/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log faa1733ef0adfdfb3e625d60d96b08ce764ca824..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201301161131~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-4b2b4a3d-fdff-4d7f-8082-c692d80b29e1', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-4b2b4a3d-fdff-4d7f-8082-c692d80b29e1', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_quantum_trunk #204

2013-01-16 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/204/Project:raring_grizzly_quantum_trunkDate of build:Wed, 16 Jan 2013 11:31:02 -0500Build duration:2 min 43 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFix line endings from CRLF to LF.by driptoneditquantum/tests/unit/hyperv/test_hyperv_quantum_plugin.pyeditquantum/plugins/hyperv/common/__init__.pyeditquantum/tests/unit/hyperv/test_hyperv_quantum_agent.pyeditquantum/tests/unit/hyperv/__init__.pyeditquantum/tests/unit/hyperv/test_hyperv_rpcapi.pyConsole Output[...truncated 3543 lines...]bzr branch lp:~openstack-ubuntu-testing/quantum/grizzly /tmp/tmpMfmW3B/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpMfmW3B/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 3575190ca17eb83b504401fb15dfb73679cdba55..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201301161131~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [faa1733] Use default_notification_level when notificationdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedch -a [cfcbc7a] Port to argparse based cfgdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-7912bbc8-f1eb-4c8e-ac5d-c7e551599c25', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-7912bbc8-f1eb-4c8e-ac5d-c7e551599c25', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: precise_grizzly_glance_trunk #74

2013-01-16 Thread openstack-testing-bot
Title: precise_grizzly_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_glance_trunk/74/Project:precise_grizzly_glance_trunkDate of build:Wed, 16 Jan 2013 11:31:03 -0500Build duration:3 min 2 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesUse testtools for unittest base class.by revieweditglance/tests/unit/test_notifier.pyeditglance/tests/functional/test_bin_glance_control.pyeditglance/tests/functional/store/__init__.pyeditglance/tests/functional/v1/test_ssl.pyeditglance/tests/functional/v1/test_copy_to_file.pyeditglance/tests/functional/store/test_filesystem.pyeditglance/tests/functional/test_cache_middleware.pyeditglance/tests/functional/test_scrubber.pyeditglance/tests/functional/store/test_http.pyedittools/test-requiresdeleteglance/tests/unit/test_skip_examples.pyeditglance/tests/unit/test_auth.pyeditglance/tests/unit/test_cache_middleware.pyeditglance/tests/unit/test_migrations.pyeditglance/tests/functional/store/test_s3.pyeditglance/tests/unit/v1/test_api.pyeditglance/tests/utils.pyeditglance/tests/unit/api/test_common.pyeditglance/tests/functional/store_utils.pyeditglance/tests/functional/v1/test_rbd.pyeditglance/tests/functional/store/test_swift.pyConsole Output[...truncated 4162 lines...]Install-Time: 38Job: glance_2013.1+git201301161131~precise-0ubuntu1.dscMachine Architecture: amd64Package: glancePackage-Time: 79Source-Version: 2013.1+git201301161131~precise-0ubuntu1Space: 11872Status: attemptedVersion: 2013.1+git201301161131~precise-0ubuntu1Finished at 20130116-1134Build needed 00:01:19, 11872k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'glance_2013.1+git201301161131~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'glance_2013.1+git201301161131~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/glance/grizzly /tmp/tmp9OTXUF/glancemk-build-deps -i -r -t apt-get -y /tmp/tmp9OTXUF/glance/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 26a13983b8cc3b0276b1115057585126443f0a02..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/glance/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201301161131~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [b5e60b7] Use testtools for unittest base class.dch -a [cf97f6f] Add import for filesystem_store_datadir config.dch -a [8b1c02a] Update v1/images DELETE so it returns empty body.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC glance_2013.1+git201301161131~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A glance_2013.1+git201301161131~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'glance_2013.1+git201301161131~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'glance_2013.1+git201301161131~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-not

[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_nova_trunk #482

2013-01-16 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/482/Project:raring_grizzly_nova_trunkDate of build:Wed, 16 Jan 2013 11:32:18 -0500Build duration:5 min 3 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesMove migration_get_..._by_host_and_node to conductorby danmseditnova/tests/compute/test_multiple_nodes.pyeditnova/conductor/rpcapi.pyeditnova/tests/conductor/test_conductor.pyeditnova/conductor/manager.pyeditnova/conductor/api.pyeditnova/compute/resource_tracker.pyConsole Output[...truncated 7042 lines...]dch -a [d17a741] Remove more unused opts from nova.scheduler.driverdch -a [7974ad3] Fix quota updating when admin deletes common user's instancedch -a [9d3f524] Correct the calculating of disk size when using lvm disk backend.dch -a [39f80b8] Adding configdrive to xenapi.dch -a [038ca9b] Fix libvirt resume function call to get_domain_xmldch -a [96c04dd] Make it clearer that network.api.API is nova-network specific.dch -a [97f0ec7] Access instance as dict, not object in xenapidch -a [733712b] Expand quota loggingdch -a [745335b] Move logic from os-api-host into computedch -a [7a77dd7] Create a directory for servicegroup drivers.dch -a [5731852] Move update_instance_info_cache to conductor.dch -a [bda08f6] Change ComputerDriver.legacy_nwinfo to raise by default.dch -a [3934fa5] Cleanup pyflakes in nova-managedch -a [ce098cc] Add user/tenant shim to RequestContextdch -a [3a0eb6d] Add host name to log message for _local_deletedch -a [4babf7d] Make Quantum plugin fill in the 'bridge' namedch -a [f863697] Make nova network manager fill in vif_typedch -a [67cd497] Add some constants to the network model for drivers to usedch -a [bcb9983] Move libvirt VIF XML config into designer.pydch -a [567bbd1] Remove bogus 'unplug' calls from libvirt VIF testdch -a [abc9a0d] Update instance's cell_name in API cell.dch -a [f362b36] Fix test cases in integrated.test_multiprocess_apidch -a [35328dd] Added sample tests to FlavorSwap API.dch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [73cb9f6] Fix pyflakes issues in integrated testsdch -a [477722a] Fix lintstack check for multi-patch reviewsdch -a [680a3ce] xenapi: Remove dead code, moves, testsdch -a [4ff4edd] Upgrade WebOb to 1.2.3dch -a [e87c241] Allow pinging own float when using fixed gatewaydch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_nova_trunk #483

2013-01-16 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/483/Project:raring_grizzly_nova_trunkDate of build:Wed, 16 Jan 2013 11:50:49 -0500Build duration:4 min 28 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 4025 lines...]Creating tar archiveremoving 'nova-2013.1' (and everything under it)DEBUG:root:Derived package version from sdist tarball: 2013.1INFO:root:Building package using /tmp/tmpvY6qXk/nova_2013.1+git201301161152~raring.orig.tar.gzINFO:root:Generating git changelog entries for this packageDEBUG:root:['git', 'log', '-n1', '--no-merges', '--pretty=format:%H']DEBUG:root:35217e5fd790731c38d277b0f07447568e1232e3INFO:root:Detected previous commit - readingDEBUG:root:['git', 'log', 'e710897a50f4daac6337e9db114e8a73bf025dda..HEAD', '--no-merges', '--pretty=format:[%h] %s']INFO:root:Merging testing branch from launchpadDEBUG:root:['bzr', 'merge', 'lp:~openstack-ubuntu-testing/nova/raring-grizzly', '--force']+N  debian/changelog.old-D  debian/changelogAll changes applied successfully.INFO:root:Generating new changelog entryDEBUG:root:['dch', '-b', '-D', 'raring', '--newversion', '2013.1+git201301161152~raring-0ubuntu1', 'Automated Ubuntu testing build:']dch: fatal error at line 570:Cannot find debian/changelog anywhere!Are you in the source code tree?(You could use --create if you wish to create this file.)ERROR:root:Error occurred during package creation/build: Command '['dch', '-b', '-D', 'raring', '--newversion', '2013.1+git201301161152~raring-0ubuntu1', 'Automated Ubuntu testing build:']' returned non-zero exit status 255ERROR:root:Command '['dch', '-b', '-D', 'raring', '--newversion', '2013.1+git201301161152~raring-0ubuntu1', 'Automated Ubuntu testing build:']' returned non-zero exit status 255INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/grizzly /tmp/tmpvY6qXk/novamk-build-deps -i -r -t apt-get -y /tmp/tmpvY6qXk/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log e710897a50f4daac6337e9db114e8a73bf025dda..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201301161152~raring-0ubuntu1 Automated Ubuntu testing build:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['dch', '-b', '-D', 'raring', '--newversion', '2013.1+git201301161152~raring-0ubuntu1', 'Automated Ubuntu testing build:']' returned non-zero exit status 255Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['dch', '-b', '-D', 'raring', '--newversion', '2013.1+git201301161152~raring-0ubuntu1', 'Automated Ubuntu testing build:']' returned non-zero exit status 255Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_nova_trunk #484

2013-01-16 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/484/Project:raring_grizzly_nova_trunkDate of build:Wed, 16 Jan 2013 11:57:12 -0500Build duration:4 min 22 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 4016 lines...]hard linking tools/db/schema_diff.py -> nova-2013.1/tools/dbhard linking tools/esx/guest_tool.py -> nova-2013.1/tools/esxhard linking tools/xenserver/destroy_cached_images.py -> nova-2013.1/tools/xenserverhard linking tools/xenserver/stress_test.py -> nova-2013.1/tools/xenserverhard linking tools/xenserver/vdi_chain_cleanup.py -> nova-2013.1/tools/xenserverhard linking tools/xenserver/vm_vdi_cleaner.py -> nova-2013.1/tools/xenservercopying setup.cfg -> nova-2013.1Writing nova-2013.1/setup.cfgcreating distCreating tar archiveremoving 'nova-2013.1' (and everything under it)DEBUG:root:Derived package version from sdist tarball: 2013.1INFO:root:Building package using /tmp/tmpmb8Fgj/nova_2013.1+git201301161158~raring.orig.tar.gzINFO:root:Generating git changelog entries for this packageDEBUG:root:['git', 'log', '-n1', '--no-merges', '--pretty=format:%H']DEBUG:root:35217e5fd790731c38d277b0f07447568e1232e3INFO:root:Detected previous commit - readingDEBUG:root:['git', 'log', 'e710897a50f4daac6337e9db114e8a73bf025dda..HEAD', '--no-merges', '--pretty=format:[%h] %s']INFO:root:Merging testing branch from launchpadDEBUG:root:['bzr', 'merge', 'lp:~openstack-ubuntu-testing/nova/raring-grizzly', '--force']bzr: ERROR: There was an error parsing the changelog: Could not parse changelog: Unexpected line while looking for more change data or trailer:  -- Openstack Ubuntu Testing Bot   Fri, 11 Jan 2013 19:36:25 -050ERROR:root:Error occurred during package creation/build: Command '['bzr', 'merge', 'lp:~openstack-ubuntu-testing/nova/raring-grizzly', '--force']' returned non-zero exit status 3ERROR:root:Command '['bzr', 'merge', 'lp:~openstack-ubuntu-testing/nova/raring-grizzly', '--force']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/grizzly /tmp/tmpmb8Fgj/novamk-build-deps -i -r -t apt-get -y /tmp/tmpmb8Fgj/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log e710897a50f4daac6337e9db114e8a73bf025dda..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/raring-grizzly --forceTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['bzr', 'merge', 'lp:~openstack-ubuntu-testing/nova/raring-grizzly', '--force']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['bzr', 'merge', 'lp:~openstack-ubuntu-testing/nova/raring-grizzly', '--force']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_nova_trunk #486

2013-01-16 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/486/Project:raring_grizzly_nova_trunkDate of build:Wed, 16 Jan 2013 12:31:02 -0500Build duration:4 min 10 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesUse testrepository setuptools support.by mordrededit.coveragercedittox.iniedittools/test-requiresConsole Output[...truncated 4384 lines...]dch -a [9d3f524] Correct the calculating of disk size when using lvm disk backend.dch -a [39f80b8] Adding configdrive to xenapi.dch -a [038ca9b] Fix libvirt resume function call to get_domain_xmldch -a [96c04dd] Make it clearer that network.api.API is nova-network specific.dch -a [97f0ec7] Access instance as dict, not object in xenapidch -a [733712b] Expand quota loggingdch -a [745335b] Move logic from os-api-host into computedch -a [7a77dd7] Create a directory for servicegroup drivers.dch -a [5731852] Move update_instance_info_cache to conductor.dch -a [bda08f6] Change ComputerDriver.legacy_nwinfo to raise by default.dch -a [3934fa5] Cleanup pyflakes in nova-managedch -a [ce098cc] Add user/tenant shim to RequestContextdch -a [3a0eb6d] Add host name to log message for _local_deletedch -a [4babf7d] Make Quantum plugin fill in the 'bridge' namedch -a [f863697] Make nova network manager fill in vif_typedch -a [67cd497] Add some constants to the network model for drivers to usedch -a [bcb9983] Move libvirt VIF XML config into designer.pydch -a [567bbd1] Remove bogus 'unplug' calls from libvirt VIF testdch -a [abc9a0d] Update instance's cell_name in API cell.dch -a [f362b36] Fix test cases in integrated.test_multiprocess_apidch -a [35328dd] Added sample tests to FlavorSwap API.dch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [73cb9f6] Fix pyflakes issues in integrated testsdch -a [477722a] Fix lintstack check for multi-patch reviewsdch -a [680a3ce] xenapi: Remove dead code, moves, testsdch -a [4ff4edd] Upgrade WebOb to 1.2.3dch -a [e87c241] Allow pinging own float when using fixed gatewaydch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-00c16d8f-365c-4e17-be5f-cd69e46e01bb', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-00c16d8f-365c-4e17-be5f-cd69e46e01bb', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_nova_trunk #487

2013-01-16 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/487/Project:raring_grizzly_nova_trunkDate of build:Wed, 16 Jan 2013 13:01:03 -0500Build duration:6 min 39 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesMake resource tracker use conductor for listing compute nodesby danmseditnova/compute/resource_tracker.pyConsole Output[...truncated 4388 lines...]dch -a [9d3f524] Correct the calculating of disk size when using lvm disk backend.dch -a [39f80b8] Adding configdrive to xenapi.dch -a [038ca9b] Fix libvirt resume function call to get_domain_xmldch -a [96c04dd] Make it clearer that network.api.API is nova-network specific.dch -a [97f0ec7] Access instance as dict, not object in xenapidch -a [733712b] Expand quota loggingdch -a [745335b] Move logic from os-api-host into computedch -a [7a77dd7] Create a directory for servicegroup drivers.dch -a [5731852] Move update_instance_info_cache to conductor.dch -a [bda08f6] Change ComputerDriver.legacy_nwinfo to raise by default.dch -a [3934fa5] Cleanup pyflakes in nova-managedch -a [ce098cc] Add user/tenant shim to RequestContextdch -a [3a0eb6d] Add host name to log message for _local_deletedch -a [4babf7d] Make Quantum plugin fill in the 'bridge' namedch -a [f863697] Make nova network manager fill in vif_typedch -a [67cd497] Add some constants to the network model for drivers to usedch -a [bcb9983] Move libvirt VIF XML config into designer.pydch -a [567bbd1] Remove bogus 'unplug' calls from libvirt VIF testdch -a [abc9a0d] Update instance's cell_name in API cell.dch -a [f362b36] Fix test cases in integrated.test_multiprocess_apidch -a [35328dd] Added sample tests to FlavorSwap API.dch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [73cb9f6] Fix pyflakes issues in integrated testsdch -a [477722a] Fix lintstack check for multi-patch reviewsdch -a [680a3ce] xenapi: Remove dead code, moves, testsdch -a [4ff4edd] Upgrade WebOb to 1.2.3dch -a [e87c241] Allow pinging own float when using fixed gatewaydch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-537b9d83-6dd8-4751-aa28-e4c407468cb0', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-537b9d83-6dd8-4751-aa28-e4c407468cb0', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #480

2013-01-16 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/480/Project:precise_grizzly_nova_trunkDate of build:Wed, 16 Jan 2013 13:12:39 -0500Build duration:2 min 19 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesMake resource tracker use conductor for listing compute nodesby danmseditnova/compute/resource_tracker.pyMake resource tracker use conductor for listing instancesby danmseditnova/conductor/api.pyeditnova/compute/resource_tracker.pyeditnova/tests/conductor/test_conductor.pyeditnova/conductor/rpcapi.pyeditnova/conductor/manager.pyConsole Output[...truncated 5814 lines...]dch -a [25f3149] Make resource tracker use conductor for listing compute nodesdch -a [35217e5] Updates prerequisite packages for fedoradch -a [c215b5e] Add support for configuring SPICE graphics with libvirtdch -a [a41f4c9] Add support for setting up  elements in libvirt configdch -a [5873dbd] Add common config options for SPICE graphicsdch -a [a3eaf78] Reject user ports that have MACs the hypervisor cannot use.dch -a [1329899] Remove unused import.dch -a [7855afe] Move migration_get_..._by_host_and_node to conductordch -a [41e0b40] Make resource tracker use conductor for migration updatesdch -a [a0ae2e2] minor improvements to nova/tests/test_metadata.pydch -a [4b9bd91] Cells: Add some cells support to admin_actions extensiondch -a [fc42f76] Populate service list with availability zone and correct unit testdch -a [fa96bbf] Add 'devname' to nova.network.model.VIF classdch -a [a0c3e67] Use testrepository setuptools support.dch -a [12e38d9] Cleaning up exception handlingdch -a [6b4ad2d] Cells: Add cells API extensiondch -a [f6c205f] More HostAPI() cleanup for cells.dch -a [3824352] Renames the new os-networks extensiondch -a [327989e] Fix problem with ipv6 link-local address(es)dch -a [313279f] enable hacking.py self testsdch -a [71fecfa] Correct docstring on sizelimit middleware.dch -a [e0ac5be] Cells: Commit resize quota reservations immediatelydch -a [0668194] Move network call from compute API to the managerdch -a [bc7dc55] Make sure reboot_instance uses updated instancedch -a [f51a285] Implements getPasswordData for ec2dch -a [733712b] Expand quota loggingdch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-ccaf1cc8-4bb4-4ba5-88a6-cafb82dc2493', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-ccaf1cc8-4bb4-4ba5-88a6-cafb82dc2493', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: precise_folsom_deploy #383

2013-01-16 Thread openstack-testing-bot
Title: precise_folsom_deploy
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_deploy/383/Project:precise_folsom_deployDate of build:Wed, 16 Jan 2013 13:42:10 -0500Build duration:56 minBuild cause:Started by command lineBuilt on:masterHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesNo ChangesBuild Artifactslogs/syslog.tar.gzlogs/test-02.os.magners.qa.lexington-log.tar.gzlogs/test-03.os.magners.qa.lexington-log.tar.gzlogs/test-04.os.magners.qa.lexington-log.tar.gzlogs/test-05.os.magners.qa.lexington-log.tar.gzlogs/test-06.os.magners.qa.lexington-log.tar.gzlogs/test-07.os.magners.qa.lexington-log.tar.gzlogs/test-08.os.magners.qa.lexington-log.tar.gzlogs/test-09.os.magners.qa.lexington-log.tar.gzlogs/test-10.os.magners.qa.lexington-log.tar.gzlogs/test-11.os.magners.qa.lexington-log.tar.gzlogs/test-12.os.magners.qa.lexington-log.tar.gzConsole Output[...truncated 15571 lines...]INFO:root:Archiving logs on test-08.os.magners.qa.lexingtonINFO:paramiko.transport:Secsh channel 2 opened.INFO:root:Archiving logs on test-09.os.magners.qa.lexingtonINFO:paramiko.transport:Secsh channel 2 opened.INFO:root:Archiving logs on test-04.os.magners.qa.lexingtonWARNING:paramiko.transport:Oops, unhandled type 3ERROR:root:Coult not create tarball of logs on test-04.os.magners.qa.lexingtonINFO:root:Archiving logs on test-05.os.magners.qa.lexingtonINFO:paramiko.transport:Secsh channel 2 opened.INFO:root:Archiving logs on test-11.os.magners.qa.lexingtonINFO:paramiko.transport:Secsh channel 2 opened.INFO:root:Archiving logs on test-06.os.magners.qa.lexingtonINFO:paramiko.transport:Secsh channel 2 opened.INFO:root:Archiving logs on test-10.os.magners.qa.lexingtonINFO:paramiko.transport:Secsh channel 2 opened.INFO:root:Archiving logs on test-02.os.magners.qa.lexingtonINFO:paramiko.transport:Secsh channel 2 opened.INFO:root:Grabbing information from test-07.os.magners.qa.lexingtonERROR:root:Unable to get information from test-07.os.magners.qa.lexingtonINFO:root:Grabbing information from test-12.os.magners.qa.lexingtonERROR:root:Unable to get information from test-12.os.magners.qa.lexingtonINFO:root:Grabbing information from test-08.os.magners.qa.lexingtonERROR:root:Unable to get information from test-08.os.magners.qa.lexingtonINFO:root:Grabbing information from test-09.os.magners.qa.lexingtonERROR:root:Unable to get information from test-09.os.magners.qa.lexingtonINFO:root:Grabbing information from test-04.os.magners.qa.lexingtonERROR:root:Unable to get information from test-04.os.magners.qa.lexingtonINFO:root:Grabbing information from test-05.os.magners.qa.lexingtonINFO:root:Grabbing information from test-11.os.magners.qa.lexingtonERROR:root:Unable to get information from test-11.os.magners.qa.lexingtonINFO:root:Grabbing information from test-06.os.magners.qa.lexingtonERROR:root:Unable to get information from test-06.os.magners.qa.lexingtonINFO:root:Grabbing information from test-10.os.magners.qa.lexingtonERROR:root:Unable to get information from test-10.os.magners.qa.lexingtonINFO:root:Grabbing information from test-02.os.magners.qa.lexingtonERROR:root:Unable to get information from test-02.os.magners.qa.lexingtonINFO:paramiko.transport.sftp:[chan 1] sftp session closed.INFO:paramiko.transport.sftp:[chan 1] sftp session closed.INFO:paramiko.transport.sftp:[chan 1] sftp session closed.INFO:paramiko.transport.sftp:[chan 1] sftp session closed.Traceback (most recent call last):  File "/var/lib/jenkins/tools/jenkins-scripts/collate-test-logs.py", line 88, in connections[host]["sftp"].close()KeyError: 'sftp'+ exit 1Build step 'Execute shell' marked build as failureArchiving artifactsEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: folsom_coverage #378

2013-01-16 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/folsom_coverage/378/

--
Started by command line
Building on master
No emails were triggered.
[workspace] $ /bin/bash -x /tmp/hudson2954052334354523662.sh
+ /var/lib/jenkins/tools/openstack-ubuntu-testing/bin/inspect_environment.sh
Inspecting deployed environment.
No handlers could be found for logger keystoneclient.client
Authorization Failed: Unable to communicate with identity service: Unable to 
find the server at none. (HTTP 400)
No handlers could be found for logger keystoneclient.client
Authorization Failed: Unable to communicate with identity service: Unable to 
find the server at none. (HTTP 400)
No handlers could be found for logger keystoneclient.client
Authorization Failed: Unable to communicate with identity service: Unable to 
find the server at none. (HTTP 400)
Writing envrc
ERROR:root:Could not setup SSH connection to None
ERROR:root:Could not setup SSH connection to None
ERROR:root:Could not setup SSH connection to None
ERROR:root:Could not setup SSH connection to None
ERROR:root:Could not setup SSH connection to None
ERROR:root:Coult not create tarball of logs on None
ERROR:root:Coult not create tarball of logs on None
ERROR:root:Coult not create tarball of logs on None
ERROR:root:Coult not create tarball of logs on None
ERROR:root:Coult not create tarball of logs on None
Traceback (most recent call last):
  File /var/lib/jenkins/tools/jenkins-scripts/collate-versions.py, line 42, 
in module
output = connections[host]['output'].strip()
KeyError: 'output'
+ exit 1
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: raring_grizzly_ceilometer_trunk #50

2013-01-16 Thread openstack-testing-bot
Title: raring_grizzly_ceilometer_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_ceilometer_trunk/50/Project:raring_grizzly_ceilometer_trunkDate of build:Wed, 16 Jan 2013 16:03:01 -0500Build duration:3 min 48 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesPeg the version of Ming used in testsby doug.hellmannedittools/test-requiresedittools/test-requires-folsomConsole Output[...truncated 2116 lines...]INFO:root:Building source packageDEBUG:root:['bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']INFO:root:Executing ['bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc'] in schrootDEBUG:root:['bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']failed to open trace file: [Errno 13] Permission denied: '/var/lib/jenkins/.bzr.log'Building using working treeBuilding package in merge modeLooking for a way to retrieve the upstream tarballUsing the upstream tarball that is present in /tmp/tmpOCWZw8bzr: ERROR: An error (1) occurred running quilt: Applying patch remove-unwanted-dependencies.patchpatching file tools/test-requiresHunk #1 FAILED at 4.1 out of 1 hunk FAILED -- rejects in file tools/test-requiresPatch remove-unwanted-dependencies.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-2f63064a-b41d-49fa-93b8-d8fd76796a94', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-2f63064a-b41d-49fa-93b8-d8fd76796a94', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/ceilometer/grizzly /tmp/tmpOCWZw8/ceilometermk-build-deps -i -r -t apt-get -y /tmp/tmpOCWZw8/ceilometer/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hbzr merge lp:~openstack-ubuntu-testing/ceilometer/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201301161603~raring-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-2f63064a-b41d-49fa-93b8-d8fd76796a94', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-2f63064a-b41d-49fa-93b8-d8fd76796a94', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_quantum_trunk #205

2013-01-16 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/205/Project:raring_grizzly_quantum_trunkDate of build:Wed, 16 Jan 2013 16:07:54 -0500Build duration:3 min 33 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd migration for network bindings in NVP pluginby salv.orlandoaddquantum/db/migration/alembic_migrations/versions/1d76643bcec4_nvp_netbinding.pyFix ATTR_NOT_SPECIFIED comparison errorsby zhongyue.naheditquantum/policy.pyeditquantum/plugins/nicira/nicira_nvp_plugin/QuantumPlugin.pyeditquantum/plugins/nec/db/nec_plugin_base.pyeditquantum/db/loadbalancer/loadbalancer_db.pyeditquantum/tests/unit/db/loadbalancer/test_db_loadbalancer.pyeditquantum/tests/unit/test_db_plugin.pyeditquantum/db/db_base_plugin_v2.pyConsole Output[...truncated 3550 lines...]python setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 3575190ca17eb83b504401fb15dfb73679cdba55..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201301161608~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [4970636] Fix ATTR_NOT_SPECIFIED comparison errorsdch -a [2d4431d] Add migration for network bindings in NVP plugindch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [faa1733] Use default_notification_level when notificationdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedch -a [cfcbc7a] Port to argparse based cfgdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-02c4c806-9ff6-4047-8c10-173c4af5ef13', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-02c4c806-9ff6-4047-8c10-173c4af5ef13', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_glance_trunk #76

2013-01-16 Thread openstack-testing-bot
Title: precise_grizzly_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_glance_trunk/76/Project:precise_grizzly_glance_trunkDate of build:Wed, 16 Jan 2013 16:31:02 -0500Build duration:2 min 18 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40ChangesRelax version constraint on Webob-1.0.8by saschpeedittools/pip-requiresConsole Output[...truncated 4168 lines...]Machine Architecture: amd64Package: glancePackage-Time: 65Source-Version: 2013.1+git201301161631~precise-0ubuntu1Space: 11872Status: attemptedVersion: 2013.1+git201301161631~precise-0ubuntu1Finished at 20130116-1633Build needed 00:01:05, 11872k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'glance_2013.1+git201301161631~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'glance_2013.1+git201301161631~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/glance/grizzly /tmp/tmpCWKo1N/glancemk-build-deps -i -r -t apt-get -y /tmp/tmpCWKo1N/glance/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 26a13983b8cc3b0276b1115057585126443f0a02..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/glance/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201301161631~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [b5e60b7] Use testtools for unittest base class.dch -a [8726801] Stub out find_file... fix policy.json test issue.dch -a [cf97f6f] Add import for filesystem_store_datadir config.dch -a [8b1c02a] Update v1/images DELETE so it returns empty body.dch -a [1522be7] Relax version constraint on Webob-1.0.8debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC glance_2013.1+git201301161631~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A glance_2013.1+git201301161631~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'glance_2013.1+git201301161631~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'glance_2013.1+git201301161631~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_quantum_trunk #206

2013-01-16 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/206/Project:raring_grizzly_quantum_trunkDate of build:Wed, 16 Jan 2013 19:31:02 -0500Build duration:2 min 44 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesUpdate WebOb version to >=1.2by doug.hellmannedittools/pip-requiresConsole Output[...truncated 3553 lines...]git log -n1 --no-merges --pretty=format:%Hgit log 3575190ca17eb83b504401fb15dfb73679cdba55..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201301161931~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [cb3384f] Update WebOb version to >=1.2dch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [4970636] Fix ATTR_NOT_SPECIFIED comparison errorsdch -a [2d4431d] Add migration for network bindings in NVP plugindch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [faa1733] Use default_notification_level when notificationdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedch -a [cfcbc7a] Port to argparse based cfgdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-ae7838e9-3b0d-4cf5-956b-04434842746e', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-ae7838e9-3b0d-4cf5-956b-04434842746e', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: precise_grizzly_keystone_trunk #91

2013-01-16 Thread openstack-testing-bot
Title: precise_grizzly_keystone_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_keystone_trunk/91/Project:precise_grizzly_keystone_trunkDate of build:Thu, 17 Jan 2013 01:31:01 -0500Build duration:3 min 23 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesTest that you can undo  re-apply all migrationsby reviewedittests/test_sql_upgrade.pyConsole Output[...truncated 4232 lines...]Distribution: precise-grizzlyFail-Stage: buildHost Architecture: amd64Install-Time: 34Job: keystone_2013.1+git201301170131~precise-0ubuntu1.dscMachine Architecture: amd64Package: keystonePackage-Time: 125Source-Version: 2013.1+git201301170131~precise-0ubuntu1Space: 12932Status: attemptedVersion: 2013.1+git201301170131~precise-0ubuntu1Finished at 20130117-0134Build needed 00:02:05, 12932k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'keystone_2013.1+git201301170131~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'keystone_2013.1+git201301170131~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/keystone/grizzly /tmp/tmpknu67X/keystonemk-build-deps -i -r -t apt-get -y /tmp/tmpknu67X/keystone/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hbzr merge lp:~openstack-ubuntu-testing/keystone/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201301170131~precise-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC keystone_2013.1+git201301170131~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A keystone_2013.1+git201301170131~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'keystone_2013.1+git201301170131~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'keystone_2013.1+git201301170131~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp