[Openstack] Nova bindings for ... PHP?

2012-09-03 Thread Tom Fifield

Hi all,

I've been handed an interesting piece of PaaS software (its various 
pieces are in Java, PHP, python and bash!) and told make it work with 
OpenStack.


Noone's done any work to make nova play with PHP, have they?


Regards,


Tom

___
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] Nova bindings for ... PHP?

2012-09-03 Thread Robert Collins
On Mon, Sep 3, 2012 at 6:07 PM, Tom Fifield fifie...@unimelb.edu.au wrote:
 Hi all,

 I've been handed an interesting piece of PaaS software (its various pieces
 are in Java, PHP, python and bash!) and told make it work with OpenStack.

 Noone's done any work to make nova play with PHP, have they?

Depends on what you mean. There may not be a PHP native API, but you
could use http://aws.amazon.com/sdkforphp/

-Rob

___
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] Nova bindings for ... PHP?

2012-09-03 Thread Tom Fifield

On 03/09/12 16:11, Robert Collins wrote:

On Mon, Sep 3, 2012 at 6:07 PM, Tom Fifield fifie...@unimelb.edu.au wrote:

Hi all,

I've been handed an interesting piece of PaaS software (its various pieces
are in Java, PHP, python and bash!) and told make it work with OpenStack.

Noone's done any work to make nova play with PHP, have they?


Depends on what you mean. There may not be a PHP native API, but you
could use http://aws.amazon.com/sdkforphp/

-Rob



Ta. 'What I mean' is probably just the functionality to start and stop 
VMs. Straightforward enough that direct HTTP calls to implement that 
should be fine, but if there was something out there which already has 
the functionality that'd be lovely :)


I've had a play with the AWS SDK, and it needs a bit of work to patch in 
the endpoints, painful but doable. However, the preference is to go 
OpenStack native if possible ...


Regards,

Tom

___
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] Unable to start NOVA VOLUME

2012-09-03 Thread Trinath Somanchi
Hi-

I have Installed Nova Volume in the Openstack Essex Controller. But When I
restart the nova-volume service, I get the following error

2012-09-03 12:26:22 TRACE nova Traceback (most recent call last):
2012-09-03 12:26:22 TRACE nova   File /usr/bin/nova-volume, line 49, in
module
2012-09-03 12:26:22 TRACE nova service.wait()
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/service.py, line 413, in wait
2012-09-03 12:26:22 TRACE nova _launcher.wait()
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/service.py, line 131, in wait
2012-09-03 12:26:22 TRACE nova service.wait()
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/eventlet/greenthread.py, line 166, in
wait
2012-09-03 12:26:22 TRACE nova return self._exit_event.wait()
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/eventlet/event.py, line 116, in wait
2012-09-03 12:26:22 TRACE nova return hubs.get_hub().switch()
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/eventlet/hubs/hub.py, line 177, in switch
2012-09-03 12:26:22 TRACE nova return self.greenlet.switch()
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/eventlet/greenthread.py, line 192, in
main
2012-09-03 12:26:22 TRACE nova result = function(*args, **kwargs)
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/service.py, line 101, in run_server
2012-09-03 12:26:22 TRACE nova server.start()
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/service.py, line 162, in start
2012-09-03 12:26:22 TRACE nova self.manager.init_host()
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/volume/manager.py, line 95, in
init_host
2012-09-03 12:26:22 TRACE nova volumes =
self.db.volume_get_all_by_host(ctxt, self.host)
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/db/api.py, line 958, in
volume_get_all_by_host
2012-09-03 12:26:22 TRACE nova return
IMPL.volume_get_all_by_host(context, host)
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/db/sqlalchemy/api.py, line 102, in
wrapper
2012-09-03 12:26:22 TRACE nova return f(*args, **kwargs)
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/db/sqlalchemy/api.py, line 2402, in
volume_get_all_by_host
2012-09-03 12:26:22 TRACE nova return
_volume_get_query(context).filter_by(host=host).all()
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/sqlalchemy/orm/query.py, line 1947, in
all
2012-09-03 12:26:22 TRACE nova return list(self)
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/sqlalchemy/orm/query.py, line 2057, in
__iter__
2012-09-03 12:26:22 TRACE nova return
self._execute_and_instances(context)
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/sqlalchemy/orm/query.py, line 2072, in
_execute_and_instances
2012-09-03 12:26:22 TRACE nova result =
conn.execute(querycontext.statement, self._params)
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/sqlalchemy/engine/base.py, line 1405, in
execute
2012-09-03 12:26:22 TRACE nova params)
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/sqlalchemy/engine/base.py, line 1538, in
_execute_clauseelement
2012-09-03 12:26:22 TRACE nova compiled_sql, distilled_params
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/sqlalchemy/engine/base.py, line 1646, in
_execute_context
2012-09-03 12:26:22 TRACE nova context)
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/sqlalchemy/engine/base.py, line 1639, in
_execute_context
2012-09-03 12:26:22 TRACE nova context)
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/sqlalchemy/engine/default.py, line 330,
in do_execute
2012-09-03 12:26:22 TRACE nova cursor.execute(statement, parameters)
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/MySQLdb/cursors.py, line 174, in execute
2012-09-03 12:26:22 TRACE nova self.errorhandler(self, exc, value)
2012-09-03 12:26:22 TRACE nova   File
/usr/lib/python2.7/dist-packages/MySQLdb/connections.py, line 36, in
defaulterrorhandler
2012-09-03 12:26:22 TRACE nova raise errorclass, errorvalue
2012-09-03 12:26:22 TRACE nova OperationalError: (OperationalError) (1054,
Unknown column 'volumes.instance_id' in 'field list') 'SELECT
volumes.created_at AS volumes_created_at, volumes.updated_at AS
volumes_updated_at, volumes.deleted_at AS volumes_deleted_at,
volumes.deleted AS volumes_deleted, volumes.id AS volumes_id,
volumes.user_id AS volumes_user_id, volumes.project_id AS
volumes_project_id, volumes.snapshot_id AS volumes_snapshot_id,
volumes.host AS volumes_host, volumes.size AS volumes_size,
volumes.availability_zone AS volumes_availability_zone, volumes.instance_id
AS 

Re: [Openstack] Weird ping problem

2012-09-03 Thread Dave Pigott
Hi Vish,

Thanks for replying.

multi_host is set up on all nodes. Where are ip_forward and the snat rules 
documented?

Thanks

Dave

On 31 Aug 2012, at 16:54, Vishvananda Ishaya wrote:

 Are you running multi_host, as in nova-network on both nodes? I would check 
 ip_forward is enabled on both nodes. Nova-network creates an snat rule so 
 that Instances can get to the outside world, so you should also make sure 
 that the snat rule exists and seems to be working properly.
 
 Vish
 
 On Aug 31, 2012, at 5:43 AM, Dave Pigott dave.pig...@linaro.org wrote:
 
 Hi all,
 
 I now have a nicely stable OpenStack install running on five servers, with 
 one acting as control with all the services, and the rest just 
 compute/network nodes.
 
 The strange thing now, is that if an instance is running on the control 
 node, it can ping the outside world, but if it's running on any other node, 
 it can't ping the outside world, even on the LAN. The odd thing is, it 
 *does* successfully do a dns lookup. Additionally, it can ping other 
 instances on the private network address range.
 
 Any ideas?
 
 Thanks
 
 Dave Pigott
 Validation Engineer
 T: +44 1223 40 00 63 | M +44 7940 45 93 44
 Linaro.org │ Open source software for ARM SoCs
 Follow Linaro: Facebook | Twitter | Blog
 
 ___
 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] Weird ping problem

2012-09-03 Thread Dave Pigott
Hi Vish,

Just checked on ip_forward. It's enabled on all nodes. The snat rule: Is that 
the one about ssh and ping being allowed through? In which case I'd already 
done all that.

Thanks

Dave

On 31 Aug 2012, at 16:54, Vishvananda Ishaya wrote:

 Are you running multi_host, as in nova-network on both nodes? I would check 
 ip_forward is enabled on both nodes. Nova-network creates an snat rule so 
 that Instances can get to the outside world, so you should also make sure 
 that the snat rule exists and seems to be working properly.
 
 Vish
 
 On Aug 31, 2012, at 5:43 AM, Dave Pigott dave.pig...@linaro.org wrote:
 
 Hi all,
 
 I now have a nicely stable OpenStack install running on five servers, with 
 one acting as control with all the services, and the rest just 
 compute/network nodes.
 
 The strange thing now, is that if an instance is running on the control 
 node, it can ping the outside world, but if it's running on any other node, 
 it can't ping the outside world, even on the LAN. The odd thing is, it 
 *does* successfully do a dns lookup. Additionally, it can ping other 
 instances on the private network address range.
 
 Any ideas?
 
 Thanks
 
 Dave Pigott
 Validation Engineer
 T: +44 1223 40 00 63 | M +44 7940 45 93 44
 Linaro.org │ Open source software for ARM SoCs
 Follow Linaro: Facebook | Twitter | Blog
 
 ___
 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] boot command fails

2012-09-03 Thread Eoghan Glynn

 While trying to create a VM instance on openstack, the boot command
 (nova boot) returns the following error:
 ---
 ERROR: The server has either erred or is incapable of performing the
 requested operation. (HTTP 500)
 ---
 everything seems to be working (nova services are starting).
 
 
 I am using an Ubuntu 12.04 server (amd64) with Xen as a
 virtualization technology + the Essex version of openstack
 
 
 The used image was manually created (it is an ubuntu also). I can
 start it via xm commands.
 
 
 Any idea how to solve this problem?


The first step would be to surface more detailed information on the failure
that has occurred.

In Essex, most internal nova exceptions are mapped directly to 500 Server Error,
which effectively hides the underlying error condition from the client.

Folsom is more permissive in this regard, so that internal exceptions declared
safe for exposure are returned to the user.

So in your case, you'll need to scour the nova-api, nova-scheduler  
nova-compute
logs to get visibility on the underlying error condition.

A quick short-cut would be to note the request ID returned (use nova --debug 
boot ...)
and then grep for this in the logs mentioned above.

Cheers,
Eoghan

___
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] Nova Compute node Configuration

2012-09-03 Thread Trinath Somanchi
Hi-

With respect to the nova.conf configuration options,
http://wiki.openstack.org/NovaConfigOptions

What are the typical required configuration options for a COMPUTE NODE
which hosts the VM instances should have?

In the Installation guide, it a simple copy and paste of the configuration
options from  CONTROLLER.

Can any one guide me on understanding the same.

Thanking you..

-- 
Regards,
--
Trinath Somanchi,
+91 9866 235 130
___
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] Unable to start NOVA VOLUME

2012-09-03 Thread Eoghan Glynn


 I have Installed Nova Volume in the Openstack Essex Controller. But
 When I restart the nova-volume service, I get the following error
[...]
 2012-09-03 12:26:22 TRACE nova OperationalError: (OperationalError)
 (1054, Unknown column 'volumes.instance_id' in 'field list')


Hi Trinath,

One possibility is that you've mismatched versions of nova core
(specifically the DB schema) and nova volume.

The volumes.instance_id column exists in the Essex schema, but was
later dropped and replaced with an instance_uuid column (to reflect
the foreign key type changing from int to UUID-as-varchar).

Have you run a DB sync to up the schema version beyond Essex (i.e.
past migration index 82)?

Cheers,
Eoghan

___
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-dev] [Glance] Implementing Common Image Properties

2012-09-03 Thread Haefliger, Juerg
I would also like to have a discussion about the following:

org.openstack__1__default_fs  = ext4 : default filesystem to use, for example, 
for ephemeral storage
org.openstack__1__root_partition = 2 : Partition number of the root partition, 
used for key and file injection (0 for an unpartitioned image)
org.openstack__1__provider = com.hp : Entity that provided/built the image

I understand that Folsom is smart and can automatically determine the root 
partition so maybe root_partition is not really that useful but it would be 
simple and easy and wouldn't require to inspect the image. Similarly, with 
image inspection, the root filessystem could be determined automatically and 
ephemeral could be formatted using the same filesystem but I'm not sure if 
image inspection is supported on all platforms.

...Juerg



From: openstack-bounces+juerg.haefliger=hp@lists.launchpad.net 
[mailto:openstack-bounces+juerg.haefliger=hp@lists.launchpad.net] On Behalf 
Of Hancock, Tom (HP Cloud Services)
Sent: Tuesday, August 28, 2012 5:58 PM
To: OpenStack List; openstack@lists.launchpad.net
Subject: Re: [Openstack] [openstack-dev] [Glance] Implementing Common Image 
Properties

Yes we'd love to see these included also.
: Tom

From: openstack-bounces+tom.hancock=hp@lists.launchpad.net 
[mailto:openstack-bounces+tom.hancock=hp@lists.launchpad.net] On Behalf Of 
Gabe Westmaas
Sent: 20 August 2012 20:18
To: OpenStack List; openstack@lists.launchpad.net
Subject: Re: [Openstack] [openstack-dev] [Glance] Implementing Common Image 
Properties

It would definitely be great to see these as generally accepted properties.  In 
general, I would hope that anything that is accepted by the community 
eventually makes it into core API, and shipping with them on by default is a 
great first step.  Mostly, I'd like to see us able to turn off the 
org.openstack__1__ part of the properties, if everyone agrees they are useful 
:)

Also just to highlight one of the links in the mailing list discussions, this 
is where we pulled those properties from: 
http://wiki.openstack.org/CommonImageProperties

Gabe

From: Brian Waldon bcwal...@gmail.commailto:bcwal...@gmail.com
Reply-To: OpenStack List 
openstack-...@lists.openstack.orgmailto:openstack-...@lists.openstack.org
Date: Mon, 20 Aug 2012 14:11:20 -0400
To: openstack@lists.launchpad.netmailto:openstack@lists.launchpad.net 
openstack@lists.launchpad.netmailto:openstack@lists.launchpad.net, 
OpenStack List 
openstack-...@lists.openstack.orgmailto:openstack-...@lists.openstack.org
Subject: [openstack-dev] [Glance] Implementing Common Image Properties

We discussed a common set of image properties a while back on the mailing list 
([1] and [2]). The general idea was to define a common way to expose useful 
image properties (distro, version, architecture, packages, etc).

It doesn't appear we ever came to a hard consensus, but Rackspace has been 
publishing the following properties in their deployment:

org.openstack__1__architecture = x64
org.openstack__1__os_distro = org.ubuntu
org.openstack__1__os_version = 12.04

If the idea is to get all deployments to publish these properties, I think what 
Rackspace has implemented would be a good starting point. The question I want 
to pose to the community is this:

Does it make sense to ship a set of JSON schemas with Glance that represent 
these properties? Doing so wouldn't explicitly require all deployments to use 
them, but it would reduce the work required to publish them and help ensure 
they have a common meaning across deployments. Keep in mind that we would be 
shipping these as a part of Glance, not as a part of the Images API spec.

I personally think it would be great to provide these, and to do so in the 
Folsom release so those deployers riding major releases wouldn't be left out in 
the dark.

All comments welcome!

Brian Waldon


[1] http://markmail.org/message/5bd5zkyre57ppi3n
[2] http://markmail.org/message/soaldxs4lovd2uir
___ OpenStack-dev mailing list 
openstack-...@lists.openstack.orgmailto:openstack-...@lists.openstack.org 
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
___
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] devstack, XenServer and networking

2012-09-03 Thread Teemu Rinta-aho
Hi all,

I am running Ubuntu 12.04.1 on XenServer 6.0.2. I got devstack running without 
a localrc,
but then stack.sh defaulted to running KVM/QEMU inside the Xen VM. When I 
started to
edit localrc, I ended up with this problem:

2012-09-03 16:04:26 CRITICAL nova [req-8bf97707-11f0-42b4-bdfe-d51d7724fff2 
None None] bridge is required to create a network.

My localrc looks like this:

MYSQL_PASSWORD=secret
RABBIT_PASSWORD=secret
SERVICE_TOKEN=secret
SERVICE_PASSWORD=secret
ADMIN_PASSWORD=secret

DEST=/devstack
VIRT_DRIVER=xenserver
XENAPI_PASSWORD=secret
IMAGE_URLS=
MULTI_HOST=1
ACTIVE_TIMEOUT=45
HOST_IP_IFACE=eth0
PUBLIC_INTERFACE=eth0
NETWORK_GATEWAY=10.53.6.1
NET_MAN=FlatManager
NETINSTALLIP=dhcp
NAMESERVERS=
NETMASK=
GATEWAY=

Any ideas how I can get forward?

BR,
Teemu
___
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] Unable to start NOVA VOLUME

2012-09-03 Thread Eoghan Glynn


  I have Installed Nova Volume in the Openstack Essex Controller. But
  When I restart the nova-volume service, I get the following error
 [...]
  2012-09-03 12:26:22 TRACE nova OperationalError: (OperationalError)
  (1054, Unknown column 'volumes.instance_id' in 'field list')
 
 
 Hi Trinath,
 
 One possibility is that you've mismatched versions of nova core
 (specifically the DB schema) and nova volume.
 
 The volumes.instance_id column exists in the Essex schema, but was
 later dropped and replaced with an instance_uuid column (to reflect
 the foreign key type changing from int to UUID-as-varchar).
 
 Have you run a DB sync to up the schema version beyond Essex (i.e.
 past migration index 82)?


I should have mentioned that a quick way to check if a migration has
been applied, and if so report the current version, just run the
following SQL statement against your nova DB:

  SELECT MAX(id) FROM migrations

Cheers,
Eoghan

___
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] reservation of CPU cores?

2012-09-03 Thread Alex Glikson
Dear all,

I wonder whether there is an easy way to configure how many cores 
nova-compute is supposed to use (or alternatively refrain from using) for 
provisioning of instances on a certain host, out of the total number of 
cores on that host? E.g., if I know that there are other things running on 
the host, and I want to dedicate some of the CPU capacity to them (such as 
OpenStack services themselves). I am thinking of KVM right now, but the 
general approach is probably platform-independent. Would appreciate your 
insights.

Thanks,
Alex

P.S. trivial solution is to dedicate entire host(s) to those other 
things, and assume that nova-compute is running on hosts used *only* to 
run VMs (and that nova-compute itself does not need much CPU cycles). but 
I am looking for a more fine-grained approach.


Alex Glikson
Manager, Cloud Operating System Technologies, IBM Haifa Research Lab
http://w3.haifa.ibm.com/dept/stt/cloud_sys.html | 
https://www.research.ibm.com/haifa/dept/stt/cloud_sys.shtml 
Email: glik...@il.ibm.com | Phone: +972-4-8281085 | Mobile: 
+972-54-647 | Fax: +972-4-8296112
___
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] reservation of CPU cores?

2012-09-03 Thread John Griffith
On Mon, Sep 3, 2012 at 7:57 AM, Alex Glikson glik...@il.ibm.com wrote:

 Dear all,

 I wonder whether there is an easy way to configure how many cores
 nova-compute is supposed to use (or alternatively refrain from using) for
 provisioning of instances on a certain host, out of the total number of
 cores on that host? E.g., if I know that there are other things running on
 the host, and I want to dedicate some of the CPU capacity to them (such as
 OpenStack services themselves). I am thinking of KVM right now, but the
 general approach is probably platform-independent. Would appreciate your
 insights.

 Thanks,
 Alex

 P.S. trivial solution is to dedicate entire host(s) to those other
 things, and assume that nova-compute is running on hosts used *only* to
 run VMs (and that nova-compute itself does not need much CPU cycles). but I
 am looking for a more fine-grained approach.


 
 Alex Glikson
 Manager, Cloud Operating System Technologies, IBM Haifa Research Lab
 http://w3.haifa.ibm.com/dept/stt/cloud_sys.html |
 https://www.research.ibm.com/haifa/dept/stt/cloud_sys.shtml
 Email: glik...@il.ibm.com | Phone: +972-4-8281085 | Mobile:
 +972-54-647 | Fax: +972-4-8296112

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

 Hi Alex,

You might have a look at the max_cores setting in your nova.conf file.  I
think this will do what you have in mind.  You can find some documentation
on it here:
http://docs.openstack.org/essex/openstack-compute/admin/content/compute-options-reference.htmlhttp://docs.openstack.org/trunk/openstack-compute/admin/content/compute-options-reference.html

John
___
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] Nova bindings for ... PHP?

2012-09-03 Thread Anne Gentle
Glen Campbell is working on a PHP library here (and would welcome
reviewers I'm sure).

https://github.com/rackspacedrg/raxsdk-php/blob/master/docs/userguide/index.md

On Mon, Sep 3, 2012 at 1:07 AM, Tom Fifield fifie...@unimelb.edu.au wrote:
 Hi all,

 I've been handed an interesting piece of PaaS software (its various pieces
 are in Java, PHP, python and bash!) and told make it work with OpenStack.

 Noone's done any work to make nova play with PHP, have they?


 Regards,


 Tom

 ___
 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] Quantum vs. Nova-network in Folsom

2012-09-03 Thread Rob_Hirschfeld
Dan,

The challenge here is how to wean off one code base (Nova Net) and into another 
(Quantum).

My thinking was that we'd be able to have more shared components and possibly 
shared code.   This could ease the transition by having operators gain 
experience with Open vSwitch.  Unfortunately, it is likely to also slow the 
transition because it would be investing more development effort in Nova 
Networking.

Note: I'm sorry about the delay in replying.  I off so I could include some 
perspective from investigation.  It showed that some of the simplest Nova 
networking modes could use vSwitch but the popular ones would require 
duplicating/porting Quantum code back to Nova.  

Once of the things that I believe could help migration is getting Quantum API 
integrates into abstractions like Fog.  In fact, I've proposed a Summit topic 
about exactly that.

Thanks,

Rob

-Original Message-
From: Dan Wendlandt [mailto:d...@nicira.com] 
Sent: Monday, August 27, 2012 12:57 PM
To: Hirschfeld, Rob
Cc: openstack@lists.launchpad.net; openstack-...@lists.openstack.org
Subject: Re: [Openstack] Quantum vs. Nova-network in Folsom

On Sun, Aug 26, 2012 at 12:39 PM,  rob_hirschf...@dell.com wrote:
 Stackers,

 I think this is a reasonable approach and appreciate the clarification of 
 use-cases.

 We've been discussing using Open vSwitch as the basis for non-Quantum Nova 
 Networking deployments in Folsom.  While not Quantum, it feels like we're 
 bringing Nova Networking a step closer to some of the core technologies that 
 Quantum uses.

 I'm interested in hearing what other's in the community think about this 
 approach.

One of the main reasons we introduced Quantum was to support alternative 
switching technologies like Open vSwitch.  I'd like to hear more about your 
thoughts, but at first glance, I'm not sure there's a good way to leverage Open 
vSwitch in a meaningful way with existing nova-network managers, since those 
network managers are so tightly tied to using the basic linux bridge + vlans.

Dan


 Rob

 -Original Message-
 From: openstack-bounces+rob_hirschfeld=dell@lists.launchpad.net 
 [mailto:openstack-bounces+rob_hirschfeld=dell@lists.launchpad.net] 
 On Behalf Of Dan Wendlandt
 Sent: Friday, August 24, 2012 5:39 PM
 To: openstack@lists.launchpad.net; OpenStack Development Mailing List
 Subject: [Openstack] Quantum vs. Nova-network in Folsom

 tl;dr  both Quantum and nova-network will be core and fully supported in 
 Folsom.

 Hi folks,

 Thierry, Vish and I have been spending some talking about OpenStack 
 networking in Folsom, and in particular the availability of nova-network now 
 that Quantum is a core project.  We wanted to share our current thinking with 
 the community to avoid confusion.

 With a project like OpenStack, there's a fundamental trade-off between the 
 rate of introducing new capabilities and the desire for stability and 
 backward compatibility.  We agreed that OpenStack is a point in its growth 
 cycle where the cost of disruptive changes is high.  As a result, we've 
 decided that even with Quantum being core in Folsom, we will also continue to 
 support nova-network as it currently exists in Folsom.  There is, of couse, 
 overhead to this approach, but we think it is worth it.

 With this in mind, a key question becomes: how do we direct users to 
 the networking option that is right for them.  We have the following
 guidelines:

 1) For users who require only very basic networking (e.g., nova-network Flat, 
 FlatDHCP) there's little difference between Quantum and nova-network is such 
 basic use cases, so using nova's built-in networking for these basic use 
 cases makes sense.

 2) There are many use cases (e.g., tenant API for defined topologies and 
 addresses) and advanced network technologies (e.g., tunneling rather than 
 VLANs) that Quantum enables that are simply not possible with nova-network, 
 so if these advanced capabilities are important to someone deploying 
 OpenStack, they clearly need to use Quantum.

 3) There are a few things that are possible in nova-network, but not in 
 Quantum.  Multi-host is the most significant one, but there are bound to be 
 other gaps, some of which we will uncover only when people try their 
 particular use case with Quantum.  For these, users will have to use 
 nova-network, with the gaps being covered in Quantum during Grizzly.

 As a result, we plan to structure the docs so that you can do a basic 
 functionality Nova setup with flat networking without requiring Quantum.  For 
 anything beyond that, we will have an advanced networking section, which 
 describes the different advanced use of OpenStack networking with Quantum, 
 and also highlight reasons that a user may still want to use nova-networking 
 over Quantum.

 Moving beyond Folsom, we expect to fully freeze the addition of new 
 functionality to nova-network, and likely deprecate at least some portions of 
 the existing nova-network 

[Openstack] Running for Quantum PTL

2012-09-03 Thread Dan Wendlandt
Just sent this to the openstack-dev mailing this the first time.  Now
forwarding to openstack@lists.launchpad.net

dan


-- Forwarded message --
From: Dan Wendlandt d...@nicira.com
Date: Sun, Sep 2, 2012 at 2:10 PM
Subject: Running for Quantum PTL
To: OpenStack Development Mailing List openstack-...@lists.openstack.org


Hi folks,

I'm really excited about what we've done with Quantum so far and I am
even more pumped about where we can take things in the future.  As a
result, no surprise, I'm running to continue on as the Quantum PTL.

I've been a leader of the Quantum project since it was started during
the Diablo release, and I was the PTL elected when we became an
official incubated project in Essex.  If anyone has concerns with the
way the project has been running so far, I'd love to hear from you and
discuss that feedback.

So far, my main goals as PTL have been:
- Moving project toward core release in Folsom with a core L2/L3
networking feature set.
- Acting as a core developer and reviewing, contributing features and
reviewing change-sets.
- Growing the number of people contributing to to the project from a
development, testing, and documentation perspective.
- Helping people in the OpenStack community understand what Quantum is
and why it can be useful, though activity on the mailing list and
presenting at conferences. .
- Making sure existing contributions are able to achieve their and
their company's goals within Quantum and OpenStack as a whole.
- Interfacing with those outside the community (vendors, media, etc.)
to answer their questions on Quantum and help promote OpenStack in
general.

Moving forward in Grizzly, here are some thoughts of what I'm looking
to have the team focus on during Grizzly:

- continue to grow the number of people regularly contributing high
quality community code  reviews to the Quantum project
- improve system test coverage for core quantum feature set
- Improve documentation, both admin and developer.
- identify and fix transition hurdles of people looking to move from
nova-network to quantum
- improve HA/Scale of some existing sub-systems, including DHCP/L3
(this includes a mechanism similar to nova-network multi_host flag)
- add additional core quantum plugins from vendors new to the community.
- explore internal architectures and external APIs for higher-level
services.  This will likely focus on L3/L4 packet filtering and
Load-balancing, based on initial community input.

Note: obviously we will tackle other issues in Grizzly as well, so
don't worry if something you're looking to do is not on this list.
We'll have the chance to discuss additional priorities in the time
running up to the summit and at the summit itself.

Thanks,

Dan


--
~~~
Dan Wendlandt
Nicira, Inc: www.nicira.com
twitter: danwendlandt
~~~


-- 
~~~
Dan Wendlandt
Nicira, Inc: www.nicira.com
twitter: danwendlandt
~~~

___
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] Fwd: [openstack-dev] Running for Quantum PTL

2012-09-03 Thread Duncan McGreggor
-- Forwarded message --
From: Duncan McGreggor dun...@dreamhost.com
Date: Mon, Sep 3, 2012 at 12:40 AM
Subject: Re: [openstack-dev] Running for Quantum PTL
To: OpenStack Development Mailing List openstack-...@lists.openstack.org


On Sun, Sep 2, 2012 at 2:10 PM, Dan Wendlandt d...@nicira.com wrote:
 Hi folks,

 I'm really excited about what we've done with Quantum so far and I am
 even more pumped about where we can take things in the future.  As a
 result, no surprise, I'm running to continue on as the Quantum PTL.

 I've been a leader of the Quantum project since it was started during
 the Diablo release, and I was the PTL elected when we became an
 official incubated project in Essex.  If anyone has concerns with the
 way the project has been running so far, I'd love to hear from you and
 discuss that feedback.

 So far, my main goals as PTL have been:
 - Moving project toward core release in Folsom with a core L2/L3
 networking feature set.
 - Acting as a core developer and reviewing, contributing features and
 reviewing change-sets.
 - Growing the number of people contributing to to the project from a
 development, testing, and documentation perspective.
 - Helping people in the OpenStack community understand what Quantum is
 and why it can be useful, though activity on the mailing list and
 presenting at conferences. .
 - Making sure existing contributions are able to achieve their and
 their company's goals within Quantum and OpenStack as a whole.
 - Interfacing with those outside the community (vendors, media, etc.)
 to answer their questions on Quantum and help promote OpenStack in
 general.

 Moving forward in Grizzly, here are some thoughts of what I'm looking
 to have the team focus on during Grizzly:

 - continue to grow the number of people regularly contributing high
 quality community code  reviews to the Quantum project
 - improve system test coverage for core quantum feature set
 - Improve documentation, both admin and developer.
 - identify and fix transition hurdles of people looking to move from
 nova-network to quantum
 - improve HA/Scale of some existing sub-systems, including DHCP/L3
 (this includes a mechanism similar to nova-network multi_host flag)
 - add additional core quantum plugins from vendors new to the community.
 - explore internal architectures and external APIs for higher-level
 services.  This will likely focus on L3/L4 packet filtering and
 Load-balancing, based on initial community input.

 Note: obviously we will tackle other issues in Grizzly as well, so
 don't worry if something you're looking to do is not on this list.
 We'll have the chance to discuss additional priorities in the time
 running up to the summit and at the summit itself.

 Thanks,

 Dan

As an election official, I confirm that you are eligible to this position.

d

___
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] Nova bindings for ... PHP?

2012-09-03 Thread Ryan Lane
On Mon, Sep 3, 2012 at 8:53 AM, Anne Gentle a...@openstack.org wrote:
 Glen Campbell is working on a PHP library here (and would welcome
 reviewers I'm sure).

 https://github.com/rackspacedrg/raxsdk-php/blob/master/docs/userguide/index.md


There's also a fairly Wikimedia-specific and incomplete implementation:

https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/extensions/OpenStackManager.git;a=tree;h=refs/heads/master;hb=master

http://www.mediawiki.org/wiki/Extension:OpenStackManager

- Ryan

___
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] Nova bindings for ... PHP?

2012-09-03 Thread Everett Toews
For the Java part you might want to consider jclouds. The question of how
to use jclouds with OpenStack came up on their mailing list a little while
ago so I wrote up a post on how to do it at

http://blog.phymata.com/2012/09/04/jclouds-and-openstack/


Cheers,
Everett

On 9/3/12 1:07 AM, Tom Fifield fifie...@unimelb.edu.au wrote:

Hi all,

I've been handed an interesting piece of PaaS software (its various
pieces are in Java, PHP, python and bash!) and told make it work with
OpenStack.

Noone's done any work to make nova play with PHP, have they?


Regards,


Tom

___
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] reservation of CPU cores?

2012-09-03 Thread Hunter Nield
We ran into the same issue and ended up having to patch in support for per
host reserved cores. We've not had a chance to submit a patch for it.

I'm wondering if this addition to Folsom will provide similar functionality
- https://blueprints.launchpad.net/nova/+spec/libvirt-xml-cpu-model. I need
to look at the blueprint and commits in further detail.

Hunter

On Mon, Sep 3, 2012 at 11:02 PM, John Griffith
john.griff...@solidfire.comwrote:



 On Mon, Sep 3, 2012 at 7:57 AM, Alex Glikson glik...@il.ibm.com wrote:

 Dear all,

 I wonder whether there is an easy way to configure how many cores
 nova-compute is supposed to use (or alternatively refrain from using) for
 provisioning of instances on a certain host, out of the total number of
 cores on that host? E.g., if I know that there are other things running on
 the host, and I want to dedicate some of the CPU capacity to them (such as
 OpenStack services themselves). I am thinking of KVM right now, but the
 general approach is probably platform-independent. Would appreciate your
 insights.

 Thanks,
 Alex

 P.S. trivial solution is to dedicate entire host(s) to those other
 things, and assume that nova-compute is running on hosts used *only* to
 run VMs (and that nova-compute itself does not need much CPU cycles). but I
 am looking for a more fine-grained approach.


 
 Alex Glikson
 Manager, Cloud Operating System Technologies, IBM Haifa Research Lab
 http://w3.haifa.ibm.com/dept/stt/cloud_sys.html |
 https://www.research.ibm.com/haifa/dept/stt/cloud_sys.shtml
 Email: glik...@il.ibm.com | Phone: +972-4-8281085 | Mobile:
 +972-54-647 | Fax: +972-4-8296112

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

 Hi Alex,

 You might have a look at the max_cores setting in your nova.conf file.  I
 think this will do what you have in mind.  You can find some documentation
 on it here:

 http://docs.openstack.org/essex/openstack-compute/admin/content/compute-options-reference.htmlhttp://docs.openstack.org/trunk/openstack-compute/admin/content/compute-options-reference.html

 John

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




-- 
Senior Director of Development
Morphlabs | +65 8322 5946 | Skype: hunter_nield | www.morphlabs.com
___
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] Glance PTL Candidacy

2012-09-03 Thread Brian Waldon
Good news, everyone!

I'd like to officially announce my candidacy for the Project Technical Lead of 
Glance for the Grizzly release cycle.

Since I am the current Glance PTL, I have had a chance to figure out what being 
a PTL means for me:
- provide general direction for the project
- facilitate discussion around important topics
- be the subject-matter expert of the project
- be available to the community
- work with other PTLs to help provide a cohesive OpenStack story
- provide feedback on blueprints and code reviews

On top of all that, I've focused on designing and implementing a new OpenStack 
Images API and completely rewriting the python Glance client.

During Grizzly, I plan to continue work on the v2 Images API, but mostly focus 
on internal code refactoring.

Thanks!
Brian Waldon



___
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_folsom_glance_trunk #142

2012-09-03 Thread openstack-testing-bot
Title: precise_folsom_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_glance_trunk/142/Project:precise_folsom_glance_trunkDate of build:Mon, 03 Sep 2012 23:00:32 -0400Build duration:2 min 8 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAlways call stop_servers() after having started them in testsby vuntzeditglance/tests/functional/test_bin_glance.pyeditglance/tests/functional/v2/test_schemas.pyeditglance/tests/functional/test_cache_middleware.pyFix LP bug #1044462 cfg items need secret=Trueby tom.hancockeditglance/registry/__init__.pyeditglance/db/__init__.pyConsole Output[...truncated 2146 lines...]dch -a [a5411d2] Filter out deleted image properties in v2 apidch -a [1f3ae60] Limit simple db image_create to known image attrsdch -a [97915a7] Raise Duplicate on image_create with duplicate iddch -a [af6b8a6] Expand image_create db testdch -a [a0288ab] Add test for nonexistent image in db layerdch -a [abcff5b] Catch pruner exception when no images are cacheddch -a [80c099e] Adds notifications for images v2dch -a [b719704] Move authtoken config out of pastedch -a [991e4bd] Tweak doc page titlesdch -a [17ae9b2] Drop architecture doc pagedch -a [cfa2915] Add link to notifications docs on indexdch -a [34d6335] Remove repeated image-sharing docsdch -a [7a0d2eb] Tidy up API docsdch -a [3b7b43f] Log level for BaseContextMiddleware should be warndch -a [e97fa4b] Raise Forbidden exception in image_getdch -a [d912a5d] Activation notification for glance v1 apidch -a [f8467bf] HTTPBadRequest in v2 on malformed JSON request body.dch -a [dcca6cd] PEP8 fix in conf.pydch -a [dc6ef98] Typo fix in glance: existant => existentdch -a [87033d0] Rename glance api docs to something more concisedch -a [37dc071] Drop deprecated client docsdch -a [087046b] Clean up policies docs pagedch -a [11a9a48] Remove autodoc and useless index docsdch -a [309a441] Add nosehtmloutput as a test dependency.dch -a [37d1c1d] Remove partial image data when filesystem is fulldch -a [c068c7f] Add 'bytes' to image size rejection messagedch -a [5d206b4] Correctly re-raise exception on bad v1 checksumdch -a [07b72c3] Fixes issue with non string header values in glance clientdebcommitbzr 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-c0b219fd-678a-4b0d-9270-cab8f7405e4d', '-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.getcwdu(), 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-c0b219fd-678a-4b0d-9270-cab8f7405e4d', '-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_folsom_glance_trunk #138

2012-09-03 Thread openstack-testing-bot
Title: precise_folsom_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_glance_trunk/138/Project:precise_folsom_glance_trunkDate of build:Sat, 01 Sep 2012 04:30:32 -0400Build duration:3 min 0 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesLog level for BaseContextMiddleware should be warnby iccha.sethieditglance/api/middleware/context.pyConsole Output[...truncated 2108 lines...]git log -n1 --no-merges --pretty=format:%Hgit log eb8c956753fb7b3c6d016a79d4a9297075f4229d..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/glance/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201209010430~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201209010430~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [a5411d2] Filter out deleted image properties in v2 apidch -a [80c099e] Adds notifications for images v2dch -a [b719704] Move authtoken config out of pastedch -a [991e4bd] Tweak doc page titlesdch -a [17ae9b2] Drop architecture doc pagedch -a [cfa2915] Add link to notifications docs on indexdch -a [34d6335] Remove repeated image-sharing docsdch -a [7a0d2eb] Tidy up API docsdch -a [3b7b43f] Log level for BaseContextMiddleware should be warndch -a [e97fa4b] Raise Forbidden exception in image_getdch -a [d912a5d] Activation notification for glance v1 apidch -a [f8467bf] HTTPBadRequest in v2 on malformed JSON request body.dch -a [dcca6cd] PEP8 fix in conf.pydch -a [dc6ef98] Typo fix in glance: existant => existentdch -a [87033d0] Rename glance api docs to something more concisedch -a [37dc071] Drop deprecated client docsdch -a [087046b] Clean up policies docs pagedch -a [11a9a48] Remove autodoc and useless index docsdch -a [309a441] Add nosehtmloutput as a test dependency.dch -a [37d1c1d] Remove partial image data when filesystem is fulldch -a [c068c7f] Add 'bytes' to image size rejection messagedch -a [5d206b4] Correctly re-raise exception on bad v1 checksumdch -a [07b72c3] Fixes issue with non string header values in glance clientdebcommitbzr 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-306ee8d5-f026-4a60-8c16-4f644c4a5d06', '-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.getcwdu(), 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-306ee8d5-f026-4a60-8c16-4f644c4a5d06', '-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_python-quantumclient_trunk #30

2012-09-03 Thread openstack-testing-bot
Title: precise_folsom_python-quantumclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_python-quantumclient_trunk/30/Project:precise_folsom_python-quantumclient_trunkDate of build:Sat, 01 Sep 2012 09:30:33 -0400Build duration:1 min 53 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40Changes*-list command shows only limited fields normally.by gongysheditquantumclient/shell.pyeditquantumclient/v2_0/client.pyeditquantumclient/tests/unit/test_cli20_network.pyedittools/pip-requireseditquantumclient/tests/unit/test_cli20.pyeditquantumclient/quantum/v2_0/__init__.pyeditquantum_test.sheditquantumclient/quantum/v2_0/subnet.pyeditquantumclient/quantum/v2_0/network.pyedittools/test-requireseditquantumclient/quantum/v2_0/port.pyConsole Output[...truncated 1590 lines...]Distribution: precise-folsomFail-Stage: buildInstall-Time: 25Job: python-quantumclient_2.0.15+git201209010930~precise-0ubuntu1.dscPackage: python-quantumclientPackage-Time: 37Source-Version: 1:2.0.15+git201209010930~precise-0ubuntu1Space: 1064Status: attemptedVersion: 1:2.0.15+git201209010930~precise-0ubuntu1Finished at 20120901-0932Build needed 00:00:37, 1064k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'python-quantumclient_2.0.15+git201209010930~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'python-quantumclient_2.0.15+git201209010930~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-quantumclient/precise-folsom-proposed /tmp/tmp9nY3GJ/python-quantumclientmk-build-deps -i -r -t apt-get -y /tmp/tmp9nY3GJ/python-quantumclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 5e2f6fd375ddfab0898d62ba88ce7a7951d6f17e..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/python-quantumclient --forcedch -b -D precise --newversion 1:2.0.15+git201209010930~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 1:2.0.15+git201209010930~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [62f5089] *-list command shows only limited fields normally.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-quantumclient_2.0.15+git201209010930~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A python-quantumclient_2.0.15+git201209010930~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-folsom', '-n', '-A', 'python-quantumclient_2.0.15+git201209010930~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.getcwdu(), 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-folsom', '-n', '-A', 'python-quantumclient_2.0.15+git201209010930~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: quantal_folsom_swift_trunk #64

2012-09-03 Thread openstack-testing-bot
Title: quantal_folsom_swift_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_swift_trunk/64/Project:quantal_folsom_swift_trunkDate of build:Thu, 30 Aug 2012 16:00:33 -0400Build duration:3 min 44 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40ChangesUpating proxy-server StatsD logging.by darrelleditswift/common/utils.pyeditdoc/source/admin_guide.rsteditetc/container-server.conf-sampleeditetc/account-server.conf-sampleeditetc/object-server.conf-sampleeditswift/common/middleware/staticweb.pyeditetc/proxy-server.conf-sampleeditswift/proxy/controllers/account.pyeditswift/common/middleware/proxy_logging.pyeditswift/proxy/controllers/container.pyeditswift/proxy/controllers/base.pyeditswift/proxy/server.pyeditswift/proxy/controllers/obj.pyedittest/unit/common/middleware/test_proxy_logging.pyeditdoc/source/development_saio.rstedittest/unit/proxy/test_server.pyeditetc/object-expirer.conf-sampleConsole Output[...truncated 3478 lines...]Package-Time: 103Source-Version: 1.6.1+git201208301600~quantal-0ubuntu1Space: 12664Status: attemptedVersion: 1.6.1+git201208301600~quantal-0ubuntu1Finished at 20120830-1604Build needed 00:01:43, 12664k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'quantal-folsom', '-n', '-A', 'swift_1.6.1+git201208301600~quantal-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'quantal-folsom', '-n', '-A', 'swift_1.6.1+git201208301600~quantal-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/swift/quantal-folsom-proposed /tmp/tmpzUt3gr/swiftmk-build-deps -i -r -t apt-get -y /tmp/tmpzUt3gr/swift/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log eb5f89ac25fb3edf5d6f0dcc238d4dea4cbbc7c8..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/swift/quantal-folsom --forcedch -b -D quantal --newversion 1.6.1+git201208301600~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 1.6.1+git201208301600~quantal-0ubuntu1 Automated Ubuntu testing build:dch -a [4a2ae2b] Upating proxy-server StatsD logging.dch -a [c509ac2] Added ability to disable fallocatedch -a [2a38a04] Remove the gettext wrapper of server_type.dch -a [9290471] x-newest cleanup code with test. Fixes bug 1037337dch -a [9bda92d] Misc. swift-bench improvements.dch -a [e1ff51c] Do not use pickle for serialization in memcache, but JSONdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC swift_1.6.1+git201208301600~quantal-0ubuntu1_source.changessbuild -d quantal-folsom -n -A swift_1.6.1+git201208301600~quantal-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', 'quantal-folsom', '-n', '-A', 'swift_1.6.1+git201208301600~quantal-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.getcwdu(), 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', 'quantal-folsom', '-n', '-A', 'swift_1.6.1+git201208301600~quantal-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: precise_folsom_glance_trunk #140

2012-09-03 Thread openstack-testing-bot
Title: precise_folsom_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_glance_trunk/140/Project:precise_folsom_glance_trunkDate of build:Mon, 03 Sep 2012 17:30:33 -0400Build duration:2 min 2 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesDocument how to deploy cachemanage middlewareby bcwaldoneditdoc/source/configuring.rstDelete image from backend store on delete.by bcwaldoneditglance/tests/unit/v2/test_images_resource.pyeditglance/api/v2/images.pyeditglance/tests/unit/utils.pyeditglance/store/__init__.pyeditglance/api/v2/image_data.pyeditglance/api/v1/images.pyeditglance/tests/unit/test_http_store.pyeditglance/api/v2/__init__.pyUse PATCH instead of PUT for v2 image modificationby bcwaldoneditglance/api/v2/router.pyeditglance/tests/functional/v2/test_images.pyeditglance/tests/unit/v2/test_images_resource.pyeditglance/api/v2/images.pyDrop glance client + keystone config docsby bcwaldoneditdoc/source/authentication.rstConsole Output[...truncated 2124 lines...]dch -a [48bb44b] Drop glance client + keystone config docsdch -a [9c94a72] Use PATCH instead of PUT for v2 image modificationdch -a [d43666b] Delete image from backend store on delete.dch -a [e7d6210] Document how to deploy cachemanage middlewaredch -a [9736d29] Clean up comments in paste filesdch -a [a5411d2] Filter out deleted image properties in v2 apidch -a [80c099e] Adds notifications for images v2dch -a [b719704] Move authtoken config out of pastedch -a [991e4bd] Tweak doc page titlesdch -a [17ae9b2] Drop architecture doc pagedch -a [cfa2915] Add link to notifications docs on indexdch -a [34d6335] Remove repeated image-sharing docsdch -a [7a0d2eb] Tidy up API docsdch -a [3b7b43f] Log level for BaseContextMiddleware should be warndch -a [e97fa4b] Raise Forbidden exception in image_getdch -a [d912a5d] Activation notification for glance v1 apidch -a [f8467bf] HTTPBadRequest in v2 on malformed JSON request body.dch -a [dcca6cd] PEP8 fix in conf.pydch -a [dc6ef98] Typo fix in glance: existant => existentdch -a [87033d0] Rename glance api docs to something more concisedch -a [37dc071] Drop deprecated client docsdch -a [087046b] Clean up policies docs pagedch -a [11a9a48] Remove autodoc and useless index docsdch -a [309a441] Add nosehtmloutput as a test dependency.dch -a [37d1c1d] Remove partial image data when filesystem is fulldch -a [c068c7f] Add 'bytes' to image size rejection messagedch -a [5d206b4] Correctly re-raise exception on bad v1 checksumdch -a [07b72c3] Fixes issue with non string header values in glance clientdebcommitbzr 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-73b8080f-ae9c-4c8f-8a45-a457d88664ea', '-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.getcwdu(), 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-73b8080f-ae9c-4c8f-8a45-a457d88664ea', '-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: quantal_folsom_swift_trunk #65

2012-09-03 Thread openstack-testing-bot
Title: quantal_folsom_swift_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_swift_trunk/65/Project:quantal_folsom_swift_trunkDate of build:Fri, 31 Aug 2012 18:00:58 -0400Build duration:2 min 57 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20Changesbumped version to 1.7.0 to reflect current dev effortby meeditswift/__init__.pyConsole Output[...truncated 3481 lines...]Source-Version: 1.7.0+git201208311801~quantal-0ubuntu1Space: 12664Status: attemptedVersion: 1.7.0+git201208311801~quantal-0ubuntu1Finished at 20120831-1803Build needed 00:01:23, 12664k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'quantal-folsom', '-n', '-A', 'swift_1.7.0+git201208311801~quantal-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'quantal-folsom', '-n', '-A', 'swift_1.7.0+git201208311801~quantal-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/swift/quantal-folsom-proposed /tmp/tmpVNhm1K/swiftmk-build-deps -i -r -t apt-get -y /tmp/tmpVNhm1K/swift/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log eb5f89ac25fb3edf5d6f0dcc238d4dea4cbbc7c8..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/swift/quantal-folsom --forcedch -b -D quantal --newversion 1.7.0+git201208311801~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 1.7.0+git201208311801~quantal-0ubuntu1 Automated Ubuntu testing build:dch -a [54a2907] bumped version to 1.7.0 to reflect current dev effortdch -a [4a2ae2b] Upating proxy-server StatsD logging.dch -a [c509ac2] Added ability to disable fallocatedch -a [2a38a04] Remove the gettext wrapper of server_type.dch -a [9290471] x-newest cleanup code with test. Fixes bug 1037337dch -a [9bda92d] Misc. swift-bench improvements.dch -a [e1ff51c] Do not use pickle for serialization in memcache, but JSONdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC swift_1.7.0+git201208311801~quantal-0ubuntu1_source.changessbuild -d quantal-folsom -n -A swift_1.7.0+git201208311801~quantal-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', 'quantal-folsom', '-n', '-A', 'swift_1.7.0+git201208311801~quantal-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.getcwdu(), 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', 'quantal-folsom', '-n', '-A', 'swift_1.7.0+git201208311801~quantal-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 Failure: quantal_folsom_quantum_trunk #164

2012-09-03 Thread openstack-testing-bot
Title: quantal_folsom_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_quantum_trunk/164/Project:quantal_folsom_quantum_trunkDate of build:Fri, 31 Aug 2012 10:30:34 -0400Build duration:5 min 41 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80Changesprevent invalid deletion of ports using by L3 devicesby daneditquantum/plugins/linuxbridge/lb_quantum_plugin.pyeditquantum/tests/unit/test_l3_plugin.pyeditquantum/plugins/openvswitch/ovs_quantum_plugin.pyeditquantum/extensions/l3.pyeditquantum/db/l3_db.pyeditquantum/tests/unit/test_db_plugin.pyConsole Output[...truncated 4649 lines...]Install-Time: 38Job: quantum_2012.2+git201208311030~quantal-0ubuntu1.dscPackage: quantumPackage-Time: 239Source-Version: 2012.2+git201208311030~quantal-0ubuntu1Space: 23860Status: attemptedVersion: 2012.2+git201208311030~quantal-0ubuntu1Finished at 20120831-1036Build needed 00:03:59, 23860k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'quantal-folsom', '-n', '-A', 'quantum_2012.2+git201208311030~quantal-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'quantal-folsom', '-n', '-A', 'quantum_2012.2+git201208311030~quantal-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix quantum-2012.2-201208311030/git archive master --format tar --prefix quantum-2012.2-201208311030/git log -n1 --no-merges --pretty=format:%Hgit log 276f26a45d0c2a1b9826f7f7e7d9b7ae9de2c507..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/quantum/quantal-folsom-proposed quantumbzr merge lp:~openstack-ubuntu-testing/quantum/quantal-folsom --forcedch -b -D quantal --newversion 2012.2+git201208311030~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 2012.2+git201208311030~quantal-0ubuntu1 Automated Ubuntu testing build:dch -a [8fb4e6e] prevent invalid deletion of ports using by L3 devicesdch -a [c099e06] Implementation of 2nd phase of provider extension for openswitchdebcommitbzr builddeb -S -- -sa -us -ucmk-build-deps -i -r -t apt-get -y /tmp/tmppATRCn/quantum/debian/controlbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC quantum_2012.2+git201208311030~quantal-0ubuntu1_source.changessbuild -d quantal-folsom -n -A quantum_2012.2+git201208311030~quantal-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', 'quantal-folsom', '-n', '-A', 'quantum_2012.2+git201208311030~quantal-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.getcwdu(), 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', 'quantal-folsom', '-n', '-A', 'quantum_2012.2+git201208311030~quantal-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: precise_folsom_glance_trunk #137

2012-09-03 Thread openstack-testing-bot
Title: precise_folsom_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_glance_trunk/137/Project:precise_folsom_glance_trunkDate of build:Sat, 01 Sep 2012 03:30:32 -0400Build duration:2 min 2 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdds notifications for images v2by iccha.sethieditglance/tests/unit/v2/test_image_data_resource.pyeditglance/api/v2/image_data.pyeditglance/tests/unit/v2/test_images_resource.pyeditglance/tests/unit/utils.pyeditglance/api/v2/images.pyConsole Output[...truncated 2106 lines...]python setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log eb8c956753fb7b3c6d016a79d4a9297075f4229d..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/glance/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201209010330~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201209010330~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [a5411d2] Filter out deleted image properties in v2 apidch -a [80c099e] Adds notifications for images v2dch -a [b719704] Move authtoken config out of pastedch -a [991e4bd] Tweak doc page titlesdch -a [17ae9b2] Drop architecture doc pagedch -a [cfa2915] Add link to notifications docs on indexdch -a [34d6335] Remove repeated image-sharing docsdch -a [7a0d2eb] Tidy up API docsdch -a [e97fa4b] Raise Forbidden exception in image_getdch -a [d912a5d] Activation notification for glance v1 apidch -a [f8467bf] HTTPBadRequest in v2 on malformed JSON request body.dch -a [dcca6cd] PEP8 fix in conf.pydch -a [dc6ef98] Typo fix in glance: existant => existentdch -a [87033d0] Rename glance api docs to something more concisedch -a [37dc071] Drop deprecated client docsdch -a [087046b] Clean up policies docs pagedch -a [11a9a48] Remove autodoc and useless index docsdch -a [309a441] Add nosehtmloutput as a test dependency.dch -a [37d1c1d] Remove partial image data when filesystem is fulldch -a [c068c7f] Add 'bytes' to image size rejection messagedch -a [5d206b4] Correctly re-raise exception on bad v1 checksumdch -a [07b72c3] Fixes issue with non string header values in glance clientdebcommitbzr 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-aa7e790f-4fc8-4309-b5ce-4027a84f6644', '-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.getcwdu(), 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-aa7e790f-4fc8-4309-b5ce-4027a84f6644', '-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_folsom_glance_trunk #136

2012-09-03 Thread openstack-testing-bot
Title: precise_folsom_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_glance_trunk/136/Project:precise_folsom_glance_trunkDate of build:Fri, 31 Aug 2012 16:00:32 -0400Build duration:2 min 28 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFilter out deleted image properties in v2 apiby mark.washenbergereditglance/tests/unit/v2/test_images_resource.pyeditglance/api/v2/images.pyeditglance/tests/functional/db/__init__.pyeditglance/db/simple/api.pyConsole Output[...truncated 2103 lines...]mk-build-deps -i -r -t apt-get -y /tmp/tmpWHQdZe/glance/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log eb8c956753fb7b3c6d016a79d4a9297075f4229d..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/glance/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208311601~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208311601~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [a5411d2] Filter out deleted image properties in v2 apidch -a [b719704] Move authtoken config out of pastedch -a [991e4bd] Tweak doc page titlesdch -a [17ae9b2] Drop architecture doc pagedch -a [cfa2915] Add link to notifications docs on indexdch -a [34d6335] Remove repeated image-sharing docsdch -a [7a0d2eb] Tidy up API docsdch -a [e97fa4b] Raise Forbidden exception in image_getdch -a [d912a5d] Activation notification for glance v1 apidch -a [f8467bf] HTTPBadRequest in v2 on malformed JSON request body.dch -a [dcca6cd] PEP8 fix in conf.pydch -a [dc6ef98] Typo fix in glance: existant => existentdch -a [87033d0] Rename glance api docs to something more concisedch -a [37dc071] Drop deprecated client docsdch -a [087046b] Clean up policies docs pagedch -a [11a9a48] Remove autodoc and useless index docsdch -a [309a441] Add nosehtmloutput as a test dependency.dch -a [37d1c1d] Remove partial image data when filesystem is fulldch -a [c068c7f] Add 'bytes' to image size rejection messagedch -a [5d206b4] Correctly re-raise exception on bad v1 checksumdch -a [07b72c3] Fixes issue with non string header values in glance clientdebcommitbzr 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-3c7316b2-a827-4f47-b9b1-50a97b5b7791', '-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.getcwdu(), 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-3c7316b2-a827-4f47-b9b1-50a97b5b7791', '-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_folsom_glance_trunk #139

2012-09-03 Thread openstack-testing-bot
Title: precise_folsom_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_glance_trunk/139/Project:precise_folsom_glance_trunkDate of build:Mon, 03 Sep 2012 17:00:33 -0400Build duration:2 min 4 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesClean up comments in paste filesby bcwaldoneditetc/glance-api-paste.inieditetc/glance-registry-paste.inieditetc/glance-registry.confeditetc/glance-api.confConsole Output[...truncated 2112 lines...]git log eb8c956753fb7b3c6d016a79d4a9297075f4229d..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/glance/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201209031700~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201209031700~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [9736d29] Clean up comments in paste filesdch -a [a5411d2] Filter out deleted image properties in v2 apidch -a [80c099e] Adds notifications for images v2dch -a [b719704] Move authtoken config out of pastedch -a [991e4bd] Tweak doc page titlesdch -a [17ae9b2] Drop architecture doc pagedch -a [cfa2915] Add link to notifications docs on indexdch -a [34d6335] Remove repeated image-sharing docsdch -a [7a0d2eb] Tidy up API docsdch -a [3b7b43f] Log level for BaseContextMiddleware should be warndch -a [e97fa4b] Raise Forbidden exception in image_getdch -a [d912a5d] Activation notification for glance v1 apidch -a [f8467bf] HTTPBadRequest in v2 on malformed JSON request body.dch -a [dcca6cd] PEP8 fix in conf.pydch -a [dc6ef98] Typo fix in glance: existant => existentdch -a [87033d0] Rename glance api docs to something more concisedch -a [37dc071] Drop deprecated client docsdch -a [087046b] Clean up policies docs pagedch -a [11a9a48] Remove autodoc and useless index docsdch -a [309a441] Add nosehtmloutput as a test dependency.dch -a [37d1c1d] Remove partial image data when filesystem is fulldch -a [c068c7f] Add 'bytes' to image size rejection messagedch -a [5d206b4] Correctly re-raise exception on bad v1 checksumdch -a [07b72c3] Fixes issue with non string header values in glance clientdebcommitbzr 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-e68ff491-d53b-4fee-a894-fd8177e4d9e8', '-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.getcwdu(), 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-e68ff491-d53b-4fee-a894-fd8177e4d9e8', '-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_folsom_glance_trunk #134

2012-09-03 Thread openstack-testing-bot
Title: precise_folsom_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_glance_trunk/134/Project:precise_folsom_glance_trunkDate of build:Thu, 30 Aug 2012 17:00:33 -0400Build duration:2 min 12 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesMove authtoken config out of pasteby bcwaldoneditetc/glance-registry-paste.inieditetc/glance-api.confeditetc/glance-api-paste.inieditetc/glance-registry.confConsole Output[...truncated 2086 lines...]bzr: ERROR: The build failed.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-cf5c9608-5253-46b3-832b-75de6942e30d', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-cf5c9608-5253-46b3-832b-75de6942e30d', '-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/glance/precise-folsom-proposed /tmp/tmpxJbApt/glancemk-build-deps -i -r -t apt-get -y /tmp/tmpxJbApt/glance/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log eb8c956753fb7b3c6d016a79d4a9297075f4229d..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/glance/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208301700~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208301700~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [b719704] Move authtoken config out of pastedch -a [e97fa4b] Raise Forbidden exception in image_getdch -a [d912a5d] Activation notification for glance v1 apidch -a [f8467bf] HTTPBadRequest in v2 on malformed JSON request body.dch -a [dcca6cd] PEP8 fix in conf.pydch -a [dc6ef98] Typo fix in glance: existant => existentdch -a [87033d0] Rename glance api docs to something more concisedch -a [37dc071] Drop deprecated client docsdch -a [087046b] Clean up policies docs pagedch -a [11a9a48] Remove autodoc and useless index docsdch -a [309a441] Add nosehtmloutput as a test dependency.dch -a [37d1c1d] Remove partial image data when filesystem is fulldch -a [c068c7f] Add 'bytes' to image size rejection messagedch -a [5d206b4] Correctly re-raise exception on bad v1 checksumdch -a [07b72c3] Fixes issue with non string header values in glance clientdebcommitbzr 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-cf5c9608-5253-46b3-832b-75de6942e30d', '-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.getcwdu(), 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-cf5c9608-5253-46b3-832b-75de6942e30d', '-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_folsom_glance_trunk #135

2012-09-03 Thread openstack-testing-bot
Title: precise_folsom_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_glance_trunk/135/Project:precise_folsom_glance_trunkDate of build:Thu, 30 Aug 2012 17:30:33 -0400Build duration:2 min 55 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesTidy up API docsby bcwaldoneditdoc/source/glanceapi.rstRemove repeated image-sharing docsby bcwaldoneditdoc/source/authentication.rsteditdoc/source/glanceapi.rstAdd link to notifications docs on indexby bcwaldoneditdoc/source/index.rstDrop architecture doc pageby bcwaldondeletedoc/source/architecture.rsteditdoc/source/index.rstTweak doc page titlesby bcwaldoneditdoc/source/configuring.rsteditdoc/source/index.rsteditdoc/source/authentication.rsteditdoc/source/installing.rstConsole Output[...truncated 2100 lines...]bzr branch lp:~openstack-ubuntu-testing/glance/precise-folsom-proposed /tmp/tmp_twhz8/glancemk-build-deps -i -r -t apt-get -y /tmp/tmp_twhz8/glance/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log eb8c956753fb7b3c6d016a79d4a9297075f4229d..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/glance/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208301730~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208301730~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [b719704] Move authtoken config out of pastedch -a [991e4bd] Tweak doc page titlesdch -a [17ae9b2] Drop architecture doc pagedch -a [cfa2915] Add link to notifications docs on indexdch -a [34d6335] Remove repeated image-sharing docsdch -a [7a0d2eb] Tidy up API docsdch -a [e97fa4b] Raise Forbidden exception in image_getdch -a [d912a5d] Activation notification for glance v1 apidch -a [f8467bf] HTTPBadRequest in v2 on malformed JSON request body.dch -a [dcca6cd] PEP8 fix in conf.pydch -a [dc6ef98] Typo fix in glance: existant => existentdch -a [87033d0] Rename glance api docs to something more concisedch -a [37dc071] Drop deprecated client docsdch -a [087046b] Clean up policies docs pagedch -a [11a9a48] Remove autodoc and useless index docsdch -a [309a441] Add nosehtmloutput as a test dependency.dch -a [37d1c1d] Remove partial image data when filesystem is fulldch -a [c068c7f] Add 'bytes' to image size rejection messagedch -a [5d206b4] Correctly re-raise exception on bad v1 checksumdch -a [07b72c3] Fixes issue with non string header values in glance clientdebcommitbzr 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-33fe0ce9-a91e-4f9c-a216-99bf8c233007', '-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.getcwdu(), 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-33fe0ce9-a91e-4f9c-a216-99bf8c233007', '-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 Fixed: quantal_folsom_quantum_trunk #165

2012-09-03 Thread openstack-testing-bot
Title: quantal_folsom_quantum_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_quantum_trunk/165/Project:quantal_folsom_quantum_trunkDate of build:Fri, 31 Aug 2012 14:30:34 -0400Build duration:5 min 59 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesDo not transfer ips if there isnt anyby salv.orlandoeditquantum/plugins/linuxbridge/agent/linuxbridge_quantum_agent.pyConsole Output[...truncated 6243 lines...]  Uploading quantum_2012.2+git201208311430~quantal-0ubuntu1.debian.tar.gz: done.  Uploading quantum_2012.2+git201208311430~quantal-0ubuntu1_source.changes: done.Successfully uploaded packages.INFO:root:Installing build artifacts into /var/lib/jenkins/www/aptDEBUG:root:['reprepro', '--waitforlock', '10', '-Vb', '/var/lib/jenkins/www/apt', 'include', 'quantal-folsom', 'quantum_2012.2+git201208311430~quantal-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/quantal-folsom/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/quantal-folsom/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/q/quantum/python-quantum_2012.2+git201208310130~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-common_2012.2+git201208310130~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-cisco_2012.2+git201208310130~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-linuxbridge-agent_2012.2+git201208310130~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-linuxbridge_2012.2+git201208310130~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-nicira_2012.2+git201208310130~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-openvswitch-agent_2012.2+git201208310130~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-openvswitch_2012.2+git201208310130~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-ryu-agent_2012.2+git201208310130~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-ryu_2012.2+git201208310130~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-server_2012.2+git201208310130~quantal-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/quantum/quantal-folsom']Pushed up to revision 63.INFO:root:Storing current commit for next build: d1dce679f1dcd5bed44efa1576e446b02b2a4371INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix quantum-2012.2-201208311430/git archive master --format tar --prefix quantum-2012.2-201208311430/git log -n1 --no-merges --pretty=format:%Hgit log 276f26a45d0c2a1b9826f7f7e7d9b7ae9de2c507..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/quantum/quantal-folsom-proposed quantumbzr merge lp:~openstack-ubuntu-testing/quantum/quantal-folsom --forcedch -b -D quantal --newversion 2012.2+git201208311430~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 2012.2+git201208311430~quantal-0ubuntu1 Automated Ubuntu testing build:dch -a [d1dce67] Do not transfer ips if there isn't anydch -a [8fb4e6e] prevent invalid deletion of ports using by L3 devicesdch -a [c099e06] Implementation of 2nd phase of provider extension for openswitchdebcommitbzr builddeb -S -- -sa -us -ucmk-build-deps -i -r -t apt-get -y /tmp/tmp74_YM1/quantum/debian/controlbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC quantum_2012.2+git201208311430~quantal-0ubuntu1_source.changessbuild -d quantal-folsom -n -A quantum_2012.2+git201208311430~quantal-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/folsom-trunk-testing quantum_2012.2+git201208311430~quantal-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include quantal-folsom quantum_2012.2+git201208311430~quantal-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/quantum/quantal-folsomEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
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_folsom_glance_trunk #143

2012-09-03 Thread openstack-testing-bot
Title: precise_folsom_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_glance_trunk/143/Project:precise_folsom_glance_trunkDate of build:Tue, 04 Sep 2012 00:30:32 -0400Build duration:2 min 3 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesRequire status in simple db image_createby bcwaldoneditglance/tests/unit/utils.pyeditglance/db/simple/api.pyeditglance/tests/unit/v2/test_images_resource.pyeditglance/tests/functional/db/__init__.pyConsole Output[...truncated 2149 lines...]dch -a [a5411d2] Filter out deleted image properties in v2 apidch -a [1f3ae60] Limit simple db image_create to known image attrsdch -a [97915a7] Raise Duplicate on image_create with duplicate iddch -a [af6b8a6] Expand image_create db testdch -a [a0288ab] Add test for nonexistent image in db layerdch -a [abcff5b] Catch pruner exception when no images are cacheddch -a [80c099e] Adds notifications for images v2dch -a [b719704] Move authtoken config out of pastedch -a [991e4bd] Tweak doc page titlesdch -a [17ae9b2] Drop architecture doc pagedch -a [cfa2915] Add link to notifications docs on indexdch -a [34d6335] Remove repeated image-sharing docsdch -a [7a0d2eb] Tidy up API docsdch -a [3b7b43f] Log level for BaseContextMiddleware should be warndch -a [e97fa4b] Raise Forbidden exception in image_getdch -a [d912a5d] Activation notification for glance v1 apidch -a [f8467bf] HTTPBadRequest in v2 on malformed JSON request body.dch -a [dcca6cd] PEP8 fix in conf.pydch -a [dc6ef98] Typo fix in glance: existant => existentdch -a [87033d0] Rename glance api docs to something more concisedch -a [37dc071] Drop deprecated client docsdch -a [087046b] Clean up policies docs pagedch -a [11a9a48] Remove autodoc and useless index docsdch -a [309a441] Add nosehtmloutput as a test dependency.dch -a [37d1c1d] Remove partial image data when filesystem is fulldch -a [c068c7f] Add 'bytes' to image size rejection messagedch -a [5d206b4] Correctly re-raise exception on bad v1 checksumdch -a [07b72c3] Fixes issue with non string header values in glance clientdebcommitbzr 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-43d30831-1f3a-4a8c-8ba9-c2aa783d7f53', '-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.getcwdu(), 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-43d30831-1f3a-4a8c-8ba9-c2aa783d7f53', '-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