[Openstack] netns kernel of RedHat

2013-05-29 Thread 彭勇
there is no netns support in RedHat kernel:

https://bugzilla.redhat.com/show_bug.cgi?id=869004

is there any progress of this feature?


-- 
Peng Yong
___
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] Reg: Creating a new Compute Node

2013-05-29 Thread Nehal J. Wani
I have installed openstack and all of its services using packstack puppet
script. In the answer file, my config as:
CONFIG_NOVA_COMPUTE_HOSTS=10.3.3.56,10.3.3.58
After running the script, nova-servies were installed in both the machines.
But, the machine 10.3.3.58 doesn't show as a nova-compute node in the
machine 10.3.3.57. Where have I gone wrong?

On 10.3.3.57
[root@localhost ~(keystone_admin)]# nova-manage service list
Binary   Host Zone
Status State Updated_At
nova-conductor   localhost.localdomaininternal
enabled:-)   2013-05-29 09:45:53
nova-scheduler   localhost.localdomaininternal
enabled:-)   2013-05-29 09:45:54
nova-compute localhost.localdomainnova
enabled:-)   2013-05-29 09:45:52
nova-certlocalhost.localdomaininternal
enabled:-)   2013-05-29 09:45:53
nova-consoleauth localhost.localdomaininternal
enabled:-)   2013-05-29 09:45:53
nova-console localhost.localdomaininternal
enabledXXX   2013-05-29 09:21:41
[root@localhost ~(keystone_admin)]#

On 10.3.3.58:
[root@localhost ~]# nova-manage service list
Binary   Host Zone
Status State Updated_At
nova-conductor   localhost.localdomaininternal
enabled:-)   2013-05-29 09:46:23
nova-scheduler   localhost.localdomaininternal
enabled:-)   2013-05-29 09:46:24
nova-compute localhost.localdomainnova
enabled:-)   2013-05-29 09:46:22
nova-certlocalhost.localdomaininternal
enabled:-)   2013-05-29 09:46:23
nova-consoleauth localhost.localdomaininternal
enabled:-)   2013-05-29 09:46:23
nova-console localhost.localdomaininternal
enabledXXX   2013-05-29 09:21:41


-- 
Nehal J. Wani
UG2, BTech CS+MS(CL)
IIIT-Hyderabad
http://commanlinewani.blogspot.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


Re: [Openstack] Reg: Creating a new Compute Node

2013-05-29 Thread Nehal J. Wani
Changing the hostname and restarting the service did the trick.!


On Wed, May 29, 2013 at 3:16 PM, Nehal J. Wani nehaljw.k...@gmail.comwrote:

 I have installed openstack and all of its services using packstack puppet
 script. In the answer file, my config as:
 CONFIG_NOVA_COMPUTE_HOSTS=10.3.3.56,10.3.3.58
 After running the script, nova-servies were installed in both the
 machines. But, the machine 10.3.3.58 doesn't show as a nova-compute node in
 the machine 10.3.3.57. Where have I gone wrong?

 On 10.3.3.57
 [root@localhost ~(keystone_admin)]# nova-manage service list
 Binary   Host Zone
 Status State Updated_At
 nova-conductor   localhost.localdomaininternal
 enabled:-)   2013-05-29 09:45:53
 nova-scheduler   localhost.localdomaininternal
 enabled:-)   2013-05-29 09:45:54
 nova-compute localhost.localdomainnova
 enabled:-)   2013-05-29 09:45:52
 nova-certlocalhost.localdomaininternal
 enabled:-)   2013-05-29 09:45:53
 nova-consoleauth localhost.localdomaininternal
 enabled:-)   2013-05-29 09:45:53
 nova-console localhost.localdomaininternal
 enabledXXX   2013-05-29 09:21:41
 [root@localhost ~(keystone_admin)]#

 On 10.3.3.58:
 [root@localhost ~]# nova-manage service list
 Binary   Host Zone
 Status State Updated_At
 nova-conductor   localhost.localdomaininternal
 enabled:-)   2013-05-29 09:46:23
 nova-scheduler   localhost.localdomaininternal
 enabled:-)   2013-05-29 09:46:24
 nova-compute localhost.localdomainnova
 enabled:-)   2013-05-29 09:46:22
 nova-certlocalhost.localdomaininternal
 enabled:-)   2013-05-29 09:46:23
 nova-consoleauth localhost.localdomaininternal
 enabled:-)   2013-05-29 09:46:23
 nova-console localhost.localdomaininternal
 enabledXXX   2013-05-29 09:21:41


 --
 Nehal J. Wani
 UG2, BTech CS+MS(CL)
 IIIT-Hyderabad
 http://commanlinewani.blogspot.com




-- 
Nehal J. Wani
UG2, BTech CS+MS(CL)
IIIT-Hyderabad
http://commanlinewani.blogspot.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


Re: [Openstack] Can I create a VM with 2 NICs while there is only one network?

2013-05-29 Thread Salvatore Orlando
I am afraid there is no way of having two NICs on the same network at the
moment.

If you are trying to deploy a VM which provides some form of network
service, like packet filtering, you might think about implementing it as a
quantum service plugin.
The 'agent' for this plugin would plug two tap interfaces connected to the
same network, and do the processing as you suggest.

Clearly, this is not very easy, as it would require you to implement a
plugin, possibly an API for it, as well as an agent which uses Quantum
library functions for plugging/unplugging interfaces.
The agent will also have the responsibility for starting/stopping the
service you're providing.

Salvatore


On 28 May 2013 07:34, Liu Wenmao marvel...@gmail.com wrote:

 Thanks Salvatore

 I can create two ports with admin-state down, which are in the same
 network, but nova says that the two NICs of the VM can not be in the same
 network.

 Actually I want to redirect all the packets of the network to VM eth0,
 after some processes the VM sends the packets out to eth1, so the two NICs
 should be in the same network. Is it possible?


 root@node1:/usr/src/python-quantumclient# quantum port-create
 --admin-state-down net1
 Created a new port:

 +--+---+
 | Field| Value
 |

 +--+---+
 | admin_state_up   | False
 |
 | binding:capabilities | {port_filter: false}
  |
 | binding:vif_type | ovs
 |
 | device_id|
 |
 | device_owner |
 |
 | fixed_ips| {subnet_id:
 c11eaa0d-3aff-41a8-909a-1dfdfdf20f48, ip_address: 100.0.0.12} |
 | id   | ca48bce7-7e42-4263-8832-cffb6e99ac0a
  |
 | mac_address  | fa:16:3e:0e:08:e1
 |
 | name |
 |
 | network_id   | 17d31ea4-4473-4da0-9493-9a04fa5aff33
  |
 | status   | DOWN
  |
 | tenant_id| 53707d290204404dbff625378969c25c
  |

 +--+---+
 root@node1:/usr/src/python-quantumclient# quantum port-create
 --admin-state-down net1
 Created a new port:

 +--+---+
 | Field| Value
 |

 +--+---+
 | admin_state_up   | False
 |
 | binding:capabilities | {port_filter: false}
  |
 | binding:vif_type | ovs
 |
 | device_id|
 |
 | device_owner |
 |
 | fixed_ips| {subnet_id:
 c11eaa0d-3aff-41a8-909a-1dfdfdf20f48, ip_address: 100.0.0.13} |
 | id   | 8a320aae-4a16-4a78-acba-1ec505cfe914
  |
 | mac_address  | fa:16:3e:db:c5:15
 |
 | name |
 |
 | network_id   | 17d31ea4-4473-4da0-9493-9a04fa5aff33
  |
 | status   | DOWN
  |
 | tenant_id| 53707d290204404dbff625378969c25c
  |

 +--+---+

 root@node1:/usr/src/python-quantumclient# nova boot --image cirros
 --flavor m1.tiny --nic port-id=ca48bce7-7e42-4263-8832-cffb6e99ac0a --nic
 port-id=8a320aae-4a16-4a78-acba-1ec505cfe914  testips
 ERROR: The server has either erred or is incapable of performing the
 requested operation. (HTTP 500) (Request-ID:
 req-ac85648c-4e9b-4624-bf88-a6ceeb8e79aa)

 nova-api.log:
 3028 2013-05-28 11:50:06.007 3232 TRACE nova.api.openstack   File
 /usr/lib/python2.7/contextlib.py, line 24, in __exit__
 3029 2013-05-28 11:50:06.007 3232 TRACE nova.api.openstack
 self.gen.next()
 3030 2013-05-28 11:50:06.007 3232 TRACE nova.api.openstack   File
 /usr/local/lib/python2.7/dist-packages/nova-2013.1-py2.7.egg/nova/compute/api.py,
 line 522, in _validate_and_provision_instance
 3031 2013-05-28 11:50:06.007 3232 TRACE nova.api.openstack
 self._check_requested_networks(context, requested_networks)
 3032 2013-05-28 11:50:06.007 3232 TRACE nova.api.openstack   File
 

[Openstack] Grizzly all-in-one error

2013-05-29 Thread Rajesh Upadhayay
Hi,

Any idea about below errors as I have setup Grizzly all-in-one and getting 
below error on dashboard.



1.  Error: Unauthorized: Network list can not be retrieved.

2.  Error: Unauthorized: Unable to retrieve quota information.

3.  Unauthorized: Unable to retrieve router list.×

4.  Error: Unauthorized: Unable to retrieve a list of external networks 
401 Unauthorized This server could not verify that you are authorized to 
access the document you requested. Either you supplied the wrong credentials 
(e.g., bad password), or your browser does not understand how to supply the 
credentials required. Authentication required .
# quantum router-list
401 Unauthorized

This server could not verify that you are authorized to access the document you 
requested. Either you supplied the wrong credentials (e.g., bad password), or 
your browser does not understand how to supply the credentials required.

Authentication required


Thanks  Regards,
Rajesh Upadhayay
___
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] Grizzly all-in-one error

2013-05-29 Thread Nikhil Mittal
This error would occur when the Keystone has not been properly configured
with the authentication details for all the services. I faced this issue as
well and it was fixed by correcting the DB and the configuration files.

On Wed, May 29, 2013 at 4:32 PM, Rajesh Upadhayay rupadha...@xavient.comwrote:

  Hi,

 ** **

 Any idea about below errors as I have setup Grizzly all-in-one and getting
 below error on dashboard.

 ** **

 ** **

 ***1.  Error: *Unauthorized: Network list can not be retrieved.***
 *

 ***2.  Error: *Unauthorized: Unable to retrieve quota information.
 

 ***3.  ***Unauthorized: Unable to retrieve router list.*×*

 ***4.  Error: *Unauthorized: Unable to retrieve a list of
 external networks 401 Unauthorized This server could not verify that you
 are authorized to access the document you requested. Either you supplied
 the wrong credentials (e.g., bad password), or your browser does not
 understand how to supply the credentials required. Authentication required
 .

 # quantum router-list

 401 Unauthorized

 ** **

 This server could not verify that you are authorized to access the
 document you requested. Either you supplied the wrong credentials (e.g.,
 bad password), or your browser does not understand how to supply the
 credentials required.

 ** **

 Authentication required

 ** **

 ** **

 Thanks  Regards,

 *Rajesh Upadhayay***

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


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


[Openstack] Can't Migrate a VM?

2013-05-29 Thread Nehal J. Wani
How do I resolve this?

2013-05-29 17:39:04.795 ERROR nova.openstack.common.rpc.amqp
[req-ab0ab357-b84e-4882-8b58-6f6d2b50050e 8a31b05e02f34486902792b59f9c5183
b7ddbab8f6c64086ba13b9ddbe76a87e] Exception during message handling
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp Traceback
(most recent call last):
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib/python2.6/site-packages/nova/openstack/common/rpc/amqp.py, line
430, in _process_data
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp rval
= self.proxy.dispatch(ctxt, version, method, **args)
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib/python2.6/site-packages/nova/openstack/common/rpc/dispatcher.py,
line 133, in dispatch
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
return getattr(proxyobj, method)(ctxt, **kwargs)
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib/python2.6/site-packages/nova/exception.py, line 117, in wrapped
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
temp_level, payload)
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib64/python2.6/contextlib.py, line 23, in __exit__
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
self.gen.next()
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib/python2.6/site-packages/nova/exception.py, line 94, in wrapped
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
return f(self, context, *args, **kw)
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib/python2.6/site-packages/nova/compute/manager.py, line 209, in
decorated_function
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp pass
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib64/python2.6/contextlib.py, line 23, in __exit__
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
self.gen.next()
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib/python2.6/site-packages/nova/compute/manager.py, line 195, in
decorated_function
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
return function(self, context, *args, **kwargs)
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib/python2.6/site-packages/nova/compute/manager.py, line 260, in
decorated_function
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
function(self, context, *args, **kwargs)
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib/python2.6/site-packages/nova/compute/manager.py, line 237, in
decorated_function
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp e,
sys.exc_info())
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib64/python2.6/contextlib.py, line 23, in __exit__
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
self.gen.next()
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib/python2.6/site-packages/nova/compute/manager.py, line 224, in
decorated_function
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
return function(self, context, *args, **kwargs)
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib/python2.6/site-packages/nova/compute/manager.py, line 2368, in
resize_instance
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
block_device_info)
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib/python2.6/site-packages/nova/virt/libvirt/driver.py, line 3479,
in migrate_disk_and_power_off
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
inst_base_resize)
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib64/python2.6/contextlib.py, line 23, in __exit__
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
self.gen.next()
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib/python2.6/site-packages/nova/virt/libvirt/driver.py, line 3456,
in migrate_disk_and_power_off
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
utils.execute('ssh', dest, 'mkdir', '-p', inst_base)
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp   File
/usr/lib/python2.6/site-packages/nova/utils.py, line 239, in execute
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp cmd='
'.join(cmd))
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
ProcessExecutionError: Unexpected error while running command.
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp Command:
ssh 10.3.3.58 mkdir -p
/var/lib/nova/instances/bc967b97-e103-4a13-abe4-ada8f98bdeb0
2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp Exit
code: 1
2013-05-29 17:39:04.795 5106 TRACE 

Re: [Openstack] Can't Migrate a VM?

2013-05-29 Thread Mac Innes, Kiall
On 29/05/13 13:11, Nehal J. Wani wrote:
 2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
 ProcessExecutionError: Unexpected error while running command.
 2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
 Command: ssh 10.3.3.58 mkdir -p
 /var/lib/nova/instances/bc967b97-e103-4a13-abe4-ada8f98bdeb0
 2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp Exit
 code: 1
 2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
 Stdout: 'This account is currently not available.\n'
 2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
 Stderr: ''
 2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp 
As the nova user, manually attempt that SSH command.. Then figure out
why it can't SSH to the other node. It should work (or at least get
further) once you do.

Thanks,
Kiall

___
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] Can't Migrate a VM?

2013-05-29 Thread Nehal J. Wani
Initially, the error was:

host key verification failed

So I created the host keys for nova user with the command: ssh-keygen -f
nova and then renamed them to id_rsa and id_rsa.pub and then put them to
~nova/.ssh/

Also, I copied the files /root/.ssh/known_hosts and
/root/.ssh/authorized_keys to ~nova/.ssh/ on both machines

Then I changed the file permissions to nova:nova

Then came the error:This account is currently not available.\n

So i edited the file /etc/passwd on both the machines and then changed the
line

nova:x:162:162:OpenStack Nova Daemons:/var/lib/nova:/sbin/nologin

to

nova:x:162:162:OpenStack Nova Daemons:/var/lib/nova:/bin/bash

Now migration works.. But his is a tedious task.


On Wed, May 29, 2013 at 5:45 PM, Mac Innes, Kiall ki...@hp.com wrote:

 On 29/05/13 13:11, Nehal J. Wani wrote:
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  ProcessExecutionError: Unexpected error while running command.
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Command: ssh 10.3.3.58 mkdir -p
  /var/lib/nova/instances/bc967b97-e103-4a13-abe4-ada8f98bdeb0
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp Exit
  code: 1
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Stdout: 'This account is currently not available.\n'
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Stderr: ''
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
 As the nova user, manually attempt that SSH command.. Then figure out
 why it can't SSH to the other node. It should work (or at least get
 further) once you do.

 Thanks,
 Kiall




-- 
Nehal J. Wani
UG2, BTech CS+MS(CL)
IIIT-Hyderabad
http://commanlinewani.blogspot.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


Re: [Openstack] Can't Migrate a VM?

2013-05-29 Thread Mac Innes, Kiall
Then, packstack either has a bug, or the default settings don't allow for the 
use of block migration..

I've personally never even heard of packstack, so I can't comment on how to 
fix/where to file a bug etc...

Maybe someone else can?

Thanks,
Kiall

On 29/05/13 13:18, Nehal J. Wani wrote:
But packstack script has created the nova user with no ability to login

As /etc/passwd says: nova:x:162:162:OpenStack Nova 
Daemons:/var/lib/nova:/sbin/nologin



On Wed, May 29, 2013 at 5:45 PM, Mac Innes, Kiall 
ki...@hp.commailto:ki...@hp.com wrote:
On 29/05/13 13:11, Nehal J. Wani wrote:
 2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
 ProcessExecutionError: Unexpected error while running command.
 2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
 Command: ssh 10.3.3.58 mkdir -p
 /var/lib/nova/instances/bc967b97-e103-4a13-abe4-ada8f98bdeb0
 2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp Exit
 code: 1
 2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
 Stdout: 'This account is currently not available.\n'
 2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
 Stderr: ''
 2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
As the nova user, manually attempt that SSH command.. Then figure out
why it can't SSH to the other node. It should work (or at least get
further) once you do.

Thanks,
Kiall



--
Nehal J. Wani
UG2, BTech CS+MS(CL)
IIIT-Hyderabad
http://commanlinewani.blogspot.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


Re: [Openstack] Can't Migrate a VM?

2013-05-29 Thread Lei Zhang
You may also need add following config in /var/lib/nova/.ssh/config

StrictHostKeyChecking no



On Wed, May 29, 2013 at 8:25 PM, Mac Innes, Kiall ki...@hp.com wrote:

 Then, packstack either has a bug, or the default settings don't allow for
 the use of block migration..

 I've personally never even heard of packstack, so I can't comment on how
 to fix/where to file a bug etc...

 Maybe someone else can?

 Thanks,
 Kiall

 On 29/05/13 13:18, Nehal J. Wani wrote:
 But packstack script has created the nova user with no ability to login

 As /etc/passwd says: nova:x:162:162:OpenStack Nova
 Daemons:/var/lib/nova:/sbin/nologin



 On Wed, May 29, 2013 at 5:45 PM, Mac Innes, Kiall ki...@hp.commailto:
 ki...@hp.com wrote:
 On 29/05/13 13:11, Nehal J. Wani wrote:
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  ProcessExecutionError: Unexpected error while running command.
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Command: ssh 10.3.3.58 mkdir -p
  /var/lib/nova/instances/bc967b97-e103-4a13-abe4-ada8f98bdeb0
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp Exit
  code: 1
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Stdout: 'This account is currently not available.\n'
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Stderr: ''
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
 As the nova user, manually attempt that SSH command.. Then figure out
 why it can't SSH to the other node. It should work (or at least get
 further) once you do.

 Thanks,
 Kiall



 --
 Nehal J. Wani
 UG2, BTech CS+MS(CL)
 IIIT-Hyderabad
 http://commanlinewani.blogspot.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




-- 
Lei Zhang

Blog: http://jeffrey4l.github.io
twitter/weibo: @jeffrey4l
___
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] Can't Migrate a VM?

2013-05-29 Thread Nehal J. Wani
I tried putting that into ~nova/.ssh/config

But the it says permission denied.


On Wed, May 29, 2013 at 6:25 PM, Lei Zhang zhang.lei@gmail.com wrote:

 You may also need add following config in /var/lib/nova/.ssh/config

 StrictHostKeyChecking no



 On Wed, May 29, 2013 at 8:25 PM, Mac Innes, Kiall ki...@hp.com wrote:

 Then, packstack either has a bug, or the default settings don't allow for
 the use of block migration..

 I've personally never even heard of packstack, so I can't comment on how
 to fix/where to file a bug etc...

 Maybe someone else can?

 Thanks,
 Kiall

 On 29/05/13 13:18, Nehal J. Wani wrote:
 But packstack script has created the nova user with no ability to login

 As /etc/passwd says: nova:x:162:162:OpenStack Nova
 Daemons:/var/lib/nova:/sbin/nologin



 On Wed, May 29, 2013 at 5:45 PM, Mac Innes, Kiall ki...@hp.commailto:
 ki...@hp.com wrote:
 On 29/05/13 13:11, Nehal J. Wani wrote:
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  ProcessExecutionError: Unexpected error while running command.
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Command: ssh 10.3.3.58 mkdir -p
  /var/lib/nova/instances/bc967b97-e103-4a13-abe4-ada8f98bdeb0
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp Exit
  code: 1
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Stdout: 'This account is currently not available.\n'
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Stderr: ''
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
 As the nova user, manually attempt that SSH command.. Then figure out
 why it can't SSH to the other node. It should work (or at least get
 further) once you do.

 Thanks,
 Kiall



 --
 Nehal J. Wani
 UG2, BTech CS+MS(CL)
 IIIT-Hyderabad
 http://commanlinewani.blogspot.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




 --
 Lei Zhang

 Blog: http://jeffrey4l.github.io
 twitter/weibo: @jeffrey4l




-- 
Nehal J. Wani
UG2, BTech CS+MS(CL)
IIIT-Hyderabad
http://commanlinewani.blogspot.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


Re: [Openstack] Can't Migrate a VM?

2013-05-29 Thread Nehal J. Wani
Exact error after putting that configuration:

./nova/compute.
log:7203:Stderr: Warning: Permanently added '10.3.3.58' (RSA) to the list
of known hosts.\r\nPermission denied, please try again.\r\nPermission
denied, please try again.\r\nPermission denied
(publickey,gssapi-keyex,gssapi-with-mic,password).\r\n. Setting instance
vm_state to ERROR
./nova/compute.log:7244:2013-05-29 16:40:25.510 18605 TRACE
nova.openstack.common.rpc.amqp Stderr: Warning: Permanently added
'10.3.3.58' (RSA) to the list of known hosts.\r\nPermission denied, please
try again.\r\nPermission denied, please try again.\r\nPermission denied
(publickey,gssapi-keyex,gssapi-with-mic,password).\r\n



On Wed, May 29, 2013 at 6:28 PM, Nehal J. Wani nehaljw.k...@gmail.comwrote:

 I tried putting that into ~nova/.ssh/config

 But the it says permission denied.


 On Wed, May 29, 2013 at 6:25 PM, Lei Zhang zhang.lei@gmail.comwrote:

 You may also need add following config in /var/lib/nova/.ssh/config

 StrictHostKeyChecking no



 On Wed, May 29, 2013 at 8:25 PM, Mac Innes, Kiall ki...@hp.com wrote:

 Then, packstack either has a bug, or the default settings don't allow
 for the use of block migration..

 I've personally never even heard of packstack, so I can't comment on how
 to fix/where to file a bug etc...

 Maybe someone else can?

 Thanks,
 Kiall

 On 29/05/13 13:18, Nehal J. Wani wrote:
 But packstack script has created the nova user with no ability to login

 As /etc/passwd says: nova:x:162:162:OpenStack Nova
 Daemons:/var/lib/nova:/sbin/nologin



 On Wed, May 29, 2013 at 5:45 PM, Mac Innes, Kiall ki...@hp.commailto:
 ki...@hp.com wrote:
 On 29/05/13 13:11, Nehal J. Wani wrote:
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  ProcessExecutionError: Unexpected error while running command.
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Command: ssh 10.3.3.58 mkdir -p
  /var/lib/nova/instances/bc967b97-e103-4a13-abe4-ada8f98bdeb0
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp Exit
  code: 1
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Stdout: 'This account is currently not available.\n'
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Stderr: ''
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
 As the nova user, manually attempt that SSH command.. Then figure out
 why it can't SSH to the other node. It should work (or at least get
 further) once you do.

 Thanks,
 Kiall



 --
 Nehal J. Wani
 UG2, BTech CS+MS(CL)
 IIIT-Hyderabad
 http://commanlinewani.blogspot.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




 --
 Lei Zhang

 Blog: http://jeffrey4l.github.io
 twitter/weibo: @jeffrey4l




 --
 Nehal J. Wani
 UG2, BTech CS+MS(CL)
 IIIT-Hyderabad
 http://commanlinewani.blogspot.com




-- 
Nehal J. Wani
UG2, BTech CS+MS(CL)
IIIT-Hyderabad
http://commanlinewani.blogspot.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


Re: [Openstack] Can't Migrate a VM?

2013-05-29 Thread Lei Zhang
Your ssh key may be not config properly. Checkout following steps.

1. You get a key pair( pub key and private key). You can using the root's
key which locate `/root/.ssh/id_rsa` and `/root/.ssh/id_ras.pub` or
generate a new
one
2. Enable the nova user login-able
```
usermod -s /bin/bash nova
```
Now you can switch nova account by using following command, and steps
bellow is operated under this account.
```
su nova
```
3. Create the folder needed by ssh and put the private key got in step 1
```
mkdir -p /var/lib/nova/.ssh
cp private_key /var/lib/nova/.ssh/id_rsa
cat pub_key  /var/lib/nova/.ssh/authorized_keys
echo 'StrictHostKeyChecking no'  /var/lib/nova/.ssh/config
```
4. Do the steps 2-3 on each nodes. IMPORTANT: All the nodes share the
same key pair and you shouldn't generate new one in second node.
5. Check the key is working properly.
```
su nova
ssh nova@node-another  // you will login the node-another without password
```


On Wed, May 29, 2013 at 8:59 PM, Nehal J. Wani nehaljw.k...@gmail.comwrote:

 Exact error after putting that configuration:

 ./nova/compute.
 log:7203:Stderr: Warning: Permanently added '10.3.3.58' (RSA) to the list
 of known hosts.\r\nPermission denied, please try again.\r\nPermission
 denied, please try again.\r\nPermission denied
 (publickey,gssapi-keyex,gssapi-with-mic,password).\r\n. Setting instance
 vm_state to ERROR
 ./nova/compute.log:7244:2013-05-29 16:40:25.510 18605 TRACE
 nova.openstack.common.rpc.amqp Stderr: Warning: Permanently added
 '10.3.3.58' (RSA) to the list of known hosts.\r\nPermission denied, please
 try again.\r\nPermission denied, please try again.\r\nPermission denied
 (publickey,gssapi-keyex,gssapi-with-mic,password).\r\n



 On Wed, May 29, 2013 at 6:28 PM, Nehal J. Wani nehaljw.k...@gmail.comwrote:

 I tried putting that into ~nova/.ssh/config

 But the it says permission denied.


 On Wed, May 29, 2013 at 6:25 PM, Lei Zhang zhang.lei@gmail.comwrote:

 You may also need add following config in /var/lib/nova/.ssh/config

 StrictHostKeyChecking no



 On Wed, May 29, 2013 at 8:25 PM, Mac Innes, Kiall ki...@hp.com wrote:

 Then, packstack either has a bug, or the default settings don't allow
 for the use of block migration..

 I've personally never even heard of packstack, so I can't comment on
 how to fix/where to file a bug etc...

 Maybe someone else can?

 Thanks,
 Kiall

 On 29/05/13 13:18, Nehal J. Wani wrote:
 But packstack script has created the nova user with no ability to login

 As /etc/passwd says: nova:x:162:162:OpenStack Nova
 Daemons:/var/lib/nova:/sbin/nologin



 On Wed, May 29, 2013 at 5:45 PM, Mac Innes, Kiall ki...@hp.commailto:
 ki...@hp.com wrote:
 On 29/05/13 13:11, Nehal J. Wani wrote:
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  ProcessExecutionError: Unexpected error while running command.
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Command: ssh 10.3.3.58 mkdir -p
  /var/lib/nova/instances/bc967b97-e103-4a13-abe4-ada8f98bdeb0
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp Exit
  code: 1
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Stdout: 'This account is currently not available.\n'
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
  Stderr: ''
  2013-05-29 17:39:04.795 5106 TRACE nova.openstack.common.rpc.amqp
 As the nova user, manually attempt that SSH command.. Then figure out
 why it can't SSH to the other node. It should work (or at least get
 further) once you do.

 Thanks,
 Kiall



 --
 Nehal J. Wani
 UG2, BTech CS+MS(CL)
 IIIT-Hyderabad
 http://commanlinewani.blogspot.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




 --
 Lei Zhang

 Blog: http://jeffrey4l.github.io
 twitter/weibo: @jeffrey4l




 --
 Nehal J. Wani
 UG2, BTech CS+MS(CL)
 IIIT-Hyderabad
 http://commanlinewani.blogspot.com




 --
 Nehal J. Wani
 UG2, BTech CS+MS(CL)
 IIIT-Hyderabad
 http://commanlinewani.blogspot.com




-- 
Lei Zhang

Blog: http://jeffrey4l.github.io
twitter/weibo: @jeffrey4l
___
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] Grizzly all-in-one error

2013-05-29 Thread Darragh O'Reilly

 not sure - try clearing the cookie for the Horizon IP. 


 From: Rajesh Upadhayay rupadha...@xavient.com
To: 'openstack@lists.launchpad.net' openstack@lists.launchpad.net 
Sent: Wednesday, 29 May 2013, 12:02
Subject: [Openstack]  Grizzly all-in-one error
 


 
Hi,
 
Any idea about below errors as I have setup Grizzly all-in-one and getting 
below error on dashboard.
 
 
1.  Error: Unauthorized: Network list can not be retrieved.
2.  Error: Unauthorized: Unable to retrieve quota information.
3.  Unauthorized: Unable to retrieve router list.×
4.  Error: Unauthorized: Unable to retrieve a list of external networks 
401 Unauthorized This server could not verify that you are authorized to 
access the document you requested. Either you supplied the wrong credentials 
(e.g., bad password), or your browser does not understand how to supply the 
credentials required. Authentication required .
# quantum router-list
401 Unauthorized
 
This server could not verify that you are authorized to access the document 
you requested. Either you supplied the wrong credentials (e.g., bad password), 
or your browser does not understand how to supply the credentials required.
 
Authentication required
 
 
Thanks  Regards,
Rajesh Upadhayay
___
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] netns kernel of RedHat

2013-05-29 Thread Lei Zhang
As I know, the netns depends on glibc.  It support setns after the glibc
2.14.
How ever, the RHEL is using glibc2.12. So it is possible to just using a
new
patched kernel?


On Wed, May 29, 2013 at 6:02 PM, Pádraig Brady p...@draigbrady.com wrote:

 On 05/29/2013 09:59 AM, 彭勇 wrote:
  there is no netns support in RedHat kernel:
 
  https://bugzilla.redhat.com/show_bug.cgi?id=869004
 
  is there any progress of this feature?

 We expect to release an netns enabled kernel to
 RDO (http://openstack.redhat.com/) within the next couple of days

 thanks,
 Pádraig.


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




-- 
Lei Zhang

Blog: http://jeffrey4l.github.io
twitter/weibo: @jeffrey4l
___
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] netns kernel of RedHat

2013-05-29 Thread Remo Mattei
you need to recompile ipaddr if you are using an older version of RH. If you 
are already on 6.4 you will have netns there. 

Remo

On May 29, 2013, at 06:28 , Lei Zhang zhang.lei@gmail.com wrote:

 As I know, the netns depends on glibc.  It support setns after the glibc 
 2.14. 
 How ever, the RHEL is using glibc2.12. So it is possible to just using a new 
 patched kernel?
 
 
 On Wed, May 29, 2013 at 6:02 PM, Pádraig Brady p...@draigbrady.com wrote:
 On 05/29/2013 09:59 AM, 彭勇 wrote:
  there is no netns support in RedHat kernel:
 
  https://bugzilla.redhat.com/show_bug.cgi?id=869004
 
  is there any progress of this feature?
 
 We expect to release an netns enabled kernel to
 RDO (http://openstack.redhat.com/) within the next couple of days
 
 thanks,
 Pádraig.
 
 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp
 
 
 
 -- 
 Lei Zhang
 
 Blog: http://jeffrey4l.github.io
 twitter/weibo: @jeffrey4l
 !DSPAM:2,51a602e6294771413116925! 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp
 
 
 !DSPAM:2,51a602e6294771413116925!

___
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 cells minimal setup

2013-05-29 Thread Markus Barth


On May 29, 2013, at 11:39 PM, Chris Behrens cbehr...@codestud.com wrote:


On May 28, 2013, at 8:38 PM, Markus Barth launchpad@boecht.de wrote:


Hello everyone,

Nova-cells filter has been merged now, so I'd like to make use of them
and set up an installation for a proof of concept.

My goal is to create new filters and then spawn instances in a demo.


Awesome.  I'd be happy to assist you here with your current (and future) 
questions.


Yay!


Setup:
- Global: Horizon, Keystone, Glance
- API cell: nova-api, nova-conductor, nova-cells, nova-network (flat),
mysql, rabbitmq
- child cells: nova-cells, nova-conductor, nova-cert, nova-scheduler,
nova-compute-qemu; cinder-*, mysql, rabbitmq


There's a number of limitations with cells right now, and the above won't 
*quite* work… but close.  The only issue that I see above is with cinder and 
nova-network.  Further info below.



1. Is the above all services I need to spawn instances from Horizon
without errors?


Generally, yes.. those are the correct services in the correct cells… *except* 
nova-network *might* work, but it would have to be in each child cell and you'd 
need different IP blocks configured in each nova-network in order to work.  
They can all be the same layer 2 network, however.  The limitation is because 
compute needs to talk to nova-network via RPC in order to assign IP addresses…  
and RPC communication between nova-compute and other services is intra-cell 
only.  And if you tried to configure the same /24 in 2 different child cells, 
since they are separate DBs, you'll get the same IPs handed out in multiple 
child cells.  More below under #3.


I did think of that, but since Horizon needs to get a tenant's networks 
from a single quantum-server, I thought I'd make Quantum a global 
installation.
I know instances would not get IP adresses, but I don't actually need 
them to.


I'm currently planning that the global services and each cell are in 
separate subnets.


I guessed if there was Quantum in each cell it would be impossible for 
Horizon to talk to all of them and then join the configured networks in 
all cells into one.
Or would it be enough to have a global quantum database with Quantum in 
each cell and Horizon pointing to a random (or an additional global) 
installation to have Quantum working? Then nova-compute can actually use 
the local Quantum.




2. Do I need cinder-* (or nova-volume)? Is it really optional now?


No, you do not need them if you use local storage for your VMs.  In fact, 
cinder does not currently work with cells.  I have a patch for this that I need 
to clean up and submit.



3. Do I need nova-network (or quantum-*)? I know quantum-* does not have to run 
when spawning instances, but I guess I need it to create a
network for a tenant in the first place!?


Quantum is a better choice vs nova-network with or without cells...as 
nova-network will be deprecated some day (AFAIK).  If you choose Quantum, you 
can set this up as a global service to use with cells as long as all of your 
child cells are on the same layer 2 network.  IP address assignments would be 
managed globally, etc.  If you choose quantum and set it up globally, the API 
(nova-api) extensions for networking should work.  In the future, we'll need to 
find a good way to allow Quantum to work with a config such that different 
cells can be on different layer 2 networks.


Then Quantum it is. I just thought I'd keep it simple and go with 
nova-network and probably avoid some problems.



Hope that helps so far,


It really does, thanks!

Markus

___
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] netns kernel of RedHat

2013-05-29 Thread 彭勇
ce67228d570d2df88d74184e5e3618a5b2ef8704 in glibc 2.14 are patched
in iproute-2.6.32-23.el6_4.netns.1, which is in RDO now


2013/5/29 Lei Zhang zhang.lei@gmail.com

 As I know, the netns depends on glibc.  It support setns after the glibc
 2.14.
 How ever, the RHEL is using glibc2.12. So it is possible to just using a
 new
 patched kernel?


 On Wed, May 29, 2013 at 6:02 PM, Pádraig Brady p...@draigbrady.com wrote:

 On 05/29/2013 09:59 AM, 彭勇 wrote:
  there is no netns support in RedHat kernel:
 
  https://bugzilla.redhat.com/show_bug.cgi?id=869004
 
  is there any progress of this feature?

 We expect to release an netns enabled kernel to
 RDO (http://openstack.redhat.com/) within the next couple of days

 thanks,
 Pádraig.


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




 --
 Lei Zhang

 Blog: http://jeffrey4l.github.io
 twitter/weibo: @jeffrey4l




-- 
彭勇 (Peng Yong)
___
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] netns kernel of RedHat

2013-05-29 Thread 彭勇
and we need a new kernel for namespaces which provide flowing directory:

/proc/self/ns/


2013/5/29 Lei Zhang zhang.lei@gmail.com

 As I know, the netns depends on glibc.  It support setns after the glibc
 2.14.
 How ever, the RHEL is using glibc2.12. So it is possible to just using a
 new
 patched kernel?


 On Wed, May 29, 2013 at 6:02 PM, Pádraig Brady p...@draigbrady.com wrote:

 On 05/29/2013 09:59 AM, 彭勇 wrote:
  there is no netns support in RedHat kernel:
 
  https://bugzilla.redhat.com/show_bug.cgi?id=869004
 
  is there any progress of this feature?

 We expect to release an netns enabled kernel to
 RDO (http://openstack.redhat.com/) within the next couple of days

 thanks,
 Pádraig.


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




 --
 Lei Zhang

 Blog: http://jeffrey4l.github.io
 twitter/weibo: @jeffrey4l




-- 
彭勇 (Peng Yong)
___
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] How to configure Keystone with open LDAP + horizon on grizzly

2013-05-29 Thread yasith tharindu
Now my authentication phase is right through ldap i guess. But Im getting a
error when try to login saying You are not authorized for any projects.


My ldap configurations have been used by the keystone it seems. keystone
command gives following results.


root@ubuntu:/home/wso2/ldap#* keystone user-list*
WARNING: Bypassing authentication using a token  endpoint (authentication
credentials are being ignored).
+--+--+-+--+
|  id  | name | enabled |  email   |
+--+--+-+--+
| demo | demo |   True  | d...@example.com |
+--+--+-+--+
root@ubuntu:/home/wso2/ldap# *keystone role-list*
WARNING: Bypassing authentication using a token  endpoint (authentication
credentials are being ignored).
+---+---+
|   id  |  name |
+---+---+
| admin | Admin |
+---+---+
root@ubuntu:/home/wso2/ldap# *keystone tenant-list*
WARNING: Bypassing authentication using a token  endpoint (authentication
credentials are being ignored).
+---+---+-+
|   id  |  name | enabled |
+---+---+-+
| admin | admin |   True  |
+---+---+-+




But with nova commands  return a error with the ldap user credentials.

#* nova image-list*
ERROR: Invalid OpenStack Nova credentials.


System variables I used as follows.

export OS_USERNAME=demo
export OS_TENANT_NAME=admin
export OS_PASSWORD=secret
export OS_AUTH_URL=http://192.168.1.111:5000/v2.0/
export OS_REGION_NAME=RegionOne
export SERVICE_ENDPOINT=http://192.168.1.111:35357/v2.0;
export SERVICE_TOKEN=012345SECRET99TOKEN012345
export OS_NO_CACHE=1




Following is the keystone log..

2013-05-29 02:45:20DEBUG [keystone.common.ldap.core] LDAP search:
dn=ou=Tenants,dc=example,dc=com, scope=2,
query=((objectClass=organizationalRole)(roleOccupant=cn=demo,ou=Users,dc=example,dc=com)),
attrs=None
2013-05-29 02:45:20DEBUG [keystone.common.wsgi] 
RESPONSE HEADERS 
2013-05-29 02:45:20DEBUG [keystone.common.wsgi] Vary = X-Auth-Token
2013-05-29 02:45:20DEBUG [keystone.common.wsgi] Content-Type =
application/json
2013-05-29 02:45:20DEBUG [keystone.common.wsgi] Content-Length = 36
2013-05-29 02:45:20DEBUG [keystone.common.wsgi]
2013-05-29 02:45:20DEBUG [keystone.common.wsgi] 
RESPONSE BODY 
2013-05-29 02:45:20DEBUG [keystone.common.wsgi] {tenants_links: [],
tenants: []}
2013-05-29 02:45:20 INFO [access] 127.0.0.1 - - [28/May/2013:21:15:20
+] GET http://127.0.0.1:5000/v2.0/tenants HTTP/1.0 200 36
2013-05-29 02:45:20DEBUG [eventlet.wsgi.server] 127.0.0.1 - -
[29/May/2013 02:45:20] GET /v2.0/tenants HTTP/1.1 200 164 0.028584



And tenant config of keystone as follows;

tenant_tree_dn = ou=Tenants,dc=example,dc=com
tenant_objectclass = groupOfNames
tenant_id_attribute = cn
tenant_member_attribute = member
tenant_name_attribute = cn
tenant_domain_id_attribute = businessCategory
tenant_enabled_attribute = o
tenant_allow_create = True
tenant_allow_update = True
tenant_allow_delete = True
tenant_desc_attribute = description



*Any one have any suggestions??*  It seems no tanents according to the log
DEBUG [keystone.common.wsgi] {tenants_links: [], tenants: []} 
But i have enabled the user in the Tenant ldap group.

dn: cn=admin,ou=Tenants,dc=example,dc=com
objectClass: groupOfNames
cn: admin
o: True
businessCategory: default
description: Openstack admin Tenant
member: cn=demo,ou=Users,dc=example,dc=com

Thanks in advance..:)


On Mon, May 20, 2013 at 11:24 AM, yasith tharindu yasithu...@gmail.comwrote:

 The question is posted on openstack ask page.
 https://ask.openstack.org/question/1350/how-to-configure-keystone-with-open-ldap-horizon-on-grizzly/

 Error

 2013-05-19 15:21:23ERROR [root] 'domain_id'
 Traceback (most recent call last):
   File /usr/lib/python2.7/dist-packages/keystone/common/wsgi.py, line 236, 
 in __call__
 result = method(context, **params)
   File /usr/lib/python2.7/dist-packages/keystone/token/controllers.py, line 
 82, in authenticate
 core.validate_auth_info(self, context, user_ref, tenant_ref)
   File /usr/lib/python2.7/dist-packages/keystone/token/core.py, line 84, in 
 validate_auth_info
 user_ref['domain_id'])
 KeyError: 'domain_id'

 2013-05-19 15:21:23DEBUG [keystone.common.wsgi] {error: {message: An 
 unexpected error prevented the server from fulfilling your request. 
 'domain_id', code: 500, title: Internal Server Error}}

 Keystone config

 ==
 url = ldap://192.168.1.111
 user = cn=admin,dc=example,dc=com
 password = secret
 suffix = cn=example,cn=com
 use_dumb_member = False
 tree_dn = dc=example,dc=com

 user_tree_dn = ou=Users,dc=example,dc=com
 user_objectclass = inetOrgPerson
 user_id_attribute = cn
 user_name_attribute = sn
 user_pass_attribute = userPassword
 user_allow_create = True
 

Re: [Openstack] [ceilometer] how to enable cpu meter?

2013-05-29 Thread alexander barakin
On Tue, May 28, 2013 at 4:30 PM, Fei Long Wang flw...@cn.ibm.com wrote:

 Hi Alex,

 Please follow up below steps:
 1. Create a new instance
 2. Start compute-agent of Ceilometer
 3. Call the REST API: http://127.0.0.1:8777/v2/meters/cpu_util


the same result: an empty list.
perhaps it should be reported as a bug?
___
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] How to configure Keystone with open LDAP + horizon on grizzly

2013-05-29 Thread yasith tharindu
I have updated the ask page.

https://ask.openstack.org/question/1350/how-to-configure-keystone-with-open-ldap-horizon-on-grizzly/


On Wed, May 29, 2013 at 8:18 PM, yasith tharindu yasithu...@gmail.comwrote:

 Now my authentication phase is right through ldap i guess. But Im getting
 a error when try to login saying You are not authorized for any
 projects.


 My ldap configurations have been used by the keystone it seems. keystone
 command gives following results.


 root@ubuntu:/home/wso2/ldap#* keystone user-list*
 WARNING: Bypassing authentication using a token  endpoint (authentication
 credentials are being ignored).
 +--+--+-+--+
 |  id  | name | enabled |  email   |
 +--+--+-+--+
 | demo | demo |   True  | d...@example.com |
 +--+--+-+--+
 root@ubuntu:/home/wso2/ldap# *keystone role-list*
 WARNING: Bypassing authentication using a token  endpoint (authentication
 credentials are being ignored).
 +---+---+
 |   id  |  name |
 +---+---+
 | admin | Admin |
 +---+---+
 root@ubuntu:/home/wso2/ldap# *keystone tenant-list*
 WARNING: Bypassing authentication using a token  endpoint (authentication
 credentials are being ignored).
 +---+---+-+
 |   id  |  name | enabled |
 +---+---+-+
 | admin | admin |   True  |
 +---+---+-+




 But with nova commands  return a error with the ldap user credentials.

 #* nova image-list*
 ERROR: Invalid OpenStack Nova credentials.


 System variables I used as follows.

 export OS_USERNAME=demo
 export OS_TENANT_NAME=admin
 export OS_PASSWORD=secret
 export OS_AUTH_URL=http://192.168.1.111:5000/v2.0/
 export OS_REGION_NAME=RegionOne
 export SERVICE_ENDPOINT=http://192.168.1.111:35357/v2.0;
 export SERVICE_TOKEN=012345SECRET99TOKEN012345
 export OS_NO_CACHE=1




 Following is the keystone log..

 2013-05-29 02:45:20DEBUG [keystone.common.ldap.core] LDAP search:
 dn=ou=Tenants,dc=example,dc=com, scope=2,
 query=((objectClass=organizationalRole)(roleOccupant=cn=demo,ou=Users,dc=example,dc=com)),
 attrs=None
 2013-05-29 02:45:20DEBUG [keystone.common.wsgi] 
 RESPONSE HEADERS 
 2013-05-29 02:45:20DEBUG [keystone.common.wsgi] Vary = X-Auth-Token
 2013-05-29 02:45:20DEBUG [keystone.common.wsgi] Content-Type =
 application/json
 2013-05-29 02:45:20DEBUG [keystone.common.wsgi] Content-Length = 36
 2013-05-29 02:45:20DEBUG [keystone.common.wsgi]
 2013-05-29 02:45:20DEBUG [keystone.common.wsgi] 
 RESPONSE BODY 
 2013-05-29 02:45:20DEBUG [keystone.common.wsgi] {tenants_links: [],
 tenants: []}
 2013-05-29 02:45:20 INFO [access] 127.0.0.1 - - [28/May/2013:21:15:20
 +] GET http://127.0.0.1:5000/v2.0/tenants HTTP/1.0 200 36
 2013-05-29 02:45:20DEBUG [eventlet.wsgi.server] 127.0.0.1 - -
 [29/May/2013 02:45:20] GET /v2.0/tenants HTTP/1.1 200 164 0.028584



 And tenant config of keystone as follows;

 tenant_tree_dn = ou=Tenants,dc=example,dc=com
 tenant_objectclass = groupOfNames
 tenant_id_attribute = cn
 tenant_member_attribute = member
 tenant_name_attribute = cn
 tenant_domain_id_attribute = businessCategory
 tenant_enabled_attribute = o
 tenant_allow_create = True
 tenant_allow_update = True
 tenant_allow_delete = True
 tenant_desc_attribute = description



 *Any one have any suggestions??*  It seems no tanents according to the
 log DEBUG [keystone.common.wsgi] {tenants_links: [], tenants: []} 
 But i have enabled the user in the Tenant ldap group.

 dn: cn=admin,ou=Tenants,dc=example,dc=com
 objectClass: groupOfNames
 cn: admin
 o: True
 businessCategory: default
 description: Openstack admin Tenant
 member: cn=demo,ou=Users,dc=example,dc=com

 Thanks in advance..:)


 On Mon, May 20, 2013 at 11:24 AM, yasith tharindu yasithu...@gmail.comwrote:

 The question is posted on openstack ask page.
 https://ask.openstack.org/question/1350/how-to-configure-keystone-with-open-ldap-horizon-on-grizzly/

 Error

 2013-05-19 15:21:23ERROR [root] 'domain_id'
 Traceback (most recent call last):
   File /usr/lib/python2.7/dist-packages/keystone/common/wsgi.py, line 236, 
 in __call__
 result = method(context, **params)
   File /usr/lib/python2.7/dist-packages/keystone/token/controllers.py, 
 line 82, in authenticate
 core.validate_auth_info(self, context, user_ref, tenant_ref)
   File /usr/lib/python2.7/dist-packages/keystone/token/core.py, line 84, 
 in validate_auth_info
 user_ref['domain_id'])
 KeyError: 'domain_id'

 2013-05-19 15:21:23DEBUG [keystone.common.wsgi] {error: {message: 
 An unexpected error prevented the server from fulfilling your request. 
 'domain_id', code: 500, title: Internal Server Error}}

 Keystone config

 ==
 url = ldap://192.168.1.111
 user = cn=admin,dc=example,dc=com
 password = 

Re: [Openstack] [Ceilometer][Ceilometer-API] Ceilometer-API Error 401 Unauthorized

2013-05-29 Thread Bruno Oliveira
Oh... Got it, Angus. Thank you!

I finally got it that for when using curl, I have first to get an AUTH
token
from keystone, in order to use that returned token in the HTTP GET for
the API.

Just sharing what I did:

$ curl -d '{auth:{passwordCredentials:{username: ceilometer,
password: SECRET}}}' -H Content-type: application/json
http://localhost:35357/v2.0/tokens


Returns:

{access: {token: {issued_at: 2013-05-29T15:17:07.501333, expires:
2013-05-30T15:17:07Z, id:
MIICbgYJKoZIhvcNAQcCoIICXzCCAlsCAQExCTAHBgUrDgMCGjCCAUcGCSqGSIb3DQEHAaCCATgEggE0eyJhY2Nlc3MiOiB7InRva2VuIjogeyJpc3N1ZWRfYXQiOiAiMjAxMy0wNS0yOVQxNToxNzowNy41MDEzMzMiLCAiZXhwaXJlcyI6ICIyMDEzLTA1LTMwVDE1OjE3OjA3WiIsICJpZCI6ICJwbGFjZWhvbGRlciJ9LCAic2VydmljZUNhdGFsb2ciOiBbXSwgInVzZXIiOiB7InVzZXJuYW1lIjogImFkbWluIiwgInJvbGVzX2xpbmtzIjogW10sICJpZCI6ICJkOTIwZmM4NWVjZDk0MjZlYmQ5ZTNmOGM3MzAwZjVkNCIsICJyb2xlcyI6IFtdLCAibmFtZSI6ICJhZG1pbiJ9LCAibWV0YWRhdGEiOiB7ImlzX2FkbWluIjogMCwgInJvbGVzIjogW119fX0xgf8wgfwCAQEwXDBXMQswCQYDVQQGEwJVUzEOMAwGA1UECBMFVW5zZXQxDjAMBgNVBAcTBVVuc2V0MQ4wDAYDVQQKEwVVbnNldDEYMBYGA1UEAxMPd3d3LmV4YW1wbGUuY29tAgEBMAcGBSsOAwIaMA0GCSqGSIb3DQEBAQUABIGAiiB9a3o5N2piewbmZU3Ng9ShhPHB4WiigGUocdrNeE24+RktDoRrM+uZKptjd6aanlAGbrAUKpi5Uj-oNAbmKUt1CK-154aUaUpcy8NJFNwIZA2hBafbofOWU6FceVDIc1yztr0bZRdSD-vDl0hrISi0mL961yU+uXFQRxeNtqY=},
serviceCatalog: [], user: {username: admin, roles_links: [],
id: d920fc85ecd9426ebd9e3f8c7300f5d4, roles: [], name: admin},
metadata: {is_admin: 0, roles: []}}}


Where the token is the value of the id therefore, a GET to get all the
meters, can be:


$ curl -k -D -H X-Auth-Token: MIICbgYJKoZIhvcNAQcCoIICXzCCAl
sCAQExCTAHBgUrDgMCGjCCAUcGCSqGSIb3DQEHAaCCATgEggE0eyJhY2Nlc3
MiOiB7InRva2VuIjogeyJpc3N1ZWRfYXQiOiAiMjAxMy0wNS0yOVQxNToxNz
owNy41MDEzMzMiLCAiZXhwaXJlcyI6ICIyMDEzLTA1LTMwVDE1OjE3OjA3Wi
IsICJpZCI6ICJwbGFjZWhvbGRlciJ9LCAic2VydmljZUNhdGFsb2ciOiBbXS
wgInVzZXIiOiB7InVzZXJuYW1lIjogImFkbWluIiwgInJvbGVzX2xpbmtzIj
ogW10sICJpZCI6ICJkOTIwZmM4NWVjZDk0MjZlYmQ5ZTNmOGM3MzAwZjVkNC
IsICJyb2xlcyI6IFtdLCAibmFtZSI6ICJhZG1pbiJ9LCAibWV0YWRhdGEiOi
B7ImlzX2FkbWluIjogMCwgInJvbGVzIjogW119fX0xgf8wgfwCAQEwXDBXMQ
swCQYDVQQGEwJVUzEOMAwGA1UECBMFVW5zZXQxDjAMBgNVBAcTBVVuc2V0MQ
4wDAYDVQQKEwVVbnNldDEYMBYGA1UEAxMPd3d3LmV4YW1wbGUuY29tAgEBMA
cGBSsOAwIaMA0GCSqGSIb3DQEBAQUABIGAiiB9a3o5N2piewbmZU3Ng9ShhP
HB4WiigGUocdrNeE24+RktDoRrM+uZKptjd6aanlAGbrAUKpi5Uj-oNAbmKUt1CK-
154aUaUpcy8NJFNwIZA2hBafbofOWU6FceVDIc1yztr0bZRdSD-
vDl0hrISi0mL961yU+uXFQRxeNtqY=  -X 'GET' -v http://localhost:8777/v2/meters


Which, indeed returned the metrics I was looking for.
Thank you a lot. I really appreciate it.

I tried using ceilometer-client (I just git cloned it, and ran sudo python
setup.py install,
nothing went wrong apparently), but when trying to run it like this:


$ ceilometer --os-username ceilometer --os-password ficrowstran02
--os-tenant-name admin --os-auth-url http://localhost:5000/v2.0 statistics

Returns:  invalid literal for int() with base 10: ''


Maybe because my AUTH Token is exceeds the 32/64-bit addressing of a
integer? Not sure... I'll figure it out and do the follow-up here.


Thank you for the great help!




On Mon, May 27, 2013 at 10:21 PM, Angus Salkeld asalk...@redhat.com wrote:

 On 27/05/13 11:14 -0300, Bruno Oliveira wrote:

 Hello stackers,

 I'm having a really hard time setting up ceilometer-api so I thought
 if I could ask you guys for some enlightment.

 I can clearly see data being pulled in the screens that are running
 /ceilometer-collector, ./ceilometer-agent-compute
 ,./ceilometer-agent-central

 Even the screen running ceilometer-api-server starts with no problem.

 But I cannot reach the api at all via curl. Neither by using its
 actual port (8777)
 nor using the port set in the virtual host of apache. All I'm getting
 is auth error

 $ curl http://127.0.0.1:8777  OR  $ curl http://127.0.0.1:9090
 ==**===
 html
 head
  title401 Unauthorized/title
 /head
 body
  h1401 Unauthorized/h1
  This server could not verify that you are authorized to access the
 document you requested. Either you supplied the wrong credentials
 (e.g., bad password), or your browser does not understand how to
 supply the credentials required.br /br /
 Authentication required
 ==**===


 Right, Authentication is required by the client, but you are not
 passing it any credentials.

 I'd suggest using python-ceilometerclient to do the auth for you:
 So use it like any other openstack client.

 try something like this:

 asalkeld@elf python-ceilometerclient (master)$ . ../devstack/openrc admin
 admin
 asalkeld@elf python-ceilometerclient (master)$ ceilometer resource-list
 +-**-++-+-**
 --**---+
 | Resource ID  | Source | User ID | Project ID
   |
 +-**-++-+-**
 --**---+
 | 

Re: [Openstack] VM Issues on Grizzly Install on Ubuntu 12.04

2013-05-29 Thread Farhan Patwa
Hi Darragh,
Thank you soo Much! That was it! Now I am able to connect to the VM with
no issues.

But I am back to another network issue I had when I had Folsom installed
on the same setup.
I would really appreciate if you can provide any pointers here.


I able to spawn VM get IP, set floating IP and now am trying to do some
development within the VM.
I am unable to connect to certain sites and ports:
git clone https://github.com/openstack-dev/devstack.git - -- This just
times out.

###
#
This is what works:
Wget google.com
Wget openstack.com
###
#
This is what hangs and times out:

Wget yahoo.com
Wget paypal.com
Wget facebook.com
Wget github.com
ubuntu@fpatwa-1:~$ wget github.com
--2013-05-10 19:08:19--  http://github.com/
Resolving github.com (github.com)... 204.232.175.90
Connecting to github.com (github.com)|204.232.175.90|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://github.com/ [following]
--2013-05-10 19:08:20--  https://github.com/
Connecting to github.com (github.com)|204.232.175.90|:443... connected.

###
#

The same commands works on the network node.


The pattern that I can see is that any SSL website fails (port 443) but
then something like yahoo fails also and its at port 80.


Here are my security rules:
+-+---+-+---+--+
| IP Protocol | From Port | To Port | IP Range  | Source Group |
+-+---+-+---+--+
| icmp| -1| -1  | 0.0.0.0/0 |  |
| tcp | 1 | 65535   | 0.0.0.0/0 |  |
| tcp | 22| 22  | 0.0.0.0/0 |  |
| udp | 1 | 65535   | 0.0.0.0/0 |  |
+-+---+-+---+--+



I have messed around with all kinds of combinations of security rules but
no luck so far.

Thanks,

-Farhan.




On 5/28/13 3:28 PM, Darragh O'Reilly dara2002-openst...@yahoo.com
wrote:

Hi,

the ping error connect: Network is unreachable means a route could not
be found.

The gateway 10.245.124.253 for the external subnet is not in the subnet
CIDR 10.245.124.64/26.


So I guess a default route was not setup here:
netnode$ ip netns exec router ns route -n

You will need to create the subnet with a CIDR that includes the gateway
ip - something like this:
quantum subnet-create ext-net-id 10.245.124.192/26 --gateway
10.245.124.253 --enable_dhcp False

Darragh.


- Original Message -
 From: Farhan Patwa farhan.pa...@utsa.edu
 To: Darragh OReilly darragh.orei...@yahoo.com; OpenStack Maillist
openstack@lists.launchpad.net
 Cc: 
 Sent: Tuesday, 28 May 2013, 19:52
 Subject: Re: [Openstack] VM Issues on Grizzly Install on Ubuntu 12.04
 
 Hi Darragh,
 Thanks a lot for your reply and suggestions.
 I am not able to ping the gateway ip from the namespace.
 Also eth0 is up but br-ex has unknown state?
 
#
##
 ###
 
 root@openstack-2:~# ip link
 1: lo: LOOPBACK,UP,LOWER_UP mtu 16436 qdisc noqueue state UNKNOWN
 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
 2: eth0: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc mq state UP
qlen
 1000
 link/ether 78:2b:cb:27:1f:c8 brd ff:ff:ff:ff:ff:ff
 3: eth1: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc mq state UP
qlen
 1000
 link/ether 78:2b:cb:27:1f:c9 brd ff:ff:ff:ff:ff:ff
 4: br-int: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc noqueue
state
 UNKNOWN 
 link/ether f2:3b:f7:1b:b0:46 brd ff:ff:ff:ff:ff:ff
 6: br-ex: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc noqueue state
 UNKNOWN 
 link/ether 78:2b:cb:27:1f:c8 brd ff:ff:ff:ff:ff:ff
 32: br-tun: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc noqueue
state
 UNKNOWN 
 link/ether 7e:6c:65:0f:c9:43 brd ff:ff:ff:ff:ff:ff
 
#
##
 ###
 
 
 Here is the result of the tcpdump as ping is being done:
 
 
#
##
 ###
 
 root@openstack-2:~# ip netns exec
 qrouter-32f35fb4-f9f1-4817-8818-fff832f73810 ping  -c1 10.245.124.253
 connect: Network is unreachable
 
 root@openstack-2:~# tcpdump -nei eth0
 tcpdump: WARNING: eth0: no IPv4 address assigned
 tcpdump: verbose output suppressed, use -v or -vv for full protocol
decode
 listening on eth0, link-type EN10MB (Ethernet), capture size 65535 bytes
 13:46:31.399055 00:26:88:7a:40:87  01:80:c2:00:00:00, 802.3, length 60:
 LLC, dsap STP (0x42) Individual, ssap STP (0x42) Command, ctrl 0x03: STP
 802.1w, Rapid STP, Flags [Proposal], bridge-id
 

[Openstack] python-keystoneclient 0.2.4 available on pypi

2013-05-29 Thread Dolph Mathews
python-keystoneclient 0.2.4 is primarily a security  bug fix release [1]
and is now available on pypi [2].

A few highlights concerning the auth_token middleware:

- Expired PKI tokens are now rejected [3]
- PKI token revocations lists are now cached using a configurable
expiration (revocation_cache_time) [4]
- The signing_dir configuration option now defaults to a secure, temporary
directory rather than the user's home directory [5]

Additionally, updating a user's password on the CLI can now be done
securely [6].

[1]: https://launchpad.net/python-keystoneclient/+milestone/0.2.4
[2]: https://pypi.python.org/pypi/python-keystoneclient
[3]: https://bugs.launchpad.net/python-keystoneclient/+bug/1179615
[4]: https://bugs.launchpad.net/python-keystoneclient/+bug/1076083
[5]: https://bugs.launchpad.net/python-keystoneclient/+bug/1181157
[6]: https://bugs.launchpad.net/python-keystoneclient/+bug/938315

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


Re: [Openstack] Keystone 8K header size limit

2013-05-29 Thread Dolph Mathews
Apologies, none of these configuration settings were documented in
etc/keystone.conf.sample. The last one is the one that controls this
behavior.

  [DEFAULT]

  # enforced by sizelimit middleware
(keystone.middleware:RequestBodySizeLimiter)
  max_request_body_size = 114688

  # limit the sizes of user  tenant ID/names
  max_param_size = 64

  # similar to max_param_size, but provides an exception for token values
  max_token_size = 8192

I also put these docs up for review: https://review.openstack.org/30932



-Dolph


On Wed, May 29, 2013 at 1:23 PM, Miller, Mark M (EB SW Cloud - RD -
Corvallis) mark.m.mil...@hp.com wrote:

  Hi Guang,

 We are running into a problem with PKI tokens being greater than 8K and
 having Keystone not able to validate them. Do you know of a workaround?

 Mark


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


Re: [Openstack] Keystone 8K header size limit

2013-05-29 Thread Miller, Mark M (EB SW Cloud - RD - Corvallis)
Thank you Dolph.

Mark

From: Dolph Mathews [mailto:dolph.math...@gmail.com]
Sent: Wednesday, May 29, 2013 12:55 PM
To: Miller, Mark M (EB SW Cloud - RD - Corvallis); openstack
Cc: Yee, Guang
Subject: Re: Keystone 8K header size limit

Apologies, none of these configuration settings were documented in 
etc/keystone.conf.sample. The last one is the one that controls this behavior.

  [DEFAULT]

  # enforced by sizelimit middleware 
(keystone.middleware:RequestBodySizeLimiter)
  max_request_body_size = 114688

  # limit the sizes of user  tenant ID/names
  max_param_size = 64

  # similar to max_param_size, but provides an exception for token values
  max_token_size = 8192

I also put these docs up for review: https://review.openstack.org/30932



-Dolph

On Wed, May 29, 2013 at 1:23 PM, Miller, Mark M (EB SW Cloud - RD - Corvallis) 
mark.m.mil...@hp.commailto:mark.m.mil...@hp.com wrote:
Hi Guang,

We are running into a problem with PKI tokens being greater than 8K and having 
Keystone not able to validate them. Do you know of a workaround?

Mark


___
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] VM Issues on Grizzly Install on Ubuntu 12.04

2013-05-29 Thread Darragh O'Reilly
Hi Farhan,

I was able to reproduce this with curl from the cirros 0.3.1 that supports ssl.

cirros$ curl -L github.com  # -L follow redirects

it just hangs and I get these ICMPs on the netnode's physical nic. 

20:33:10.811485 IP (tos 0xc0, ttl 63, id 13647, offset 0, flags [none], proto 
ICMP (1), length 576)
    192.168.101.2  204.232.175.90: ICMP 192.168.101.2 unreachable - need to 
frag (mtu 1454), length 556
IP (tos 0x0, ttl 51, id 54729, offset 0, flags [DF], proto TCP (6), length 1500)
    204.232.175.90.443  192.168.101.2.41237: Flags [.], seq 1:1449, ack 225, 
win 7, options [nop,nop,TS val 4208725487 ecr 171322], length 1448

So I reduced the mtu from the default 1500 to 1454 on the instance and now 
'curl -L github.com' works

cirros$ sudo ip link set mtu 1454 dev eth0

Will need to look into this more. Maybe to do with the GRE tunnels (+~20bytes?) 
or iptables. Anyway try reducing the mtu for now.

Darragh.


- Original Message -
 From: Farhan Patwa farhan.pa...@utsa.edu
 To: Darragh O'Reilly dara2002-openst...@yahoo.com; OpenStack Maillist 
 openstack@lists.launchpad.net
 Cc: 
 Sent: Wednesday, 29 May 2013, 18:14
 Subject: Re: [Openstack] VM Issues on Grizzly Install on Ubuntu 12.04
 
 Hi Darragh,
 Thank you soo Much! That was it! Now I am able to connect to the VM with
 no issues.
 
 But I am back to another network issue I had when I had Folsom installed
 on the same setup.
 I would really appreciate if you can provide any pointers here.
 
 
 I able to spawn VM get IP, set floating IP and now am trying to do some
 development within the VM.
 I am unable to connect to certain sites and ports:
 git clone https://github.com/openstack-dev/devstack.git - -- This just
 times out.
 
 ###
 #
 This is what works:
 Wget google.com
 Wget openstack.com
 ###
 #
 This is what hangs and times out:
 
 Wget yahoo.com
 Wget paypal.com
 Wget facebook.com
 Wget github.com
 ubuntu@fpatwa-1:~$ wget github.com
 --2013-05-10 19:08:19--  http://github.com/
 Resolving github.com (github.com)... 204.232.175.90
 Connecting to github.com (github.com)|204.232.175.90|:80... connected.
 HTTP request sent, awaiting response... 301 Moved Permanently
 Location: https://github.com/ [following]
 --2013-05-10 19:08:20--  https://github.com/
 Connecting to github.com (github.com)|204.232.175.90|:443... connected.
 
 ###
 #
 
 The same commands works on the network node.
 
 
 The pattern that I can see is that any SSL website fails (port 443) but
 then something like yahoo fails also and its at port 80.
 
 
 Here are my security rules:
 +-+---+-+---+--+
 | IP Protocol | From Port | To Port | IP Range  | Source Group |
 +-+---+-+---+--+
 | icmp        | -1        | -1      | 0.0.0.0/0 |              |
 | tcp         | 1         | 65535   | 0.0.0.0/0 |              |
 | tcp         | 22        | 22      | 0.0.0.0/0 |              |
 | udp         | 1         | 65535   | 0.0.0.0/0 |              |
 +-+---+-+---+--+
 
 
 
 I have messed around with all kinds of combinations of security rules but
 no luck so far.
 
 Thanks,
 
 -Farhan.
 
 
 
 
 On 5/28/13 3:28 PM, Darragh O'Reilly 
 dara2002-openst...@yahoo.com
 wrote:
 
 Hi,
 
 the ping error connect: Network is unreachable means a route 
 could not
 be found.
 
 The gateway 10.245.124.253 for the external subnet is not in the subnet
 CIDR 10.245.124.64/26.
 
 
 So I guess a default route was not setup here:
 netnode$ ip netns exec router ns route -n
 
 You will need to create the subnet with a CIDR that includes the gateway
 ip - something like this:
 quantum subnet-create ext-net-id 10.245.124.192/26 --gateway
 10.245.124.253 --enable_dhcp False
 
 Darragh.
 
 
 - Original Message -
  From: Farhan Patwa farhan.pa...@utsa.edu
  To: Darragh OReilly darragh.orei...@yahoo.com; OpenStack 
 Maillist
 openstack@lists.launchpad.net
  Cc: 
  Sent: Tuesday, 28 May 2013, 19:52
  Subject: Re: [Openstack] VM Issues on Grizzly Install on Ubuntu 12.04
 
  Hi Darragh,
  Thanks a lot for your reply and suggestions.
  I am not able to ping the gateway ip from the namespace.
  Also eth0 is up but br-ex has unknown state?
 
 #
 ##
  ###
 
  root@openstack-2:~# ip link
  1: lo: LOOPBACK,UP,LOWER_UP mtu 16436 qdisc noqueue state 
 UNKNOWN
      link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
  2: eth0: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc mq 
 state UP
 qlen
  1000
      link/ether 78:2b:cb:27:1f:c8 brd ff:ff:ff:ff:ff:ff
  3: eth1: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc mq 
 state UP

[Openstack] [Grizzly][Quantum] Floating IP is not reachable

2013-05-29 Thread Anil Vishnoi
Hi All,

I have a setup where controller/network node is running on one server and i
have another server as a compute node. I am able to launch the VM and VM
gets its private IP from its respective DHCP server as well. VM is
connected to its private network. Private network is attached to the router
and external network is set as a gateway for the router. I am able to
associate floating ip to the VM as well.

But when i ping this floating ip from internet, i am not able to ping.
Although i am able to ping the gateway ip of the router. I checked the ARP
entry for the floating ip, and its successfully resolving the arp for this
floating ip.

I can see this address in the router name space as well.

# ip netns exec qrouter-3d7dfce4-c19a-4448-b276-1631690a403c ip addr
14: lo: LOOPBACK,UP,LOWER_UP mtu 16436 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
   valid_lft forever preferred_lft forever
15: qr-e018e6ed-37: BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP mtu 1500
qdisc noqueue state UNKNOWN
link/ether fa:16:3e:f5:73:c5 brd ff:ff:ff:ff:ff:ff
inet 1.1.1.1/24 brd 1.1.1.255 scope global qr-e018e6ed-37
inet6 fe80::f816:3eff:fef5:73c5/64 scope link
   valid_lft forever preferred_lft forever
19: qg-d75a619f-ac: BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP mtu 1500
qdisc noqueue state UNKNOWN
link/ether fa:16:3e:2e:c6:4b brd ff:ff:ff:ff:ff:ff
inet 9.126.108.126/24 brd 9.126.108.255 scope global qg-d75a619f-ac
inet 9.126.108.127/32 brd 9.126.108.127 scope global qg-d75a619f-ac  
inet6 fe80::f816:3eff:fe2e:c64b/64 scope link
   valid_lft forever preferred_lft forever


So i can ping 9.126.108.126 but i am not able to ping 9.126.108.127. Also
both of these IP actually resolves to the same MAC address, is it expected
? I added rules in the default security group to allow TCP/UDP/ICMP traffic.

Please let me know if anybody has any clue on whats going on here , and how
can i further debug it. Please let me know if you need any other details.
-- 
Thanks
Anil
___
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] netns kernel of RedHat

2013-05-29 Thread Lei Zhang
Got it. Thx.


On Wed, May 29, 2013 at 10:32 PM, 彭勇 p...@pubyun.com wrote:

 and we need a new kernel for namespaces which provide flowing directory:

 /proc/self/ns/


 2013/5/29 Lei Zhang zhang.lei@gmail.com

 As I know, the netns depends on glibc.  It support setns after the glibc
 2.14.
 How ever, the RHEL is using glibc2.12. So it is possible to just using a
 new
 patched kernel?


 On Wed, May 29, 2013 at 6:02 PM, Pádraig Brady p...@draigbrady.com wrote:

 On 05/29/2013 09:59 AM, 彭勇 wrote:
  there is no netns support in RedHat kernel:
 
  https://bugzilla.redhat.com/show_bug.cgi?id=869004
 
  is there any progress of this feature?

 We expect to release an netns enabled kernel to
 RDO (http://openstack.redhat.com/) within the next couple of days

 thanks,
 Pádraig.


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




 --
 Lei Zhang

 Blog: http://jeffrey4l.github.io
 twitter/weibo: @jeffrey4l




 --
 彭勇 (Peng Yong)




-- 
Lei Zhang

Blog: http://jeffrey4l.github.io
twitter/weibo: @jeffrey4l
___
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] VM Issues on Grizzly Install on Ubuntu 12.04

2013-05-29 Thread Rahul Sharma
Hi Darragh,



Even I am facing the same issue of request getting timed out and even
updates getting hanged up for very long time. I followed your step of
reducing the MTU size from 1500 to 1454 and now everything works fine. I
tried this on Ubuntu instances.



This seems to be an issue with the Grizzly release. I had already started
email-thread earlier for this but was unable to find the root cause. Here
is the link to it:-

https://lists.launchpad.net/openstack/msg23993.html

Thank you for your suggestion of reducing the MTU size as it solved the
problem. You must file a bug for this so that this issue can be tracked.

Thanks and Regards
Rahul Sharma


On Thu, May 30, 2013 at 2:23 AM, Darragh O'Reilly 
dara2002-openst...@yahoo.com wrote:

 Hi Farhan,

 I was able to reproduce this with curl from the cirros 0.3.1 that supports
 ssl.

 cirros$ curl -L github.com  # -L follow redirects

 it just hangs and I get these ICMPs on the netnode's physical nic.

 20:33:10.811485 IP (tos 0xc0, ttl 63, id 13647, offset 0, flags [none],
 proto ICMP (1), length 576)
 192.168.101.2  204.232.175.90: ICMP 192.168.101.2 unreachable - need
 to frag (mtu 1454), length 556
 IP (tos 0x0, ttl 51, id 54729, offset 0, flags [DF], proto TCP (6), length
 1500)
 204.232.175.90.443  192.168.101.2.41237: Flags [.], seq 1:1449, ack
 225, win 7, options [nop,nop,TS val 4208725487 ecr 171322], length 1448

 So I reduced the mtu from the default 1500 to 1454 on the instance and now
 'curl -L github.com' works

 cirros$ sudo ip link set mtu 1454 dev eth0

 Will need to look into this more. Maybe to do with the GRE tunnels
 (+~20bytes?) or iptables. Anyway try reducing the mtu for now.

 Darragh.


 - Original Message -
  From: Farhan Patwa farhan.pa...@utsa.edu
  To: Darragh O'Reilly dara2002-openst...@yahoo.com; OpenStack Maillist
 openstack@lists.launchpad.net
  Cc:
  Sent: Wednesday, 29 May 2013, 18:14
  Subject: Re: [Openstack] VM Issues on Grizzly Install on Ubuntu 12.04
 
  Hi Darragh,
  Thank you soo Much! That was it! Now I am able to connect to the VM with
  no issues.
 
  But I am back to another network issue I had when I had Folsom installed
  on the same setup.
  I would really appreciate if you can provide any pointers here.
 
 
  I able to spawn VM get IP, set floating IP and now am trying to do some
  development within the VM.
  I am unable to connect to certain sites and ports:
  git clone https://github.com/openstack-dev/devstack.git - -- This just
  times out.
 
 
 ###
  #
  This is what works:
  Wget google.com
  Wget openstack.com
 
 ###
  #
  This is what hangs and times out:
 
  Wget yahoo.com
  Wget paypal.com
  Wget facebook.com
  Wget github.com
  ubuntu@fpatwa-1:~$ wget github.com
  --2013-05-10 19:08:19--  http://github.com/
  Resolving github.com (github.com)... 204.232.175.90
  Connecting to github.com (github.com)|204.232.175.90|:80... connected.
  HTTP request sent, awaiting response... 301 Moved Permanently
  Location: https://github.com/ [following]
  --2013-05-10 19:08:20--  https://github.com/
  Connecting to github.com (github.com)|204.232.175.90|:443... connected.
 
 
 ###
  #
 
  The same commands works on the network node.
 
 
  The pattern that I can see is that any SSL website fails (port 443) but
  then something like yahoo fails also and its at port 80.
 
 
  Here are my security rules:
  +-+---+-+---+--+
  | IP Protocol | From Port | To Port | IP Range  | Source Group |
  +-+---+-+---+--+
  | icmp| -1| -1  | 0.0.0.0/0 |  |
  | tcp | 1 | 65535   | 0.0.0.0/0 |  |
  | tcp | 22| 22  | 0.0.0.0/0 |  |
  | udp | 1 | 65535   | 0.0.0.0/0 |  |
  +-+---+-+---+--+
 
 
 
  I have messed around with all kinds of combinations of security rules but
  no luck so far.
 
  Thanks,
 
  -Farhan.
 
 
 
 
  On 5/28/13 3:28 PM, Darragh O'Reilly
  dara2002-openst...@yahoo.com
  wrote:
 
  Hi,
 
  the ping error connect: Network is unreachable means a route
  could not
  be found.
 
  The gateway 10.245.124.253 for the external subnet is not in the subnet
  CIDR 10.245.124.64/26.
 
 
  So I guess a default route was not setup here:
  netnode$ ip netns exec router ns route -n
 
  You will need to create the subnet with a CIDR that includes the gateway
  ip - something like this:
  quantum subnet-create ext-net-id 10.245.124.192/26 --gateway
  10.245.124.253 --enable_dhcp False
 
  Darragh.
 
 
  - Original Message -
   From: Farhan Patwa farhan.pa...@utsa.edu
   To: Darragh OReilly 

Re: [Openstack] Can I create a VM with 2 NICs while there is only one network?

2013-05-29 Thread Liu Wenmao
Hi Salvatore:

Thanks, I will try that.

Liu Wenmao


On Wed, May 29, 2013 at 6:07 PM, Salvatore Orlando sorla...@nicira.comwrote:

 I am afraid there is no way of having two NICs on the same network at the
 moment.

 If you are trying to deploy a VM which provides some form of network
 service, like packet filtering, you might think about implementing it as a
 quantum service plugin.
 The 'agent' for this plugin would plug two tap interfaces connected to the
 same network, and do the processing as you suggest.

 Clearly, this is not very easy, as it would require you to implement a
 plugin, possibly an API for it, as well as an agent which uses Quantum
 library functions for plugging/unplugging interfaces.
 The agent will also have the responsibility for starting/stopping the
 service you're providing.

 Salvatore


 On 28 May 2013 07:34, Liu Wenmao marvel...@gmail.com wrote:

 Thanks Salvatore

 I can create two ports with admin-state down, which are in the same
 network, but nova says that the two NICs of the VM can not be in the same
 network.

 Actually I want to redirect all the packets of the network to VM eth0,
 after some processes the VM sends the packets out to eth1, so the two NICs
 should be in the same network. Is it possible?


 root@node1:/usr/src/python-quantumclient# quantum port-create
 --admin-state-down net1
 Created a new port:

 +--+---+
 | Field| Value
   |

 +--+---+
 | admin_state_up   | False
   |
 | binding:capabilities | {port_filter: false}
  |
 | binding:vif_type | ovs
   |
 | device_id|
   |
 | device_owner |
   |
 | fixed_ips| {subnet_id:
 c11eaa0d-3aff-41a8-909a-1dfdfdf20f48, ip_address: 100.0.0.12} |
 | id   | ca48bce7-7e42-4263-8832-cffb6e99ac0a
  |
 | mac_address  | fa:16:3e:0e:08:e1
   |
 | name |
   |
 | network_id   | 17d31ea4-4473-4da0-9493-9a04fa5aff33
  |
 | status   | DOWN
  |
 | tenant_id| 53707d290204404dbff625378969c25c
  |

 +--+---+
 root@node1:/usr/src/python-quantumclient# quantum port-create
 --admin-state-down net1
 Created a new port:

 +--+---+
 | Field| Value
   |

 +--+---+
 | admin_state_up   | False
   |
 | binding:capabilities | {port_filter: false}
  |
 | binding:vif_type | ovs
   |
 | device_id|
   |
 | device_owner |
   |
 | fixed_ips| {subnet_id:
 c11eaa0d-3aff-41a8-909a-1dfdfdf20f48, ip_address: 100.0.0.13} |
 | id   | 8a320aae-4a16-4a78-acba-1ec505cfe914
  |
 | mac_address  | fa:16:3e:db:c5:15
   |
 | name |
   |
 | network_id   | 17d31ea4-4473-4da0-9493-9a04fa5aff33
  |
 | status   | DOWN
  |
 | tenant_id| 53707d290204404dbff625378969c25c
  |

 +--+---+

 root@node1:/usr/src/python-quantumclient# nova boot --image cirros
 --flavor m1.tiny --nic port-id=ca48bce7-7e42-4263-8832-cffb6e99ac0a --nic
 port-id=8a320aae-4a16-4a78-acba-1ec505cfe914  testips
 ERROR: The server has either erred or is incapable of performing the
 requested operation. (HTTP 500) (Request-ID:
 req-ac85648c-4e9b-4624-bf88-a6ceeb8e79aa)

 nova-api.log:
 3028 2013-05-28 11:50:06.007 3232 TRACE nova.api.openstack   File
 /usr/lib/python2.7/contextlib.py, line 24, in __exit__
 3029 2013-05-28 11:50:06.007 3232 TRACE nova.api.openstack
 self.gen.next()
 3030 2013-05-28 11:50:06.007 3232 TRACE nova.api.openstack   File
 /usr/local/lib/python2.7/dist-packages/nova-2013.1-py2.7.egg/nova/compute/api.py,
 line 522, in _validate_and_provision_instance
 3031 2013-05-28 11:50:06.007 3232 

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_havana_horizon_trunk #57

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_horizon_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_horizon_trunk/57/Project:precise_havana_horizon_trunkDate of build:Wed, 29 May 2013 03:30:24 -0400Build duration:3 min 3 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesEnable snapshot quota settingby jprovazneditopenstack_dashboard/usage/quotas.pyeditopenstack_dashboard/dashboards/project/volumes/views.pyaddopenstack_dashboard/dashboards/project/volumes/templates/volumes/_quota.htmleditopenstack_dashboard/dashboards/project/volumes/templates/volumes/_create_snapshot.htmleditopenstack_dashboard/test/test_data/utils.pyeditopenstack_dashboard/dashboards/admin/projects/tests.pyeditopenstack_dashboard/dashboards/project/volumes/templates/volumes/_create.htmleditopenstack_dashboard/test/tests/quotas.pyeditopenstack_dashboard/dashboards/admin/info/tests.pyeditopenstack_dashboard/dashboards/admin/projects/workflows.pyaddopenstack_dashboard/test/test_data/cinder_data.pyeditopenstack_dashboard/dashboards/project/images_and_snapshots/volume_snapshots/tests.pyedithorizon/templates/horizon/common/_quota_summary.htmlConsole Output[...truncated 676 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 28, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-cec7ebd2-76ca-4844-ab6f-efd8e24cfa33', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-cec7ebd2-76ca-4844-ab6f-efd8e24cfa33', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/horizon/havana /tmp/tmpIN5GcF/horizonmk-build-deps -i -r -t apt-get -y /tmp/tmpIN5GcF/horizon/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-cec7ebd2-76ca-4844-ab6f-efd8e24cfa33', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-cec7ebd2-76ca-4844-ab6f-efd8e24cfa33', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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_havana_cinder_trunk #97

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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_havana_quantum_trunk #155

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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_havana_ceilometer_trunk #84

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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: saucy_havana_cinder_trunk #68

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_cinder_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_cinder_trunk/68/Project:saucy_havana_cinder_trunkDate of build:Wed, 29 May 2013 04:30:22 -0400Build duration:5 min 55 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesCatch and report errors from copy image to volume.by thingeeeditcinder/volume/drivers/xenapi/sm.pyeditcinder/exception.pyeditcinder/volume/manager.pyConsole Output[...truncated 5254 lines...]dch -a [c355d68] Deprecating old dot path locations for Folsom configsdch -a [f9fd91e] solidfire: Add ability to override account prefixdch -a [20c2be3] Fixes an get_volume_stats reporting issuedch -a [93e8b63] Increased unit test code coveragedch -a [0fbe00f] Create an LVM utility to use for local storage.dch -a [68f28d2] Add CINDER_LOCALEDIR env variabledch -a [7cfb038] Remove gettext.install() from cinder/__init__.pydch -a [c23f620] Use flake8 and hacking.dch -a [381049b] Use pbr instead of openstack.common.setup.dch -a [59fc6cb] Change the type of "free_capacity_gb" to be floatdch -a [6d2d88c] Set default values for NFS/GlusterFS share_config filesdch -a [4580ee9] Add missing spaces to iscsi_iotype helpdch -a [bff14b9] Adds notifiers to both volumeTypes and volumeTypeExtraSpecsdch -a [caeb4a2] Fix missing spaces in Huawei Loggingdch -a [d75fafa] Add pylint-based lintstack test to tox environmentdch -a [7dad062] Remove outdated cinder test docdch -a [7ad6ac4] Implement copy_image_to_volume and copy_volume_to_image on nfs backendsdch -a [7996aaa] Update import of oslo's processutils.dch -a [54a2ee4] Fix abilINFO:root:Destroying schroot.ity to add custom volume_backend_namedch -a [cb3fb51] Add db client packages to dev env setup doc.dch -a [db991e6] Remove old_name from kwargs when using IET helper.dch -a [d52a0f2] Copy the RHEL6 eventlet workaround from Oslodch -a [7546682] Remove setuptools-git as run time dependencydch -a [006d673] Fix LHN driver to allow backend name configurationdch -a [0ee20a0] Fixes 3par driver methods that were double lockingdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC cinder_2013.2+git201305290430~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A cinder_2013.2+git201305290430~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'cinder_2013.2+git201305290430~saucy-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'cinder_2013.2+git201305290430~saucy-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_havana_nova_trunk #235

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/235/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 05:30:26 -0400Build duration:3 min 58 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFixes encoding issues for nova api req body.by rohan.kanadeeditnova/tests/api/openstack/test_wsgi.pyeditnova/api/openstack/wsgi.pyConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-4751f8e0-2973-45bc-8327-4eac998863cd', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-4751f8e0-2973-45bc-8327-4eac998863cd', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpYe9GE_/novamk-build-deps -i -r -t apt-get -y /tmp/tmpYe9GE_/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-4751f8e0-2973-45bc-8327-4eac998863cd', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-4751f8e0-2973-45bc-8327-4eac998863cd', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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_havana_nova_trunk #236

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/236/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 06:30:24 -0400Build duration:4 min 12 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesVerify that CONF.compute_driver is definedby pasquier.simoneditnova/virt/driver.pyConsole Output[...truncated 796 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-12747cef-742a-4846-a80f-5fd0e47ae92d', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-12747cef-742a-4846-a80f-5fd0e47ae92d', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmp6VdCIG/novamk-build-deps -i -r -t apt-get -y /tmp/tmp6VdCIG/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-12747cef-742a-4846-a80f-5fd0e47ae92d', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-12747cef-742a-4846-a80f-5fd0e47ae92d', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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_havana_quantum_trunk #156

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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_havana_nova_trunk #237

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/237/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 07:33:37 -0400Build duration:6 min 37 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesMake testr preserve existing OS_* env vars valuesby rpodolyakaedit.testr.confClean up failed image transfers in instance spawnby guochboeditnova/virt/powervm/blockdev.pyeditnova/tests/virt/powervm/test_powervm.pyConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-482b3787-7d21-49d5-a763-4079dc5d5098', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-482b3787-7d21-49d5-a763-4079dc5d5098', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpvs7BIp/novamk-build-deps -i -r -t apt-get -y /tmp/tmpvs7BIp/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-482b3787-7d21-49d5-a763-4079dc5d5098', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-482b3787-7d21-49d5-a763-4079dc5d5098', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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_havana_horizon_trunk #58

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_horizon_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_horizon_trunk/58/Project:precise_havana_horizon_trunkDate of build:Wed, 29 May 2013 08:00:30 -0400Build duration:4 min 14 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesRenames tools/pip-requires to requirements.txtby jtomasekdeletetools/test-requiresedittox.iniedittools/install_venv.pyeditdoc/source/quickstart.rstaddtest-requirements.txtdeletetools/pip-requiresaddrequirements.txteditrun_tests.sheditREADME.rsteditMANIFEST.inConsole Output[...truncated 676 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 28, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-ce46c0d0-7d36-4664-82c0-82cb6e315bac', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-ce46c0d0-7d36-4664-82c0-82cb6e315bac', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/horizon/havana /tmp/tmpd_18cT/horizonmk-build-deps -i -r -t apt-get -y /tmp/tmpd_18cT/horizon/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-ce46c0d0-7d36-4664-82c0-82cb6e315bac', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-ce46c0d0-7d36-4664-82c0-82cb6e315bac', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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_havana_quantum_trunk #157

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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_havana_keystone_trunk #71

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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_havana_ceilometer_trunk #85

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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_havana_cinder_trunk #98

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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_havana_quantum_trunk #158

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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: saucy_havana_cinder_trunk #69

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_cinder_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_cinder_trunk/69/Project:saucy_havana_cinder_trunkDate of build:Wed, 29 May 2013 11:10:34 -0400Build duration:13 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesRemove execute permissions from test files.by avishayeditcinder/tests/integrated/test_volumes.pyeditcinder/tests/integrated/integrated_helpers.pyeditcinder/tests/test_storwize_svc.pyConsole Output[...truncated 5236 lines...]dch -a [c355d68] Deprecating old dot path locations for Folsom configsdch -a [f9fd91e] solidfire: Add ability to override account prefixdch -a [20c2be3] Fixes an get_volume_stats reporting issuedch -a [93e8b63] Increased unit test code coveragedch -a [0fbe00f] Create an LVM utility to use for local storage.dch -a [68f28d2] Add CINDER_LOCALEDIR env variabledch -a [7cfb038] Remove gettext.install() from cinder/__init__.pydch -a [c23f620] Use flake8 and hacking.dch -a [381049b] Use pbr instead of openstack.common.setup.dch -a [59fc6cb] Change the type of "free_capacity_gb" to be floatdch -a [6d2d88c] Set default values for NFS/GlusterFS share_config filesdch -a [4580ee9] Add missing spaces to iscsi_iotype helpdch -a [bff14b9] Adds notifiers to both volumeTypes and volumeTypeExtraSpecsdch -a [caeb4a2] Fix missing spaces in Huawei Loggingdch -a [d75fafa] Add pylint-based lintstack test to tox environmentdch -a [7dad062] Remove outdated cinder test docdch -a [7ad6ac4] Implement copy_image_to_volume and copy_volume_to_image on nfs backendsdch -a [7996aaa] UpINFO:root:Destroying schroot.date import of oslo's processutils.dch -a [54a2ee4] Fix ability to add custom volume_backend_namedch -a [cb3fb51] Add db client packages to dev env setup doc.dch -a [db991e6] Remove old_name from kwargs when using IET helper.dch -a [d52a0f2] Copy the RHEL6 eventlet workaround from Oslodch -a [7546682] Remove setuptools-git as run time dependencydch -a [006d673] Fix LHN driver to allow backend name configurationdch -a [0ee20a0] Fixes 3par driver methods that were double lockingdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC cinder_2013.2+git201305291110~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A cinder_2013.2+git201305291110~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'cinder_2013.2+git201305291110~saucy-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'cinder_2013.2+git201305291110~saucy-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_havana_nova_trunk #238

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/238/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 11:22:56 -0400Build duration:12 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesUsing unicode() to handle images propertiesby lzy.deveditnova/compute/api.pyAPI Extensions framework for v3 API Part 2by cyeoheditnova/api/openstack/compute/plugins/__init__.pyeditnova/api/openstack/compute/__init__.pyeditnova/api/openstack/__init__.pyaddnova/api/openstack/compute/plugins/v3/extension_info.pyaddnova/tests/api/openstack/compute/plugins/v3/test_keypairs.pyeditnova/api/openstack/extensions.pyeditsetup.cfgeditnova/tests/api/openstack/fakes.pyeditetc/nova/policy.jsoneditnova/tests/fake_policy.pyaddnova/api/openstack/compute/plugins/v3/keypairs.pyaddnova/api/openstack/compute/plugins/v3/servers.pyConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-0d2bc26b-675c-4077-860d-d3ba3b2fca35', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-0d2bc26b-675c-4077-860d-d3ba3b2fca35', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpYX7jwa/novamk-build-deps -i -r -t apt-get -y /tmp/tmpYX7jwa/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-0d2bc26b-675c-4077-860d-d3ba3b2fca35', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-0d2bc26b-675c-4077-860d-d3ba3b2fca35', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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_havana_python-quantumclient_trunk #20

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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_havana_nova_trunk #239

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/239/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 11:47:19 -0400Build duration:6 min 31 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd missing os.path.abspath around csrfile.by driptoneditnova/crypto.pyConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-41ff2244-2c01-493d-8264-795ac2db29a5', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-41ff2244-2c01-493d-8264-795ac2db29a5', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpkqsZ6e/novamk-build-deps -i -r -t apt-get -y /tmp/tmpkqsZ6e/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-41ff2244-2c01-493d-8264-795ac2db29a5', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-41ff2244-2c01-493d-8264-795ac2db29a5', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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: saucy_havana_nova_trunk #162

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/162/Project:saucy_havana_nova_trunkDate of build:Wed, 29 May 2013 11:47:57 -0400Build duration:13 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesAdd missing os.path.abspath around csrfile.by driptoneditnova/crypto.pyConsole Output[...truncated 10816 lines...]Machine Architecture: amd64Package: novaPackage-Time: 376Source-Version: 1:2013.2+git201305291149~saucy-0ubuntu1Space: 84740Status: attemptedVersion: 1:2013.2+git201305291149~saucy-0ubuntu1Finished at 20130529-1200Build needed 00:06:16, 84740k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291149~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291149~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmp3fJ1k0/novamk-build-deps -i -r -t apt-get -y /tmp/tmp3fJ1k0/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 68cc1cd511298208dde59878bfbef474a3625c9f..HEAD --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:2013.2+git201305291149~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [2cd1783] Add missing os.path.abspath around csrfile.dch -a [e4b85c1] Make testr preserve existing OS_* env vars valuesdch -a [fa5079c] Verify that CONF.compute_driver is defineddch -a [d7da449] API Extensions framework for v3 API Part 2dch -a [832a66c] Using unicode() to handle image's propertiesdch -a [781815b] Fixes encoding issues for nova api req body.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201305291149~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A nova_2013.2+git201305291149~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291149~saucy-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291149~saucy-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_havana_nova_trunk #240

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/240/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 12:00:58 -0400Build duration:8 min 22 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd tests for some db.security_group_* methodsby rbogorodskiyeditnova/tests/test_db_api.pyFix volume IO usage notifications been sent too often.by michael.kerrineditnova/conductor/manager.pyeditnova/db/api.pyeditnova/compute/manager.pyeditnova/tests/conductor/test_conductor.pyeditnova/tests/compute/test_compute.pyeditnova/db/sqlalchemy/api.pyConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-35a7d820-b59c-4196-9556-c25a5b242973', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-35a7d820-b59c-4196-9556-c25a5b242973', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpnBvNqy/novamk-build-deps -i -r -t apt-get -y /tmp/tmpnBvNqy/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-35a7d820-b59c-4196-9556-c25a5b242973', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-35a7d820-b59c-4196-9556-c25a5b242973', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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: saucy_havana_nova_trunk #163

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/163/Project:saucy_havana_nova_trunkDate of build:Wed, 29 May 2013 12:01:52 -0400Build duration:20 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40ChangesAdd tests for some db.security_group_* methodsby rbogorodskiyeditnova/tests/test_db_api.pyFix volume IO usage notifications been sent too often.by michael.kerrineditnova/db/api.pyeditnova/tests/compute/test_compute.pyeditnova/compute/manager.pyeditnova/db/sqlalchemy/api.pyeditnova/conductor/manager.pyeditnova/tests/conductor/test_conductor.pyConsole Output[...truncated 10822 lines...]Package-Time: 590Source-Version: 1:2013.2+git201305291203~saucy-0ubuntu1Space: 84768Status: attemptedVersion: 1:2013.2+git201305291203~saucy-0ubuntu1Finished at 20130529-1221Build needed 00:09:50, 84768k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291203~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291203~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpnsL3wA/novamk-build-deps -i -r -t apt-get -y /tmp/tmpnsL3wA/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 68cc1cd511298208dde59878bfbef474a3625c9f..HEAD --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:2013.2+git201305291203~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [3cf4cb2] Fix volume IO usage notifications been sent too often.dch -a [2cd1783] Add missing os.path.abspath around csrfile.dch -a [9fd4d9e] Add tests for some db.security_group_* methodsdch -a [e4b85c1] Make testr preserve existing OS_* env vars valuesdch -a [fa5079c] Verify that CONF.compute_driver is defineddch -a [d7da449] API Extensions framework for v3 API Part 2dch -a [832a66c] Using unicode() to handle image's propertiesdch -a [781815b] Fixes encoding issues for nova api req body.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201305291203~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A nova_2013.2+git201305291203~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291203~saucy-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291203~saucy-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_havana_nova_trunk #241

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/241/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 12:31:42 -0400Build duration:9 min 14 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesRename policy auth for V3 os-fixed-ipsby cyeoheditnova/tests/fake_policy.pyeditnova/api/openstack/compute/plugins/v3/fixed_ips.pyeditetc/nova/policy.jsonDont delete sys_meta on instance deleteby cbehrenseditnova/tests/test_db_api.pyeditnova/tests/compute/test_compute_utils.pyeditnova/db/sqlalchemy/api.pyConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-956b8278-f50c-4da7-938a-4edaeb55977e', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-956b8278-f50c-4da7-938a-4edaeb55977e', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmp7b9JvA/novamk-build-deps -i -r -t apt-get -y /tmp/tmp7b9JvA/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-956b8278-f50c-4da7-938a-4edaeb55977e', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-956b8278-f50c-4da7-938a-4edaeb55977e', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: precise_grizzly_quantum_trunk #510

2013-05-29 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/510/Project:precise_grizzly_quantum_trunkDate of build:Wed, 29 May 2013 10:01:34 -0400Build duration:2 hr 49 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesAdd support for dnsmasq version 2.48by gkottoneditquantum/tests/unit/test_linux_dhcp.pyeditquantum/agent/linux/dhcp.pyeditquantum/tests/unit/test_dhcp_agent.pyeditquantum/agent/dhcp_agent.pyConsole Output[...truncated 5190 lines...]Build-Time: 9983Distribution: precise-grizzlyFail-Stage: buildHost Architecture: amd64Install-Time: 57Job: quantum_2013.1+git201305291001~precise-0ubuntu1.dscMachine Architecture: amd64Package: quantumPackage-Time: 10050Source-Version: 1:2013.1+git201305291001~precise-0ubuntu1Space: 19212Status: attemptedVersion: 1:2013.1+git201305291001~precise-0ubuntu1Finished at 20130529-1250Build needed 02:47:30, 19212k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'quantum_2013.1+git201305291001~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'quantum_2013.1+git201305291001~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/quantum/grizzly /tmp/tmpgsxTyb/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpgsxTyb/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hdch -b -D precise --newversion 1:2013.1+git201305291001~precise-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC quantum_2013.1+git201305291001~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A quantum_2013.1+git201305291001~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'quantum_2013.1+git201305291001~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'quantum_2013.1+git201305291001~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: saucy_havana_nova_trunk #164

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/164/Project:saucy_havana_nova_trunkDate of build:Wed, 29 May 2013 12:31:42 -0400Build duration:19 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesRename policy auth for V3 os-fixed-ipsby cyeoheditnova/api/openstack/compute/plugins/v3/fixed_ips.pyeditetc/nova/policy.jsoneditnova/tests/fake_policy.pyDont delete sys_meta on instance deleteby cbehrenseditnova/tests/compute/test_compute_utils.pyeditnova/tests/test_db_api.pyeditnova/db/sqlalchemy/api.pyConsole Output[...truncated 10828 lines...]Space: 84764Status: attemptedVersion: 1:2013.2+git201305291232~saucy-0ubuntu1Finished at 20130529-1250Build needed 00:07:33, 84764k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291232~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291232~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmplqS6cE/novamk-build-deps -i -r -t apt-get -y /tmp/tmplqS6cE/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 68cc1cd511298208dde59878bfbef474a3625c9f..HEAD --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:2013.2+git201305291232~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [4885aa2] Don't delete sys_meta on instance deletedch -a [3cf4cb2] Fix volume IO usage notifications been sent too often.dch -a [2cd1783] Add missing os.path.abspath around csrfile.dch -a [9fd4d9e] Add tests for some db.security_group_* methodsdch -a [e4b85c1] Make testr preserve existing OS_* env vars valuesdch -a [fa5079c] Verify that CONF.compute_driver is defineddch -a [86a2644] Rename policy auth for V3 os-fixed-ipsdch -a [d7da449] API Extensions framework for v3 API Part 2dch -a [832a66c] Using unicode() to handle image's propertiesdch -a [781815b] Fixes encoding issues for nova api req body.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201305291232~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A nova_2013.2+git201305291232~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291232~saucy-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291232~saucy-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: saucy_havana_python-novaclient_trunk #19

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_python-novaclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_python-novaclient_trunk/19/Project:saucy_havana_python-novaclient_trunkDate of build:Wed, 29 May 2013 13:00:40 -0400Build duration:3 min 2 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesAdd MethodNotAllowed and Conflict exception classesby bcwaldoneditnovaclient/exceptions.pyConsole Output[...truncated 1357 lines...]|Signed-off-by: Chuck Short |---| tests/test_shell.py | 1 +| 1 file changed, 1 insertion(+)||diff --git a/tests/test_shell.py b/tests/test_shell.py|index ae78815..c936445 100644|--- a/tests/test_shell.py|+++ b/tests/test_shell.py--No file to patch.  Skipping patch.1 out of 1 hunk ignoredPatch skip-failing-test.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-54967d08-402c-44cd-b68f-52c10bfeb356', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-54967d08-402c-44cd-b68f-52c10bfeb356', '-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/python-novaclient/havana /tmp/tmpp369KN/python-novaclientmk-build-deps -i -r -t apt-get -y /tmp/tmpp369KN/python-novaclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 9d4db6f740fe00f50c77920b5ef7a4fbd08d181f..HEAD --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:2.13.0.59.gc6b913c+git201305291300~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [f2559c4] Add MethodNotAllowed and Conflict exception classesdch -a [c34c371] Move tests into the novaclient package.dch -a [51f0596] Add CONTRIBUTING file.dch -a [3bbdcda] Rename requires files to standard names.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-54967d08-402c-44cd-b68f-52c10bfeb356', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-54967d08-402c-44cd-b68f-52c10bfeb356', '-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_havana_python-novaclient_trunk #42

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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_havana_nova_trunk #242

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/242/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 13:01:55 -0400Build duration:4 min 33 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesSync shadow table for 156 migrationby borisaddnova/db/sqlalchemy/migrate_repo/versions/182_fix_156_migration_sync_shadow_table.pyeditnova/tests/test_migrations.pySync shadow table for 157 migrationby boriseditnova/tests/test_migrations.pyaddnova/db/sqlalchemy/migrate_repo/versions/183_fix_157_migration_sync_shadow_table.pySync shadow table for 159 migrationby borisaddnova/db/sqlalchemy/migrate_repo/versions/184_sqlite_upgrade.sqleditnova/tests/test_migrations.pyaddnova/db/sqlalchemy/migrate_repo/versions/184_sqlite_downgrade.sqladdnova/db/sqlalchemy/migrate_repo/versions/184_fix_159_migration_sync_shadow_table.pyAdd db test that checks that shadow tables are up-to-dateby boriseditnova/tests/test_db_api.pyConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-074ae522-c47b-4792-b831-aace5ee0e973', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-074ae522-c47b-4792-b831-aace5ee0e973', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpJyfgKn/novamk-build-deps -i -r -t apt-get -y /tmp/tmpJyfgKn/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-074ae522-c47b-4792-b831-aace5ee0e973', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-074ae522-c47b-4792-b831-aace5ee0e973', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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: saucy_havana_nova_trunk #165

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/165/Project:saucy_havana_nova_trunkDate of build:Wed, 29 May 2013 13:00:47 -0400Build duration:8 min 51 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesSync shadow table for 156 migrationby boriseditnova/tests/test_migrations.pyaddnova/db/sqlalchemy/migrate_repo/versions/182_fix_156_migration_sync_shadow_table.pySync shadow table for 157 migrationby borisaddnova/db/sqlalchemy/migrate_repo/versions/183_fix_157_migration_sync_shadow_table.pyeditnova/tests/test_migrations.pySync shadow table for 159 migrationby borisaddnova/db/sqlalchemy/migrate_repo/versions/184_sqlite_downgrade.sqleditnova/tests/test_migrations.pyaddnova/db/sqlalchemy/migrate_repo/versions/184_fix_159_migration_sync_shadow_table.pyaddnova/db/sqlalchemy/migrate_repo/versions/184_sqlite_upgrade.sqlAdd db test that checks that shadow tables are up-to-dateby boriseditnova/tests/test_db_api.pyConsole Output[...truncated 10850 lines...]Finished at 20130529-1309Build needed 00:04:27, 84828k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291302~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291302~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpjxcjOg/novamk-build-deps -i -r -t apt-get -y /tmp/tmpjxcjOg/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 68cc1cd511298208dde59878bfbef474a3625c9f..HEAD --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:2013.2+git201305291302~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [4885aa2] Don't delete sys_meta on instance deletedch -a [3cf4cb2] Fix volume IO usage notifications been sent too often.dch -a [2cd1783] Add missing os.path.abspath around csrfile.dch -a [3e5c88d] Add db test that checks that shadow tables are up-to-datedch -a [3718d39] Sync shadow table for 159 migrationdch -a [893eef7] Sync shadow table for 157 migrationdch -a [0c30c4c] Sync shadow table for 156 migrationdch -a [9fd4d9e] Add tests for some db.security_group_* methodsdch -a [e4b85c1] Make testr preserve existing OS_* env vars valuesdch -a [fa5079c] Verify that CONF.compute_driver is defineddch -a [86a2644] Rename policy auth for V3 os-fixed-ipsdch -a [d7da449] API Extensions framework for v3 API Part 2dch -a [832a66c] Using unicode() to handle image's propertiesdch -a [781815b] Fixes encoding issues for nova api req body.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201305291302~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A nova_2013.2+git201305291302~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291302~saucy-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291302~saucy-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_havana_quantum_trunk #159

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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_havana_nova_trunk #243

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/243/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 13:31:33 -0400Build duration:4 min 57 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFix internationalization for some LOG messagesby cyeoheditnova/api/openstack/__init__.pyAdd missing tests for nova.db.api.quota_* methodsby sskripnickeditnova/tests/test_db_api.pyConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-989fdfc0-3bac-4838-902e-8b5771cd9d91', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-989fdfc0-3bac-4838-902e-8b5771cd9d91', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpXSkAiP/novamk-build-deps -i -r -t apt-get -y /tmp/tmpXSkAiP/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-989fdfc0-3bac-4838-902e-8b5771cd9d91', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-989fdfc0-3bac-4838-902e-8b5771cd9d91', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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: saucy_havana_quantum_trunk #91

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_quantum_trunk/91/Project:saucy_havana_quantum_trunkDate of build:Wed, 29 May 2013 13:30:23 -0400Build duration:10 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesInitial Modular L2 plugin implementation.by rkukuraaddquantum/plugins/ml2/managers.pyaddquantum/plugins/ml2/READMEaddquantum/plugins/ml2/db.pyeditsetup.cfgaddquantum/tests/unit/ml2/__init__.pyeditquantum/db/migration/alembic_migrations/versions/folsom_initial.pyaddquantum/plugins/ml2/drivers/type_flat.pyaddquantum/tests/unit/ml2/test_ml2_plugin.pyaddquantum/plugins/ml2/drivers/type_local.pyaddetc/quantum/plugins/ml2/ml2_conf.iniaddquantum/plugins/ml2/config.pyaddquantum/db/migration/alembic_migrations/versions/5ac71e65402c_ml2_initial.pyaddquantum/plugins/ml2/rpc.pyaddquantum/tests/unit/ml2/test_rpcapi.pyaddquantum/plugins/ml2/plugin.pyedittools/pip-requiresaddquantum/plugins/ml2/driver_api.pyaddquantum/plugins/ml2/models.pyaddquantum/plugins/ml2/drivers/__init__.pyaddquantum/plugins/ml2/__init__.pyaddquantum/plugins/ml2/drivers/type_vlan.pyeditquantum/extensions/providernet.pyaddquantum/tests/unit/ml2/test_security_group.pyeditquantum/extensions/portbindings.pyaddquantum/tests/unit/ml2/test_agent_scheduler.pyConsole Output[...truncated 25794 lines...]Host Architecture: amd64Install-Time: 64Job: quantum_2013.2+git201305291330~saucy-0ubuntu1.dscMachine Architecture: amd64Package: quantumPackage-Time: 466Source-Version: 1:2013.2+git201305291330~saucy-0ubuntu1Space: 89304Status: attemptedVersion: 1:2013.2+git201305291330~saucy-0ubuntu1Finished at 20130529-1341Build needed 00:07:46, 89304k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'quantum_2013.2+git201305291330~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'quantum_2013.2+git201305291330~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/quantum/havana /tmp/tmpvvZ20g/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpvvZ20g/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 3d0e0c554f22cc122c32d8dfa99509c9b432a62d..HEAD --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:2013.2+git201305291330~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [f572a5e] Initial Modular L2 plugin implementation.dch -a [3102bd7] Revert dependency on oslo.config 1.2.0dch -a [9f1d2e0] Configurable external gateway modesdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC quantum_2013.2+git201305291330~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A quantum_2013.2+git201305291330~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'quantum_2013.2+git201305291330~saucy-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'quantum_2013.2+git201305291330~saucy-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-not

[Openstack-ubuntu-testing-notifications] Build Still Failing: saucy_havana_nova_trunk #166

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/166/Project:saucy_havana_nova_trunkDate of build:Wed, 29 May 2013 13:30:24 -0400Build duration:11 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFix internationalization for some LOG messagesby cyeoheditnova/api/openstack/__init__.pyAdd missing tests for nova.db.api.quota_* methodsby sskripnickeditnova/tests/test_db_api.pyConsole Output[...truncated 10856 lines...]ERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291331~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291331~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpJzoURA/novamk-build-deps -i -r -t apt-get -y /tmp/tmpJzoURA/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 68cc1cd511298208dde59878bfbef474a3625c9f..HEAD --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:2013.2+git201305291331~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [4885aa2] Don't delete sys_meta on instance deletedch -a [3cf4cb2] Fix volume IO usage notifications been sent too often.dch -a [2cd1783] Add missing os.path.abspath around csrfile.dch -a [3e5c88d] Add db test that checks that shadow tables are up-to-datedch -a [3718d39] Sync shadow table for 159 migrationdch -a [893eef7] Sync shadow table for 157 migrationdch -a [0c30c4c] Sync shadow table for 156 migrationdch -a [0a7954d] Add missing tests for nova.db.api.quota_* methodsdch -a [9fd4d9e] Add tests for some db.security_group_* methodsdch -a [e4b85c1] Make testr preserve existing OS_* env vars valuesdch -a [fa5079c] Verify that CONF.compute_driver is defineddch -a [86a2644] Rename policy auth for V3 os-fixed-ipsdch -a [17647e0] Fix internationalization for some LOG messagesdch -a [d7da449] API Extensions framework for v3 API Part 2dch -a [832a66c] Using unicode() to handle image's propertiesdch -a [781815b] Fixes encoding issues for nova api req body.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201305291331~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A nova_2013.2+git201305291331~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291331~saucy-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201305291331~saucy-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_havana_cinder_trunk #99

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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: saucy_havana_cinder_trunk #70

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_cinder_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_cinder_trunk/70/Project:saucy_havana_cinder_trunkDate of build:Wed, 29 May 2013 14:00:24 -0400Build duration:4 min 29 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20Changestest_glance.py: Stub out _get_member_model as well.by Adam Gandelmaneditcinder/tests/image/test_glance.pyConsole Output[...truncated 7408 lines...]dch -a [a1d5902] Update import of strutils from oslo.dch -a [77fb5d3] Add thin provisioning support checks.dch -a [6425260] Update/Publish volume service updates on delete.dch -a [615b450] RemoteFsDriver: copy_image_to_volume and copy_volume_to_imagedch -a [ef7f193] Imported Translations from Transifexdch -a [306de99] solidfire: Make sure src_uuid is passed correctlydch -a [4d522b9] Implement cloned volume for the RBD driverdch -a [5aa8831] Add .coveragerc to show proper coverage statistics. As in other openstack projects.dch -a [837df12] NetApp server tunneling fix.dch -a [9481fc0] Move iscsi helpers to brick directory.dch -a [e136c96] Fix up hacking ignores a bit.dch -a [197fbf1] Hide lock_prefix argument using synchronized_with_prefix()dch -a [88c8b42] Storwize/SVC: fix attach bug for live migration.dch -a [c355d68] Deprecating old dot path locations for Folsom configsdch -a [f9fd91e] solidfire: Add ability to override account prefixdch -a [20c2be3] Fixes an get_volume_stats reporting issuedch -a [93e8b63] Increased unit test code coveragedch -a [0fbe00f] Create an LVM utility to use for local storage.dch -a [68f28d2] Add CINDER_LOCALEDIR env variabledch -a [7cfb038] Remove gettext.install() from cinder/__init__.pydch -a [c23f620] Use flake8 and hacking.dch -a [381049b] Use pbr instead of openstack.common.setup.dch -a [59fc6cb] Change the type of "free_capacity_gb" to be floatdch -a [6d2d88c] Set default values for NFS/GlusterFS share_config filesdch -a [4580ee9] Add missing spaces to iscsi_iotype helpdch -a [bff14b9] Adds notifiers to both volumeTypes and volumeTypeExtraSpecsdch -a [caeb4a2] Fix missing spaces in Huawei Loggingdch -a [d75fafa] Add pylint-based lintstack test to tox environmentdch -a [7dad062] Remove outdated cinder test docdch -a [7ad6ac4] Implement copy_image_tINFO:root:Destroying schroot.o_volume and copy_volume_to_image on nfs backendsdch -a [7996aaa] Update import of oslo's processutils.dch -a [54a2ee4] Fix ability to add custom volume_backend_namedch -a [cb3fb51] Add db client packages to dev env setup doc.dch -a [db991e6] Remove old_name from kwargs when using IET helper.dch -a [d52a0f2] Copy the RHEL6 eventlet workaround from Oslodch -a [7546682] Remove setuptools-git as run time dependencydch -a [006d673] Fix LHN driver to allow backend name configurationdch -a [0ee20a0] Fixes 3par driver methods that were double lockingdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC cinder_2013.2+git201305291400~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A cinder_2013.2+git201305291400~saucy-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/havana cinder_2013.2+git201305291400~saucy-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include saucy-havana cinder_2013.2+git201305291400~saucy-0ubuntu1_amd64.changesEmail 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_havana_python-novaclient_trunk #43

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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_havana_keystone_trunk #72

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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: saucy_havana_nova_trunk #167

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/167/Project:saucy_havana_nova_trunkDate of build:Wed, 29 May 2013 16:08:15 -0400Build duration:9 min 15 secBuild cause:Started by user Adam GandelmanBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesNo ChangesConsole Output[...truncated 17999 lines...]deleting and forgetting pool/main/n/nova/nova-console_2013.2+git201305290732~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-consoleauth_2013.2+git201305290732~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-doc_2013.2+git201305290732~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-network_2013.2+git201305290732~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-novncproxy_2013.2+git201305290732~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-objectstore_2013.2+git201305290732~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-scheduler_2013.2+git201305290732~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-spiceproxy_2013.2+git201305290732~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-volume_2013.2+git201305290732~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-network_2013.2+git201305290732~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-plugins_2013.2+git201305290732~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xvpvncproxy_2013.2+git201305290732~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/python-nova_2013.2+git201305290732~saucy-0ubuntu1_all.debINFO:root:Storing current commit for next build: 4885aa28706a1858f4fc51a0d2c661eec05139c0INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpwli_mR/novamk-build-deps -i -r -t apt-get -y /tmp/tmpwli_mR/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 68cc1cd511298208dde59878bfbef474a3625c9f..HEAD --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:2013.2+git201305291609~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [4885aa2] Don't delete sys_meta on instance deletedch -a [3cf4cb2] Fix volume IO usage notifications been sent too often.dch -a [2cd1783] Add missing os.path.abspath around csrfile.dch -a [3e5c88d] Add db test that checks that shadow tables are up-to-datedch -a [3718d39] Sync shadow table for 159 migrationdch -a [893eef7] Sync shadow table for 157 migrationdch -a [0c30c4c] Sync shadow table for 156 migrationdch -a [0a7954d] Add missing tests for nova.db.api.quota_* methodsdch -a [9fd4d9e] Add tests for some db.security_group_* methodsdch -a [e4b85c1] Make testr preserve existing OS_* env vars valuesdch -a [fa5079c] Verify that CONF.compute_driver is defineddch -a [86a2644] Rename policy auth for V3 os-fixed-ipsdch -a [17647e0] Fix internationalization for some LOG messagesdch -a [d7da449] API Extensions framework for v3 API Part 2dch -a [832a66c] Using unicode() to handle image's propertiesdch -a [781815b] Fixes encoding issues for nova api req body.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201305291609~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A nova_2013.2+git201305291609~saucy-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/havana nova_2013.2+git201305291609~saucy-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include saucy-havana nova_2013.2+git201305291609~saucy-0ubuntu1_amd64.changes+ [ 0 != 0 ]Email 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_havana_python-novaclient_trunk #44

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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: saucy_havana_python-novaclient_trunk #22

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_python-novaclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_python-novaclient_trunk/22/Project:saucy_havana_python-novaclient_trunkDate of build:Wed, 29 May 2013 17:00:22 -0400Build duration:3 min 3 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesImprove error messages for invalid --nic / --file.by dolph.mathewseditnovaclient/v1_1/shell.pyConsole Output[...truncated 2148 lines...]Package: python-novaclientPackage-Time: 77Source-Version: 1:2.13.0.65.g1bb9824+git201305291700~saucy-0ubuntu1Space: 3480Status: attemptedVersion: 1:2.13.0.65.g1bb9824+git201305291700~saucy-0ubuntu1Finished at 20130529-1703Build needed 00:01:17, 3480k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-novaclient_2.13.0.65.g1bb9824+git201305291700~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-novaclient_2.13.0.65.g1bb9824+git201305291700~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-novaclient/havana /tmp/tmpZpjSfh/python-novaclientmk-build-deps -i -r -t apt-get -y /tmp/tmpZpjSfh/python-novaclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 9d4db6f740fe00f50c77920b5ef7a4fbd08d181f..HEAD --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:2.13.0.65.g1bb9824+git201305291700~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [37da28c] Provide nova CLI man page.dch -a [a8ed2f2] Improve error messages for invalid --nic / --file.dch -a [ff85bd4] 100% test coverage for security groups and rulesdch -a [f2559c4] Add MethodNotAllowed and Conflict exception classesdch -a [c34c371] Move tests into the novaclient package.dch -a [51f0596] Add CONTRIBUTING file.dch -a [3bbdcda] Rename requires files to standard names.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-novaclient_2.13.0.65.g1bb9824+git201305291700~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A python-novaclient_2.13.0.65.g1bb9824+git201305291700~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-novaclient_2.13.0.65.g1bb9824+git201305291700~saucy-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-novaclient_2.13.0.65.g1bb9824+git201305291700~saucy-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_havana_nova_trunk #244

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/244/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 17:00:24 -0400Build duration:4 min 36 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesImported Translations from Transifexby Jenkinseditnova/locale/cs/LC_MESSAGES/nova.poeditnova/locale/bg_BG/LC_MESSAGES/nova.poeditnova/locale/en_US/LC_MESSAGES/nova.poeditnova/locale/en_GB/LC_MESSAGES/nova.poeditnova/locale/id/LC_MESSAGES/nova.poeditnova/locale/nova.poteditnova/locale/es/LC_MESSAGES/nova.poeditnova/locale/ru_RU/LC_MESSAGES/nova.poeditnova/locale/ca/LC_MESSAGES/nova.poeditnova/locale/zh_HK/LC_MESSAGES/nova.poeditnova/locale/zh_TW/LC_MESSAGES/nova.poeditnova/locale/ru/LC_MESSAGES/nova.poeditnova/locale/en_AU/LC_MESSAGES/nova.poeditnova/locale/uk/LC_MESSAGES/nova.poeditnova/locale/ka_GE/LC_MESSAGES/nova.poeditnova/locale/tr_TR/LC_MESSAGES/nova.poeditnova/locale/bs/LC_MESSAGES/nova.poeditnova/locale/ko_KR/LC_MESSAGES/nova.poeditnova/locale/tl/LC_MESSAGES/nova.poeditnova/locale/fr/LC_MESSAGES/nova.poeditnova/locale/tr/LC_MESSAGES/nova.poeditnova/locale/sw_KE/LC_MESSAGES/nova.poeditnova/locale/it/LC_MESSAGES/nova.poeditnova/locale/pt_BR/LC_MESSAGES/nova.poeditnova/locale/hu/LC_MESSAGES/nova.poeditnova/locale/pt/LC_MESSAGES/nova.poeditnova/locale/da/LC_MESSAGES/nova.poeditnova/locale/hr/LC_MESSAGES/nova.poeditnova/locale/ms/LC_MESSAGES/nova.poeditnova/locale/de/LC_MESSAGES/nova.poeditnova/locale/fi_FI/LC_MESSAGES/nova.poeditnova/locale/nb/LC_MESSAGES/nova.poeditnova/locale/nl_NL/LC_MESSAGES/nova.poeditnova/locale/vi_VN/LC_MESSAGES/nova.poeditnova/locale/ja/LC_MESSAGES/nova.poeditnova/locale/zh_CN/LC_MESSAGES/nova.poeditnova/locale/it_IT/LC_MESSAGES/nova.poeditnova/locale/ko/LC_MESSAGES/nova.poConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-71101bba-c02b-4fc0-beb2-604b55da0928', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-71101bba-c02b-4fc0-beb2-604b55da0928', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpv9tpXb/novamk-build-deps -i -r -t apt-get -y /tmp/tmpv9tpXb/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-71101bba-c02b-4fc0-beb2-604b55da0928', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_havana_nova_trunk #246

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/246/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 17:29:36 -0400Build duration:4 min 1 secBuild cause:Started by user Chuck ShortBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-14eab027-baa1-4901-ac52-7c5e9111cbb4', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-14eab027-baa1-4901-ac52-7c5e9111cbb4', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpCYMJZE/novamk-build-deps -i -r -t apt-get -y /tmp/tmpCYMJZE/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-14eab027-baa1-4901-ac52-7c5e9111cbb4', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-14eab027-baa1-4901-ac52-7c5e9111cbb4', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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_havana_keystone_trunk #73

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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_havana_nova_trunk #247

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/247/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 18:04:20 -0400Build duration:3 min 41 secBuild cause:Started by user Chuck ShortBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-e6035449-4c86-4ebe-b0cd-4dd7be1c3eb8', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-e6035449-4c86-4ebe-b0cd-4dd7be1c3eb8', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpFJJT7b/novamk-build-deps -i -r -t apt-get -y /tmp/tmpFJJT7b/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-e6035449-4c86-4ebe-b0cd-4dd7be1c3eb8', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-e6035449-4c86-4ebe-b0cd-4dd7be1c3eb8', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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_havana_ceilometer_trunk #86

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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_havana_nova_trunk #248

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/248/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 19:30:23 -0400Build duration:3 min 36 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFix config drive code logical error.by yaguang.tangeditnova/compute/api.pyeditnova/tests/compute/test_compute.pyConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-c47b7bd5-c5c1-444d-86b3-6694cf1da034', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-c47b7bd5-c5c1-444d-86b3-6694cf1da034', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpahYyNP/novamk-build-deps -i -r -t apt-get -y /tmp/tmpahYyNP/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-c47b7bd5-c5c1-444d-86b3-6694cf1da034', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-c47b7bd5-c5c1-444d-86b3-6694cf1da034', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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_havana_python-swiftclient_trunk #13

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_python-swiftclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_python-swiftclient_trunk/13/Project:precise_havana_python-swiftclient_trunkDate of build:Wed, 29 May 2013 20:00:23 -0400Build duration:2 min 52 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0Changesremove busy-wait so that swift client wont use up all CPU cyclesby revieweditbin/swiftConsole Output[...truncated 694 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-86fd42a6-de66-49d4-a3ae-f7df8f2d973b', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-86fd42a6-de66-49d4-a3ae-f7df8f2d973b', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-swiftclient/havana /tmp/tmpkpf9_u/python-swiftclientmk-build-deps -i -r -t apt-get -y /tmp/tmpkpf9_u/python-swiftclient/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-86fd42a6-de66-49d4-a3ae-f7df8f2d973b', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-86fd42a6-de66-49d4-a3ae-f7df8f2d973b', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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_havana_nova_trunk #249

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/249/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 20:01:24 -0400Build duration:4 min 49 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesDelegate authentication to quantumclientby stanislaw.pituchaeditnova/tests/network/test_quantumv2.pyeditnova/network/quantumv2/api.pyeditnova/network/quantumv2/__init__.pyConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-11322072-81c5-4883-b77c-e80380ffb023', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-11322072-81c5-4883-b77c-e80380ffb023', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpXoWsTX/novamk-build-deps -i -r -t apt-get -y /tmp/tmpXoWsTX/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-11322072-81c5-4883-b77c-e80380ffb023', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-11322072-81c5-4883-b77c-e80380ffb023', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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_havana_quantum_trunk #160

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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: saucy_havana_quantum_trunk #92

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_quantum_trunk/92/Project:saucy_havana_quantum_trunkDate of build:Wed, 29 May 2013 21:30:24 -0400Build duration:7 min 23 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesRefactor db_base_plugin_v2 and to remove code duplicationby enikanoroveditquantum/db/loadbalancer/loadbalancer_db.pyeditquantum/db/db_base_plugin_v2.pyConsole Output[...truncated 26096 lines...]Install-Time: 45Job: quantum_2013.2+git201305292130~saucy-0ubuntu1.dscMachine Architecture: amd64Package: quantumPackage-Time: 296Source-Version: 1:2013.2+git201305292130~saucy-0ubuntu1Space: 89296Status: attemptedVersion: 1:2013.2+git201305292130~saucy-0ubuntu1Finished at 20130529-2137Build needed 00:04:56, 89296k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'quantum_2013.2+git201305292130~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'quantum_2013.2+git201305292130~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/quantum/havana /tmp/tmpXH9rMN/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpXH9rMN/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 3d0e0c554f22cc122c32d8dfa99509c9b432a62d..HEAD --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:2013.2+git201305292130~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [f572a5e] Initial Modular L2 plugin implementation.dch -a [3102bd7] Revert dependency on oslo.config 1.2.0dch -a [e2e2c62] Refactor db_base_plugin_v2 and to remove code duplicationdch -a [9f1d2e0] Configurable external gateway modesdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC quantum_2013.2+git201305292130~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A quantum_2013.2+git201305292130~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'quantum_2013.2+git201305292130~saucy-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'quantum_2013.2+git201305292130~saucy-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_havana_nova_trunk #250

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/250/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 22:00:27 -0400Build duration:4 min 1 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd base object modelby danmseditnova/conductor/manager.pyaddnova/tests/objects/test_objects.pyeditnova/manager.pyeditnova/exception.pyaddnova/objects/__init__.pyaddnova/objects/base.pyeditnova/conductor/rpcapi.pyaddnova/objects/utils.pyaddnova/tests/objects/__init__.pyConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-9e34d7a9-5355-46c6-968e-22b1b63ed0f7', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-9e34d7a9-5355-46c6-968e-22b1b63ed0f7', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpnHTzsh/novamk-build-deps -i -r -t apt-get -y /tmp/tmpnHTzsh/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-9e34d7a9-5355-46c6-968e-22b1b63ed0f7', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-9e34d7a9-5355-46c6-968e-22b1b63ed0f7', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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_havana_nova_trunk #251

2013-05-29 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/251/Project:precise_havana_nova_trunkDate of build:Wed, 29 May 2013 22:30:25 -0400Build duration:4 min 12 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd node as instance attribute for notificationby jay.lau.513editnova/notifications.pyeditnova/tests/test_notifications.pyNo relevant message when stop a stopped VMby yanglyyeditnova/tests/compute/test_compute.pyeditnova/compute/api.pyFix colorizier thowing exception when a test failsby michael.kerrinedittools/colorizer.pyConsole Output[...truncated 797 lines...]Download error on http://pypi.python.org/simple/pbr/: timed out -- Some packages may not be found!Couldn't find index page for 'pbr' (maybe misspelled?)Download error on http://pypi.python.org/simple/: timed out -- Some packages may not be found!No local packages or download links found for pbrTraceback (most recent call last):  File "setup.py", line 21, in d2to1=True)  File "/usr/lib/python2.7/distutils/core.py", line 112, in setup_setup_distribution = dist = klass(attrs)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 221, in __init__self.fetch_build_eggs(attrs.pop('setup_requires'))  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 245, in fetch_build_eggsparse_requirements(requires), installer=self.fetch_build_egg  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 576, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 821, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 833, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 294, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 602, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-9fca0f4c-40c2-4ac4-b391-fe033a5e0788', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-9fca0f4c-40c2-4ac4-b391-fe033a5e0788', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpSkHtJ3/novamk-build-deps -i -r -t apt-get -y /tmp/tmpSkHtJ3/nova/debian/controlpython setup.py sdistTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-9fca0f4c-40c2-4ac4-b391-fe033a5e0788', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-9fca0f4c-40c2-4ac4-b391-fe033a5e0788', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build 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: saucy_havana_keystone_trunk #41

2013-05-29 Thread openstack-testing-bot
Title: saucy_havana_keystone_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_keystone_trunk/41/Project:saucy_havana_keystone_trunkDate of build:Thu, 30 May 2013 01:30:23 -0400Build duration:2 min 4 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesMove auth_token middleware from admin user to an RBAC policyby jogoedittests/test_backend.pyeditetc/policy.jsoneditkeystone/token/controllers.pyedittests/test_content_types.pyedittests/default_fixtures.pyeditkeystone/common/controller.pyConsole Output[...truncated 1834 lines...]failed to open trace file: [Errno 13] Permission denied: '/var/lib/jenkins/.bzr.log'Building using working treeBuilding package in merge modeLooking for a way to retrieve the upstream tarballUsing the upstream tarball that is present in /tmp/tmptdeQN3bzr: ERROR: An error (1) occurred running quilt: Applying patch fix-ubuntu-tests.patchpatching file run_tests.shpatching file tests/test_content_types.pyHunk #1 succeeded at 212 with fuzz 2.Hunk #2 FAILED at 383.Hunk #3 succeeded at 435 (offset 14 lines).1 out of 3 hunks FAILED -- rejects in file tests/test_content_types.pypatching file tests/test_keystoneclient.pypatching file tests/test_v3_auth.pyPatch fix-ubuntu-tests.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-c56fc782-9e13-47a1-9af7-e1b47bf13ba6', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-c56fc782-9e13-47a1-9af7-e1b47bf13ba6', '-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/keystone/havana /tmp/tmptdeQN3/keystonemk-build-deps -i -r -t apt-get -y /tmp/tmptdeQN3/keystone/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hdch -b -D saucy --newversion 1:2013.2+git201305300130~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-c56fc782-9e13-47a1-9af7-e1b47bf13ba6', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-c56fc782-9e13-47a1-9af7-e1b47bf13ba6', '-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_havana_keystone_trunk #74

2013-05-29 Thread openstack-testing-bot
 text/html; charset=UTF-8: Unrecognized 
-- 
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