[Openstack] How to configure Keystone with open LDAP + horizon on grizzly

2013-05-20 Thread yasith tharindu
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
user_allow_update = True
user_enabled_attribute = enabled
user_enabled_default = True
user_domain_id_attribute = None

tenant_tree_dn = ou=Tenants,dc=example,dc=com
tenant_objectclass = groupOfNames
tenant_id_attribute = cn
tenant_member_attribute = member
tenant_name_attribute = ou
tenant_domain_id_attribute = None
tenant_allow_create = True
tenant_allow_update = True


role_tree_dn = ou=Roles,dc=example,dc=com
role_objectclass = groupOfNames
role_member_attribute = member
role_id_attribute = cn
role_name_attribute = ou
role_allow_create = True
role_allow_update = True


==

ldap config as follows.

dn: dc=example,dc=com
objectClass: top
objectClass: dcObject
objectClass: organization
o: example Inc
dc: example


dn: cn=admin,dc=example,dc=com
objectClass: simpleSecurityObject
objectClass: organizationalRole
cn: admin
description: LDAP administrator
userPassword:: c2VjcmV0



dn: ou=Users,dc=example,dc=com
ou: users
objectClass: organizationalUnit
structuralObjectClass: organizationalUnit


dn: ou=Roles,dc=example,dc=com
ou: roles
objectClass: organizationalUnit
structuralObjectClass: organizationalUnit


dn: ou=Tenants,dc=example,dc=com
ou: tenants
objectClass: organizationalUnit



dn: cn=demo,ou=Users,dc=example,dc=com
cn: demo
displayName: demo
givenName: demo
mail: d...@example.com
objectClass: inetOrgPerson
objectClass: top
sn: demo
uid: demo
userPassword:: c2VjcmV0


dn: cn=admin,ou=Roles,dc=example,dc=com
objectClass: groupOfNames
cn: admin
description: Openstack admin Role
member: cn=demo,ou=Users,dc=example,dc=com


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

I would really appreciate your help
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] nova-compute cannot restart when vmware vcenter confguration.

2013-05-20 Thread Ito, Norihiro
Hi,

I'm evaluating Openstack/VMware configuration now.
I have 2 phisical machine for the evaluation.
I build openstack with ESXi  vCenter like following.

* Openstack controller(Grizzly) phisical machine
* vmware ESXi server phisical machine
  * ClusterA
* vmware vCenter server VM
This VM is created by ESXi.
* openstack nova-compute VM for vCenter VM
This VM is created by vCenter.
and..
* instance-000a
This VM is created from glance image.

In the 1st time, this system is running.
And I could create instance from vmdk image on glance using dashboard.

But I rebooted nova-compute VM, nova-compute service was not started.
The compute.log is following.

2013-05-20 13:30:34.847 ERROR nova.compute.manager
[req-0a894049-f483-43b2-b93d-14ab5a256d59 None None] Instance Openstack
nova-compute found in the hypervisor, Shubut not in the database
2013-05-20 13:30:34.847 ERROR nova.compute.manager
[req-0a894049-f483-43b2-b93d-14ab5a256d59 None None] Instance VMware
vCenter Server Appliance found in the hypervisor, but not in the database
2013-05-20 13:30:34.849 3161 CRITICAL nova [-] 1

To be sure, these VMs are NOT managed by Opentack.
But..what I can do?
Shuld I get more phsical machine for vCenter  nova-compute cluster?
Could someone tell me about this?

Thanks.
nito.

___
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-compute cannot restart when vmware vcenter confguration.

2013-05-20 Thread Yaguang Tang
can you put more nova-compute log info? also there is a known bug that may
cause nova-compute can't starts, it's fixed in nova stable/grizzly
(2013.1.1) which may not in ubuntu deb repo, if this is the case, you need
to patch manually or wait for ubuntu official update to 2013.1.1. the patch
is
https://github.com/openstack/nova/commit/b2ec66823baf2a5094a9b398c2554bdcd2aba928
.

hope it helps.

2013/5/20 Ito, Norihiro ito.norih...@canon-its.co.jp

 Hi,

 I'm evaluating Openstack/VMware configuration now.
 I have 2 phisical machine for the evaluation.
 I build openstack with ESXi  vCenter like following.

 * Openstack controller(Grizzly) phisical machine
 * vmware ESXi server phisical machine
   * ClusterA
 * vmware vCenter server VM
 This VM is created by ESXi.
 * openstack nova-compute VM for vCenter VM
 This VM is created by vCenter.
 and..
 * instance-000a
 This VM is created from glance image.

 In the 1st time, this system is running.
 And I could create instance from vmdk image on glance using dashboard.

 But I rebooted nova-compute VM, nova-compute service was not started.
 The compute.log is following.

 2013-05-20 13:30:34.847 ERROR nova.compute.manager
 [req-0a894049-f483-43b2-b93d-14ab5a256d59 None None] Instance Openstack
 nova-compute found in the hypervisor, Shubut not in the database
 2013-05-20 13:30:34.847 ERROR nova.compute.manager
 [req-0a894049-f483-43b2-b93d-14ab5a256d59 None None] Instance VMware
 vCenter Server Appliance found in the hypervisor, but not in the database
 2013-05-20 13:30:34.849 3161 CRITICAL nova [-] 1

 To be sure, these VMs are NOT managed by Opentack.
 But..what I can do?
 Shuld I get more phsical machine for vCenter  nova-compute cluster?
 Could someone tell me about this?

 Thanks.
 nito.

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




-- 
Tang Yaguang

Canonical Ltd. | www.ubuntu.com | www.canonical.com
Mobile:  +86 152 1094 6968
gpg key: 0x187F664F
___
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] DHCP problem in grizzly

2013-05-20 Thread Heinonen, Johanna (NSN - FI/Espoo)
Hi,

I have installed grizzly with quantum and ovs-plugin. It seems that grizzly 
allocates the third address of each subnet for dhcp. (In folsom it was the 
second address). This means that the VMs will get addresses .2, .4, .5, ...

In my setup the first VM always boots fine and gets the address x.x.x.2. This 
can be seen in the syslog:

May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]: DHCPDISCOVER(tapdbcef145-f5) 
10.0.2.15 fa:16:3e:2d:0d:e0
May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]: DHCPOFFER(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0
May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]: DHCPREQUEST(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0
May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]: DHCPACK(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0 10-20-30-2

The problem comes when I start the second VM. Nova shows that the x.x.x.4 is 
allocated

root@grizzly-236:~# nova list
+--+--+++
| ID   | Name | Status | Networks   
|
+--+--+++
| c112ccbb-5039-4d05-b414-b53a1eafa2d8 | q-test   | ACTIVE | 
tenant1-net=10.20.30.2 |
| 4f26975c-995d-403d-88b0-e7bbf189baad | q-test-2 | ACTIVE | 
tenant1-net=10.20.30.4 |
+--+--+++

But from syslog I see that the answer to the DHCPDISCOVER is no address 
available

May 20 08:33:34 grizzly-236 dnsmasq-dhcp[2190]: DHCPDISCOVER(tapdbcef145-f5) 
10.0.2.15 fa:16:3e:fc:1f:9a no address available
May 20 08:33:52 grizzly-236 dnsmasq-dhcp[2190]: DHCPDISCOVER(tapdbcef145-f5) 
10.0.2.15 fa:16:3e:fc:1f:9a no address available

When I restart the quantum-dhcp-server the problem disappears. This can be seen 
from the syslog:

May 20 09:01:40 grizzly-236 dnsmasq[7235]: started, version 2.59 cachesize 150
May 20 09:01:40 grizzly-236 dnsmasq[7235]: compile time options: IPv6 
GNU-getopt DBus i18n DHCP TFTP conntrack IDN
May 20 09:01:40 grizzly-236 dnsmasq[7235]: warning: no upstream servers 
configured
May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: DHCP, static leases only on 
10.20.30.0, lease time 2m
May 20 09:01:40 grizzly-236 dnsmasq[7235]: cleared cache
May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: read 
/var/lib/quantum/dhcp/e6f27330-be41-478c-b4d2-49ed4ce0af00/host
May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: read 
/var/lib/quantum/dhcp/e6f27330-be41-478c-b4d2-49ed4ce0af00/opts
May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPREQUEST(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0
May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPNAK(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0 lease not found
May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPDISCOVER(tapdbcef145-f5) 
fa:16:3e:2d:0d:e0
May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPOFFER(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0
May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPREQUEST(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0
May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPACK(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0 10-20-30-2

May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]: DHCPDISCOVER(tapdbcef145-f5) 
fa:16:3e:fc:1f:9a
May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]: DHCPOFFER(tapdbcef145-f5) 
10.20.30.4 fa:16:3e:fc:1f:9a
May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]: DHCPREQUEST(tapdbcef145-f5) 
10.20.30.4 fa:16:3e:fc:1f:9a
May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]: DHCPACK(tapdbcef145-f5) 
10.20.30.4 fa:16:3e:fc:1f:9a 10-20-30-4


What could be the problem? Have you seen similar behavior? If yes, how did you 
fix this?

Best regards,
Johanna

___
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] DHCP problem in grizzly

2013-05-20 Thread Thomas Kärgel
Hi Johanna,

I'm facing the same behavior on a Folsom-installation on SLES11SP2. I
noticed that new hosts have correct entries in the dnsmasq config-files.
The dnsmasq processes get a HUP signal by DHCP-Agent, but simply refuse
to deliver the new address. Instead dnsmasq logs claim no address
available. Exactly like in your description.
What distrubtion and exact dnsmasq-versions are in use on your environment?
I assume dnsmasq is not rereading its configs correctly on signal HUP.
dnsmasq logs claim it has reread configs, but it still does not deliver
the new adresses in host-file.
Manually trying to sigHUP dnsmasq had no effect. The only way to get out
of this state seems to be restarting DHCP-agent.

Best regards
Thomas

Am 20.05.2013 08:51, schrieb Heinonen, Johanna (NSN - FI/Espoo):
 Hi,
  
 I have installed grizzly with quantum and ovs-plugin. It seems that
 grizzly allocates the third address of each subnet for dhcp. (In folsom
 it was the second address). This means that the VMs will get addresses
 .2, .4, .5, …
  
 In my setup the first VM always boots fine and gets the address x.x.x.2.
 This can be seen in the syslog:
  
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPDISCOVER(tapdbcef145-f5) 10.0.2.15 fa:16:3e:2d:0d:e0
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPOFFER(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPREQUEST(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]: DHCPACK(tapdbcef145-f5)
 10.20.30.2 fa:16:3e:2d:0d:e0 10-20-30-2
  
 The problem comes when I start the second VM. Nova shows that the
 x.x.x.4 is allocated
  
 root@grizzly-236:~# nova list
 +--+--+++
 | ID   | Name | Status |
 Networks   |
 +--+--+++
 | c112ccbb-5039-4d05-b414-b53a1eafa2d8 | q-test   | ACTIVE |
 tenant1-net=10.20.30.2 |
 | 4f26975c-995d-403d-88b0-e7bbf189baad | q-test-2 | ACTIVE |
 tenant1-net=10.20.30.4 |
 +--+--+++
  
 But from syslog I see that the answer to the DHCPDISCOVER is “no address
 available”
  
 May 20 08:33:34 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPDISCOVER(tapdbcef145-f5) 10.0.2.15 fa:16:3e:fc:1f:9a no address
 available
 May 20 08:33:52 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPDISCOVER(tapdbcef145-f5) 10.0.2.15 fa:16:3e:fc:1f:9a no address
 available
  
 When I restart the quantum-dhcp-server the problem disappears. This can
 be seen from the syslog:
  
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: started, version 2.59
 cachesize 150
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: compile time options: IPv6
 GNU-getopt DBus i18n DHCP TFTP conntrack IDN
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: warning: no upstream servers
 configured
 May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: DHCP, static leases only
 on 10.20.30.0, lease time 2m
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: cleared cache
 May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: read
 /var/lib/quantum/dhcp/e6f27330-be41-478c-b4d2-49ed4ce0af00/host
 May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: read
 /var/lib/quantum/dhcp/e6f27330-be41-478c-b4d2-49ed4ce0af00/opts
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPREQUEST(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPNAK(tapdbcef145-f5)
 10.20.30.2 fa:16:3e:2d:0d:e0 lease not found
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPDISCOVER(tapdbcef145-f5) fa:16:3e:2d:0d:e0
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPOFFER(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPREQUEST(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPACK(tapdbcef145-f5)
 10.20.30.2 fa:16:3e:2d:0d:e0 10-20-30-2
  
 *May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPDISCOVER(tapdbcef145-f5) fa:16:3e:fc:1f:9a*
 *May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPOFFER(tapdbcef145-f5) 10.20.30.4 fa:16:3e:fc:1f:9a*
 *May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPREQUEST(tapdbcef145-f5) 10.20.30.4 fa:16:3e:fc:1f:9a*
 *May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]: DHCPACK(tapdbcef145-f5)
 10.20.30.4 fa:16:3e:fc:1f:9a 10-20-30-4*
  
  
 What could be the problem? Have you seen similar behavior? If yes, how
 did you fix this?
  
 Best regards,
 Johanna
  
 
 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp
 


-- 
Thomas Kärgel
Linux Consultant
Mail: kaer...@b1-systems.de
B1 Systems GmbH
Osterfeldstraße 7 / 85088 Vohburg / http://www.b1-systems.de
GF: Ralph Dehner / 

[Openstack] OpenStack Grizzly Installation Script on Ubuntu 12.04

2013-05-20 Thread Tomokazu Hirai
Hi all,

Please to introduce my bash tool which enable you to build
OpenStack on Ubuntu 12.04.

I released OpenStack Installation Script on github. This work has
been based on: mseknibilel's guide. Thanks, mseknibilel.

  http://jedipunkz.github.io/openstack_grizzly_install/

This tool supports such case...

* all in one Node
* Controller Node + (Network Node x n) + (Compute Node x n)

I know chef-openstack project is better than bash tool. I am chef
user, too. :D But now, I need to build OpenStack REPEATEDLY. So
That's why I developed this tool. :D

Thanks from cloudy Tokyo.

-- @jedipunkz Tomokazu HIRAI

___
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-compute cannot restart when vmware vcenter confguration.

2013-05-20 Thread Ito, Norihiro
Hi Tang,

Thank you for your help.
This patch is work well and the compute service is running.
I use CentOS 6.4 and RDO. The RDO was not patched.

about compute.log:
Only earlier 3 lines were output in the compute log when I restarted
the service.
After patched, 2 lines is outout like following, and the service is
running now.

2013-05-20 16:14:21.699 ERROR nova.compute.manager
[req-87b55cc5-5cba-45fc-bf64-df0b8c77856b None None] Instance Openstack
nova-compute found in the hypervisor, but not in the database
2013-05-20 16:14:21.699 ERROR nova.compute.manager
[req-87b55cc5-5cba-45fc-bf64-df0b8c77856b None None] Instance VMware
vCenter Server Appliance found in the hypervisor, but not in the database

I think I should prepare admin cluster for vCenter/nova-compute VMs,
if I build for production system.

In 2013/05/20 15:36 JST, Yaguang Tang wrote:
 can you put more nova-compute log info? also there is a known bug that 
 may cause nova-compute can't starts, it's fixed in nova stable/grizzly 
 (2013.1.1) which may not in ubuntu deb repo, if this is the case, you 
 need to patch manually or wait for ubuntu official update to 2013.1.1. 
 the patch is 
 https://github.com/openstack/nova/commit/b2ec66823baf2a5094a9b398c2554bdcd2aba928.
 
 hope it helps.
 
 2013/5/20 Ito, Norihiro ito.norih...@canon-its.co.jp 
 mailto:ito.norih...@canon-its.co.jp
 
 Hi,
 
 I'm evaluating Openstack/VMware configuration now.
 I have 2 phisical machine for the evaluation.
 I build openstack with ESXi  vCenter like following.
 
 * Openstack controller(Grizzly) phisical machine
 * vmware ESXi server phisical machine
* ClusterA
  * vmware vCenter server VM
  This VM is created by ESXi.
  * openstack nova-compute VM for vCenter VM
  This VM is created by vCenter.
 and..
  * instance-000a
  This VM is created from glance image.
 
 In the 1st time, this system is running.
 And I could create instance from vmdk image on glance using dashboard.
 
 But I rebooted nova-compute VM, nova-compute service was not started.
 The compute.log is following.
 
 2013-05-20 13:30:34.847 ERROR nova.compute.manager
 [req-0a894049-f483-43b2-b93d-14ab5a256d59 None None] Instance Openstack
 nova-compute found in the hypervisor, Shubut not in the database
 2013-05-20 13:30:34.847 ERROR nova.compute.manager
 [req-0a894049-f483-43b2-b93d-14ab5a256d59 None None] Instance VMware
 vCenter Server Appliance found in the hypervisor, but not in the
 database
 2013-05-20 13:30:34.849 3161 CRITICAL nova [-] 1
 
 To be sure, these VMs are NOT managed by Opentack.
 But..what I can do?
 Shuld I get more phsical machine for vCenter  nova-compute cluster?
 Could someone tell me about this?
 
 Thanks.
 nito.
 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 mailto:openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp
 
 
 
 
 -- 
 Tang Yaguang
 
 Canonical Ltd. | www.ubuntu.com http://www.ubuntu.com | 
 www.canonical.com http://www.canonical.com
 Mobile:  +86 152 1094 6968
 gpg key: 0x187F664F


-- 
ITOH, Norihiro
Advanced Technology Development Department
RD Center
Canon IT Solutions Inc. (http://www.canon-its.co.jp)

___
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] DHCP problem in grizzly

2013-05-20 Thread Heinonen, Johanna (NSN - FI/Espoo)
Hi Thomas,

I am using Ubuntu12.04 and the dnsmasq version is 2.59

BR
Johanna


-Original Message-
From: Openstack 
[mailto:openstack-bounces+johanna.heinonen=nsn@lists.launchpad.net] On 
Behalf Of ext Thomas Kärgel
Sent: Monday, May 20, 2013 10:09 AM
To: openstack@lists.launchpad.net
Subject: Re: [Openstack] DHCP problem in grizzly

Hi Johanna,

I'm facing the same behavior on a Folsom-installation on SLES11SP2. I
noticed that new hosts have correct entries in the dnsmasq config-files.
The dnsmasq processes get a HUP signal by DHCP-Agent, but simply refuse
to deliver the new address. Instead dnsmasq logs claim no address
available. Exactly like in your description.
What distrubtion and exact dnsmasq-versions are in use on your environment?
I assume dnsmasq is not rereading its configs correctly on signal HUP.
dnsmasq logs claim it has reread configs, but it still does not deliver
the new adresses in host-file.
Manually trying to sigHUP dnsmasq had no effect. The only way to get out
of this state seems to be restarting DHCP-agent.

Best regards
Thomas

Am 20.05.2013 08:51, schrieb Heinonen, Johanna (NSN - FI/Espoo):
 Hi,
  
 I have installed grizzly with quantum and ovs-plugin. It seems that
 grizzly allocates the third address of each subnet for dhcp. (In folsom
 it was the second address). This means that the VMs will get addresses
 .2, .4, .5, .
  
 In my setup the first VM always boots fine and gets the address x.x.x.2.
 This can be seen in the syslog:
  
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPDISCOVER(tapdbcef145-f5) 10.0.2.15 fa:16:3e:2d:0d:e0
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPOFFER(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPREQUEST(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]: DHCPACK(tapdbcef145-f5)
 10.20.30.2 fa:16:3e:2d:0d:e0 10-20-30-2
  
 The problem comes when I start the second VM. Nova shows that the
 x.x.x.4 is allocated
  
 root@grizzly-236:~# nova list
 +--+--+++
 | ID   | Name | Status |
 Networks   |
 +--+--+++
 | c112ccbb-5039-4d05-b414-b53a1eafa2d8 | q-test   | ACTIVE |
 tenant1-net=10.20.30.2 |
 | 4f26975c-995d-403d-88b0-e7bbf189baad | q-test-2 | ACTIVE |
 tenant1-net=10.20.30.4 |
 +--+--+++
  
 But from syslog I see that the answer to the DHCPDISCOVER is no address
 available
  
 May 20 08:33:34 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPDISCOVER(tapdbcef145-f5) 10.0.2.15 fa:16:3e:fc:1f:9a no address
 available
 May 20 08:33:52 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPDISCOVER(tapdbcef145-f5) 10.0.2.15 fa:16:3e:fc:1f:9a no address
 available
  
 When I restart the quantum-dhcp-server the problem disappears. This can
 be seen from the syslog:
  
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: started, version 2.59
 cachesize 150
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: compile time options: IPv6
 GNU-getopt DBus i18n DHCP TFTP conntrack IDN
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: warning: no upstream servers
 configured
 May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: DHCP, static leases only
 on 10.20.30.0, lease time 2m
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: cleared cache
 May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: read
 /var/lib/quantum/dhcp/e6f27330-be41-478c-b4d2-49ed4ce0af00/host
 May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: read
 /var/lib/quantum/dhcp/e6f27330-be41-478c-b4d2-49ed4ce0af00/opts
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPREQUEST(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPNAK(tapdbcef145-f5)
 10.20.30.2 fa:16:3e:2d:0d:e0 lease not found
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPDISCOVER(tapdbcef145-f5) fa:16:3e:2d:0d:e0
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPOFFER(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPREQUEST(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPACK(tapdbcef145-f5)
 10.20.30.2 fa:16:3e:2d:0d:e0 10-20-30-2
  
 *May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPDISCOVER(tapdbcef145-f5) fa:16:3e:fc:1f:9a*
 *May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPOFFER(tapdbcef145-f5) 10.20.30.4 fa:16:3e:fc:1f:9a*
 *May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPREQUEST(tapdbcef145-f5) 10.20.30.4 fa:16:3e:fc:1f:9a*
 *May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]: DHCPACK(tapdbcef145-f5)
 10.20.30.4 fa:16:3e:fc:1f:9a 10-20-30-4*
  
  
 What could be the problem? Have you seen similar behavior? If yes, how
 did you fix this?
  
 Best regards,
 Johanna
  
 
 
 ___
 Mailing list: 

Re: [Openstack] DHCP problem in grizzly

2013-05-20 Thread Thomas Kärgel
Hi,

thx for the interesting info, Johanna: dnsmasq version is also 2.59 on
my environment. Can you can confirm that manually sigHUPing all running
dnsmasq processes has no effect?
(dnsmasq claims to have reread the configs in syslog, but still refuses
to deliver the new addresses.)
Maybe updating dnsmasq to a more recent release would solve our problem.
Current stable is 2.66. I'll give it a try when i get back to office
tomorrow.

Best regards

Thomas


Am 20.05.2013 10:21, schrieb Heinonen, Johanna (NSN - FI/Espoo):
 Hi Thomas,
 
 I am using Ubuntu12.04 and the dnsmasq version is 2.59
 
 BR
 Johanna
 
 
 -Original Message-
 From: Openstack 
 [mailto:openstack-bounces+johanna.heinonen=nsn@lists.launchpad.net] On 
 Behalf Of ext Thomas Kärgel
 Sent: Monday, May 20, 2013 10:09 AM
 To: openstack@lists.launchpad.net
 Subject: Re: [Openstack] DHCP problem in grizzly
 
 Hi Johanna,
 
 I'm facing the same behavior on a Folsom-installation on SLES11SP2. I
 noticed that new hosts have correct entries in the dnsmasq config-files.
 The dnsmasq processes get a HUP signal by DHCP-Agent, but simply refuse
 to deliver the new address. Instead dnsmasq logs claim no address
 available. Exactly like in your description.
 What distrubtion and exact dnsmasq-versions are in use on your environment?
 I assume dnsmasq is not rereading its configs correctly on signal HUP.
 dnsmasq logs claim it has reread configs, but it still does not deliver
 the new adresses in host-file.
 Manually trying to sigHUP dnsmasq had no effect. The only way to get out
 of this state seems to be restarting DHCP-agent.
 
 Best regards
 Thomas
 
 Am 20.05.2013 08:51, schrieb Heinonen, Johanna (NSN - FI/Espoo):
 Hi,
  
 I have installed grizzly with quantum and ovs-plugin. It seems that
 grizzly allocates the third address of each subnet for dhcp. (In folsom
 it was the second address). This means that the VMs will get addresses
 .2, .4, .5, .
  
 In my setup the first VM always boots fine and gets the address x.x.x.2.
 This can be seen in the syslog:
  
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPDISCOVER(tapdbcef145-f5) 10.0.2.15 fa:16:3e:2d:0d:e0
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPOFFER(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPREQUEST(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]: DHCPACK(tapdbcef145-f5)
 10.20.30.2 fa:16:3e:2d:0d:e0 10-20-30-2
  
 The problem comes when I start the second VM. Nova shows that the
 x.x.x.4 is allocated
  
 root@grizzly-236:~# nova list
 +--+--+++
 | ID   | Name | Status |
 Networks   |
 +--+--+++
 | c112ccbb-5039-4d05-b414-b53a1eafa2d8 | q-test   | ACTIVE |
 tenant1-net=10.20.30.2 |
 | 4f26975c-995d-403d-88b0-e7bbf189baad | q-test-2 | ACTIVE |
 tenant1-net=10.20.30.4 |
 +--+--+++
  
 But from syslog I see that the answer to the DHCPDISCOVER is no address
 available
  
 May 20 08:33:34 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPDISCOVER(tapdbcef145-f5) 10.0.2.15 fa:16:3e:fc:1f:9a no address
 available
 May 20 08:33:52 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPDISCOVER(tapdbcef145-f5) 10.0.2.15 fa:16:3e:fc:1f:9a no address
 available
  
 When I restart the quantum-dhcp-server the problem disappears. This can
 be seen from the syslog:
  
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: started, version 2.59
 cachesize 150
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: compile time options: IPv6
 GNU-getopt DBus i18n DHCP TFTP conntrack IDN
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: warning: no upstream servers
 configured
 May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: DHCP, static leases only
 on 10.20.30.0, lease time 2m
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: cleared cache
 May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: read
 /var/lib/quantum/dhcp/e6f27330-be41-478c-b4d2-49ed4ce0af00/host
 May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: read
 /var/lib/quantum/dhcp/e6f27330-be41-478c-b4d2-49ed4ce0af00/opts
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPREQUEST(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPNAK(tapdbcef145-f5)
 10.20.30.2 fa:16:3e:2d:0d:e0 lease not found
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPDISCOVER(tapdbcef145-f5) fa:16:3e:2d:0d:e0
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPOFFER(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]:
 DHCPREQUEST(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPACK(tapdbcef145-f5)
 10.20.30.2 fa:16:3e:2d:0d:e0 10-20-30-2
  
 *May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]:
 

[Openstack] nova-compute cannot restart when vmware vcenter confguration.

2013-05-20 Thread Ito, Norihiro
Hi,

I'm evaluating Openstack/VMware configuration now.
I have 2 phisical machine for the evaluation.
I build openstack with ESXi  vCenter like following.

* Openstack controller(Grizzly) phisical machine
* vmware ESXi server phisical machine
  * ClusterA
* vmware vCenter server VM
This VM is created by ESXi.
* openstack nova-compute VM for vCenter VM
This VM is created by vCenter.
and..
* instance-000a
This VM is created from glance image.

In the 1st time, this system is running.
And I could create instance from vmdk image on glance using dashboard.

But I rebooted nova-compute VM, nova-compute service was not started.
The compute.log is following.

2013-05-20 13:30:34.847 ERROR nova.compute.manager
[req-0a894049-f483-43b2-b93d-14ab5a256d59 None None] Instance Openstack
nova-compute found in the hypervisor, Shubut not in the database
2013-05-20 13:30:34.847 ERROR nova.compute.manager
[req-0a894049-f483-43b2-b93d-14ab5a256d59 None None] Instance VMware
vCenter Server Appliance found in the hypervisor, but not in the database
2013-05-20 13:30:34.849 3161 CRITICAL nova [-] 1

To be sure, these VMs are NOT managed by Opentack.
But..what I can do?
Shuld I get more phsical machine for vCenter  nova-compute cluster?
Could someone tell me about this?

Thanks.
nito.

___
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] DHCP problem in grizzly

2013-05-20 Thread Heinonen, Johanna (NSN - FI/Espoo)
Hi,

You are right. Manually doing kill -HUP PID has just the effect you 
mentioned. In the syslog you can see

May 20 13:09:41 grizzly-236 dnsmasq[6170]: cleared cache
May 20 13:09:41 grizzly-236 dnsmasq-dhcp[6170]: read 
/var/lib/quantum/dhcp/d5879bbb-ada6-4323-a7b1-87b5db244513/host
May 20 13:09:41 grizzly-236 dnsmasq-dhcp[6170]: read 
/var/lib/quantum/dhcp/d5879bbb-ada6-4323-a7b1-87b5db244513/opts


But the problem stays. Only 'service quantum-dhcp-agent restart' fixes the 
problem.
If you try the newer version of the qnsmasq, I'd be interested to hear the 
results.

BR
Johanna



-Original Message-
From: ext Thomas Kärgel [mailto:kaer...@b1-systems.de] 
Sent: Monday, May 20, 2013 11:37 AM
To: Heinonen, Johanna (NSN - FI/Espoo)
Cc: openstack@lists.launchpad.net
Subject: Re: [Openstack] DHCP problem in grizzly

Hi,

thx for the interesting info, Johanna: dnsmasq version is also 2.59 on
my environment. Can you can confirm that manually sigHUPing all running
dnsmasq processes has no effect?
(dnsmasq claims to have reread the configs in syslog, but still refuses
to deliver the new addresses.)
Maybe updating dnsmasq to a more recent release would solve our problem.
Current stable is 2.66. I'll give it a try when i get back to office
tomorrow.

Best regards

Thomas


Am 20.05.2013 10:21, schrieb Heinonen, Johanna (NSN - FI/Espoo):
 Hi Thomas,
 
 I am using Ubuntu12.04 and the dnsmasq version is 2.59
 
 BR
 Johanna
 
 
 -Original Message-
 From: Openstack 
 [mailto:openstack-bounces+johanna.heinonen=nsn@lists.launchpad.net] On 
 Behalf Of ext Thomas Kärgel
 Sent: Monday, May 20, 2013 10:09 AM
 To: openstack@lists.launchpad.net
 Subject: Re: [Openstack] DHCP problem in grizzly
 
 Hi Johanna,
 
 I'm facing the same behavior on a Folsom-installation on SLES11SP2. I
 noticed that new hosts have correct entries in the dnsmasq config-files.
 The dnsmasq processes get a HUP signal by DHCP-Agent, but simply refuse
 to deliver the new address. Instead dnsmasq logs claim no address
 available. Exactly like in your description.
 What distrubtion and exact dnsmasq-versions are in use on your environment?
 I assume dnsmasq is not rereading its configs correctly on signal HUP.
 dnsmasq logs claim it has reread configs, but it still does not deliver
 the new adresses in host-file.
 Manually trying to sigHUP dnsmasq had no effect. The only way to get out
 of this state seems to be restarting DHCP-agent.
 
 Best regards
 Thomas
 
 Am 20.05.2013 08:51, schrieb Heinonen, Johanna (NSN - FI/Espoo):
 Hi,
  
 I have installed grizzly with quantum and ovs-plugin. It seems that
 grizzly allocates the third address of each subnet for dhcp. (In folsom
 it was the second address). This means that the VMs will get addresses
 .2, .4, .5, .
  
 In my setup the first VM always boots fine and gets the address x.x.x.2.
 This can be seen in the syslog:
  
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPDISCOVER(tapdbcef145-f5) 10.0.2.15 fa:16:3e:2d:0d:e0
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPOFFER(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPREQUEST(tapdbcef145-f5) 10.20.30.2 fa:16:3e:2d:0d:e0
 May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]: DHCPACK(tapdbcef145-f5)
 10.20.30.2 fa:16:3e:2d:0d:e0 10-20-30-2
  
 The problem comes when I start the second VM. Nova shows that the
 x.x.x.4 is allocated
  
 root@grizzly-236:~# nova list
 +--+--+++
 | ID   | Name | Status |
 Networks   |
 +--+--+++
 | c112ccbb-5039-4d05-b414-b53a1eafa2d8 | q-test   | ACTIVE |
 tenant1-net=10.20.30.2 |
 | 4f26975c-995d-403d-88b0-e7bbf189baad | q-test-2 | ACTIVE |
 tenant1-net=10.20.30.4 |
 +--+--+++
  
 But from syslog I see that the answer to the DHCPDISCOVER is no address
 available
  
 May 20 08:33:34 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPDISCOVER(tapdbcef145-f5) 10.0.2.15 fa:16:3e:fc:1f:9a no address
 available
 May 20 08:33:52 grizzly-236 dnsmasq-dhcp[2190]:
 DHCPDISCOVER(tapdbcef145-f5) 10.0.2.15 fa:16:3e:fc:1f:9a no address
 available
  
 When I restart the quantum-dhcp-server the problem disappears. This can
 be seen from the syslog:
  
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: started, version 2.59
 cachesize 150
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: compile time options: IPv6
 GNU-getopt DBus i18n DHCP TFTP conntrack IDN
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: warning: no upstream servers
 configured
 May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: DHCP, static leases only
 on 10.20.30.0, lease time 2m
 May 20 09:01:40 grizzly-236 dnsmasq[7235]: cleared cache
 May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: read
 /var/lib/quantum/dhcp/e6f27330-be41-478c-b4d2-49ed4ce0af00/host
 May 20 

Re: [Openstack] Install from ISO in OpenStack

2013-05-20 Thread Édouard Thuleau
Hi,

I also try to do that but I faced some troubles.
I explained and ask for that here
https://ask.openstack.org/question/633/create-vm-image-from-an-iso-containing-installation/
It could be help you.

Regards,
Édouard.



On Sat, May 18, 2013 at 7:49 AM, Martinx - ジェームズ
thiagocmarti...@gmail.comwrote:

 That is pretty cool!

 I was thinking on this about a week now... Because I'm facing some
 problems with a pre-installed Windows 7 VM with Grizzly + Ubuntu 12.04...

 *** Windows froze on the first boot of the Instance, at its recovery mode
 checks (or something like that)...

 So, boot an Instance with an ISO sounds great! To try to do the Windows
 installation there, directly on Instance first boot, prompting Windows end
 user license to the clients and etc...

 Anyway, I'll try now that Golden Image approach...

 Some info: https://wiki.openstack.org/wiki/BootFromISO

 Regards,
 Thiago

 On 17 May 2013 21:00, Ray Sun xiaoq...@gmail.com wrote:

 I am trying to create an instance using an ISO which is already in glance.

 I can successfully use a pre-made qcow2 to launch an instance, from the
 document, I know the glance support ISO file, so I tried to do this test,
 but it seems not work on KVM under OpenStack platform.

 Best Regards
 -- Ray


 On Fri, May 17, 2013 at 4:48 PM, Sam Stoelinga sammiest...@gmail.comwrote:

 Are you trying to create an Openstack instance based on Ubuntu 12.04 or
 are you trying to install openstack on ubuntu?

 If you're trying to just launch an ubuntu image, you can use the
 pre-made qcow2 images by ubuntu, didn't have any issues with those.
 See:
 http://docs.openstack.org/trunk/openstack-compute/admin/content/starting-images.html


 What iso are you using?



 On Fri, May 17, 2013 at 4:16 PM, Ray Sun xiaoq...@gmail.com wrote:

 I try to install ubuntu 12.04 on OpenStack, here's my steps:
  1. Upload ubuntu iso into OpenStack
 2. Launch a new VM and install
 3. Network can't detect
 4. Can't find any disk

 Any one met this problem before? Thanks.

 Best Regards
 -- Ray

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




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



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


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


Re: [Openstack] DHCP problem in grizzly

2013-05-20 Thread Darragh O'Reilly



the reference to 10.0.2.15 is strange. This happens to be the address the 
VirtualBox DHCP server gives to its VMs configured for NAT. Are you using 
VirtualBox? Even so I have never found this to be a problem because a Quantum 
DHCP namespace is isolated from the main one. Can you provide the 'ip address' 
from the main namespace and the dhcp namespace. 




 From: Heinonen, Johanna (NSN - FI/Espoo) johanna.heino...@nsn.com
To: openstack@lists.launchpad.net openstack@lists.launchpad.net 
Sent: Monday, 20 May 2013, 7:51
Subject: [Openstack] DHCP problem in grizzly
 


 
Hi,
 
I have installed grizzly with quantum and ovs-plugin. It seems that grizzly 
allocates the third address of each subnet for dhcp. (In folsom it was the 
second address). This means that the VMs will get addresses .2, .4, .5, …
 
In my setup the first VM always boots fine and gets the address x.x.x.2. This 
can be seen in the syslog:
 
May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]: DHCPDISCOVER(tapdbcef145-f5) 
10.0.2.15 fa:16:3e:2d:0d:e0
May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]: DHCPOFFER(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0
May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]: DHCPREQUEST(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0
May 20 08:29:23 grizzly-236 dnsmasq-dhcp[2190]: DHCPACK(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0 10-20-30-2
 
The problem comes when I start the second VM. Nova shows that the x.x.x.4 is 
allocated
 
root@grizzly-236:~# nova list
+--+--+++
| ID   | Name | Status | Networks  
 |
+--+--+++
| c112ccbb-5039-4d05-b414-b53a1eafa2d8 | q-test   | ACTIVE | 
tenant1-net=10.20.30.2 |
| 4f26975c-995d-403d-88b0-e7bbf189baad | q-test-2 | ACTIVE | 
tenant1-net=10.20.30.4 |
+--+--+++
 
But from syslog I see that the answer to the DHCPDISCOVER is “no address 
available”
 
May 20 08:33:34 grizzly-236 dnsmasq-dhcp[2190]: DHCPDISCOVER(tapdbcef145-f5) 
10.0.2.15 fa:16:3e:fc:1f:9a no address available
May 20 08:33:52 grizzly-236 dnsmasq-dhcp[2190]: DHCPDISCOVER(tapdbcef145-f5) 
10.0.2.15 fa:16:3e:fc:1f:9a no address available
 
When I restart the quantum-dhcp-server the problem disappears. This can be 
seen from the syslog:
 
May 20 09:01:40 grizzly-236 dnsmasq[7235]: started, version 2.59 cachesize 150
May 20 09:01:40 grizzly-236 dnsmasq[7235]: compile time options: IPv6 
GNU-getopt DBus i18n DHCP TFTP conntrack IDN
May 20 09:01:40 grizzly-236 dnsmasq[7235]: warning: no upstream servers 
configured
May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: DHCP, static leases only on 
10.20.30.0, lease time 2m
May 20 09:01:40 grizzly-236 dnsmasq[7235]: cleared cache
May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: read 
/var/lib/quantum/dhcp/e6f27330-be41-478c-b4d2-49ed4ce0af00/host
May 20 09:01:40 grizzly-236 dnsmasq-dhcp[7235]: read 
/var/lib/quantum/dhcp/e6f27330-be41-478c-b4d2-49ed4ce0af00/opts
May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPREQUEST(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0
May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPNAK(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0 lease not found
May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPDISCOVER(tapdbcef145-f5) 
fa:16:3e:2d:0d:e0
May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPOFFER(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0
May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPREQUEST(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0
May 20 09:02:19 grizzly-236 dnsmasq-dhcp[7235]: DHCPACK(tapdbcef145-f5) 
10.20.30.2 fa:16:3e:2d:0d:e0 10-20-30-2
 
May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]: DHCPDISCOVER(tapdbcef145-f5) 
fa:16:3e:fc:1f:9a
May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]: DHCPOFFER(tapdbcef145-f5) 
10.20.30.4 fa:16:3e:fc:1f:9a
May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]: DHCPREQUEST(tapdbcef145-f5) 
10.20.30.4 fa:16:3e:fc:1f:9a
May 20 09:03:39 grizzly-236 dnsmasq-dhcp[7235]: DHCPACK(tapdbcef145-f5) 
10.20.30.4 fa:16:3e:fc:1f:9a 10-20-30-4
 
 
What could be the problem? Have you seen similar behavior? If yes, how did you 
fix this?
 
Best regards,
Johanna
  
___
Mailing list: https://launchpad.net/~openstack
Post to     : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp




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


[Openstack] [openstack][quantum] Help for Quantum Extension API conf.

2013-05-20 Thread Qinglong.Meng
Hi all,
After I install and conf quantum, I get 404 API not found when I run
the CMD by quantum-client.
   $ quantum net-gateway-llist
   404 Not Found

   The resource could not be found.
   Then I see the quantum-server log, I got this:
   2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension
service-type not supported by any of loaded plugins$
   2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension flavor
not supported by any of loaded plugins$
   2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension
port-security not supported by any of loaded plugins$
   2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension
security-group not supported by any of loaded plugins$
   2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension lbaas
not supported by any of loaded plugins$
   2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension
routed-service-insertion not supported by any of loaded plugins$
2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension
router-service-type not supported by any of loaded plugins

Here are my confs:
nova conf: http://paste.openstack.org/show/37469/
quantum conf: http://paste.openstack.org/show/37470/

*
quantum-compute:
api-paste.ini: http://paste.openstack.org/show/37463/
dhcp_agent.ini: http://paste.openstack.org/show/37464/
l3_agent.ini: http://paste.openstack.org/show/37465/
quantum.conf: http://paste.openstack.org/show/37466/
open vswitch plugin ini: http://paste.openstack.org/show/37467/

***
quantum-server log: http://paste.openstack.org/show/37471/

Any body help me..

Tks

-- 

Lawrency Meng
mail: mengql112...@gmail.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
___
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] AuthN/AuthZ

2013-05-20 Thread Adam Young

On 05/16/2013 11:29 AM, Aaron Knister wrote:
Thanks Adam. I was able to get that far after a *lot* of headache. 
AD's typical schema doesn't map to what OpenStack is expecting, 
particularly as far as the domain_id attribute is concerned.


Sorry about that.  I am not too fond of our Domain_id thing either, and 
working to rectify:





When running Keystone under Apache HTTPD how does one use horizon?


No change.  You can report ports other that 5000/35357 for Keystone's 
service catalog  if you want to have Keystone serve on 443.  Or, you can 
have apache listen on the usual keystone ports. You will want Keystone 
on a separate machine from Horizon.





On Wed, May 15, 2013 at 3:57 PM, Adam Young ayo...@redhat.com 
mailto:ayo...@redhat.com wrote:


Run Keystone in Apache HTPD, use Kerberos and the LDAP backend to
talk to AD.



On 05/14/2013 06:11 PM, Aaron Knister wrote:

*bump*

Here's the tl;dr version:

- How have other folks handled integration of OpenStack with
existing authN/authZ infrastructures? I'm particularly interested
in the automatic mapping of existing LDAP groups to roles/tenants
within openstack.
- Are there plans to add support for the auth plugins to the
*client modules and CLI tools going forward? I'd be interested in
contributing this if it's on the roadmap and hasn't been done yet.
- Are there plans to add support for auth plugins/external au th
to Horizon? As above, I'm interested in implementing this if
there's interest.
- I see vague references in the documentation/*client code to
using certificates for authentication (without the need for httpd
external authentication) which would also eliminate the
credentials-in-environment-
variables issue. Is using PKI for authentication going to be
supported? If so what's the status?

Am I perhaps posting this to the wrong list? I didn't get any
replies from my original post.

Thanks!

-Aaron



On Tue, May 7, 2013 at 1:52 PM, Aaron Knister
aaron.knis...@gmail.com mailto:aaron.knis...@gmail.com wrote:

Hi Everyone,

I'm looking for feedback and input about what other sites are
doing for authentication and authorization with OpenStack.

First, some background:

I'm currently evaluating OpenStack (Grizzly), specifically
working on integration with Active Directory. I'm unable to
modify the schema to allow groupOfNames as a SUP of
organizationalRole so I've implemented a workaround using
openldap and several of its overlays backends to sit in front
of AD. That all works just fine, however I really would like
to be able to map AD groups to roles/tenants. I suspect I'll
end up writing some code to do this-- shouldn't be too hard.

Also on the subject of Active Directory, it's a show stopper
for me to put un-encrypted AD credentials in environment
variables to then pass to the various openstack CLI progs. My
ideal workaround would be to use Kerberos authentication
which I actually have working. I setup keystone to run under
apache based on this documentation with some tweaks here and
there:

http://docs.openstack.org/developer/keystone/external-auth.html

I created an openstack client auth plugin (based on the VOMS
auth plugin) using requests_kerberos and this works well with
the nova client, however none of the other client tools,
including horizon, seem to support authentication plugins or
the external authentication concept in general.

So, here are my questions:

- How have other folks handled integration of OpenStack with
existing authN/authZ infrastructures? I'm particularly
interested in the automatic mapping of existing LDAP groups
to roles/tenants within openstack.
- Are there plans to add support for the auth plugins to the
*client modules and CLI tools going forward? I'd be
interested in contributing this if it's on the roadmap and
hasn't been done yet.
- Are there plans to add support for auth plugins/external au
th to Horizon? As above, I'm interested in implementing this
if there's interest.
- I see vague references in the documentation/*client code to
using certificates for authentication (without the need for
httpd external authentication) which would also eliminate the
credentials-in-environment-variables issue. Is using PKI for
authentication going to be supported? If so what's the status?

Thanks in advance!

-Aaron




___
Mailing list:https://launchpad.net/~openstack  
https://launchpad.net/%7Eopenstack
Post to :openstack@lists.launchpad.net  
mailto:openstack@lists.launchpad.net
Unsubscribe 

Re: [Openstack] [openstack][quantum] Help for Quantum Extension API conf.

2013-05-20 Thread Darragh O'Reilly


those extensions are specific to the Nicira NVP plugin
https://github.com/openstack/python-quantumclient/commit/d77f86218e4c0c2f5371accce64605e7cfff41c5





 From: Qinglong.Meng mengql112...@gmail.com
To: openstack@lists.launchpad.net; openstack-...@lists.openstack.org 
openstack-...@lists.openstack.org; 
china-openstack-user-gr...@googlegroups.com 
Sent: Monday, 20 May 2013, 13:24
Subject: [Openstack] [openstack][quantum] Help for Quantum Extension API conf.
 



Hi all,
    After I install and conf quantum, I get 404 API not found when I run the 
CMD by quantum-client.
   $ quantum net-gateway-llist
   404 Not Found


   The resource could not be found.
   Then I see the quantum-server log, I got this:
   2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension 
service-type not supported by any of loaded plugins$
   2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension flavor not 
supported by any of loaded plugins$
   2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension 
port-security not supported by any of loaded plugins$
   2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension 
security-group not supported by any of loaded plugins$
   2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension lbaas not 
supported by any of loaded plugins$
   2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension 
routed-service-insertion not supported by any of loaded plugins$
    2013-05-20 19:54:03  WARNING [quantum.api.extensions] Extension 
router-service-type not supported by any of loaded plugins


Here are my confs:
nova conf: http://paste.openstack.org/show/37469/
quantum conf: http://paste.openstack.org/show/37470/


*
quantum-compute: 
api-paste.ini: http://paste.openstack.org/show/37463/   
dhcp_agent.ini: http://paste.openstack.org/show/37464/

l3_agent.ini: http://paste.openstack.org/show/37465/

quantum.conf: http://paste.openstack.org/show/37466/

open vswitch plugin ini: http://paste.openstack.org/show/37467/


***
quantum-server log: http://paste.openstack.org/show/37471/


Any body help me..


Tks

-- 



Lawrency Meng
mail: mengql112233@gmail.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

___
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] server_name column missing in Instances table of Nova database in Grizzly release

2013-05-20 Thread Rahul Sharma
Hi All,

I was running Openstack Multinode setup with Folsom release. I upgraded it
to Grizzly. Due to some reasons I had to format the Controller Node. Now I
have a newly deployed Grizzly controller node and upgraded Compute and
Network nodes. I am facing an issue with this setup which is described
below:-

If I check the *INSTANCES* table in *NOVA* database of Folsom release, I
could see that it contains a column *server_name* which is now *not
present* in the Grizzly release. Is there a specific reason why this column
is removed from the database? I am facing an issue that the upgraded
Compute node's code is looking for server_name column which is not present
in my Nova database since the node is fresh installed.

Is there a way to completely remove the installed nova-packages for Folsom
release from the node and install the latest Grizzly ones without format?
Most of the times I try apt-get remove package-name, I end up messing up
with the setup and libraries.

Your feedback for this issue would be really helpful.

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


[Openstack] [Keystone] Splitting the Identity Backend

2013-05-20 Thread Adam Young
Currently, the Identity backend  has Domains, Users , Groups, Roles, 
Role Assignments and Projects.  I've proposed splitting it into 3 
distinct pieces.  Domain, Identity, and Projects.


Here is the rationale:

Somewhere between a third and a half of the OpenStack deployments are 
using LDAP.  However, the mapping from LDAP to Identity does not work. 
LDAP is almost always a read only  datasource.   While Keystone *can* 
manage these, it should also be possible to treat the users and groups 
piece as externally managed.


In addition, several organizations have multiple LDAP servers. Not a 
huge number of servers,  but more than one is a very common scenario due 
to a merger.  Each of these should map to a domain. Thus, domain 
management has to be extracted out of the LDAP backend.


Identity would contain users and groups.  Projects would contain 
Projects, Roles, and Role Assignments.  Domains would contain only domains.


For people happily deploying SQL, nothing should change.  A single 
Database instance can still serve all three backends.  It should only 
mean removing some foreign key constraints.


For people that are deploying the current LDAP code and are happy with 
the layout, we will continue to support the LDAP Project backend.



Say an organization has two LDAP servers, and also maintains a public 
facing cloud backed by SQL.  Each of the two LDAP servers would have 
configurations that correspond to the current layout, although limited 
only to the user and group subtrees.  The domain registry  would live in 
the SQL backend.  It would have two entries for the LDAP servers, and 
these would be immutable.  Dynamic domain allocation and deletion would 
work only for the domains backed by SQL.




The main blueprint for this is:
https://blueprints.launchpad.net/keystone/+spec/split-identity
with supporting blueprints for pieces that can be completed 
interdependently.


Comments welcome.

___
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] server_name column missing in Instances table of Nova database in Grizzly release

2013-05-20 Thread Rahul Sharma
Also, If I have upgraded the setup from Folsom to Grizzly, then why is the
updated Nova-Compute node using the old column-names. Shouldn't it be that
it should use the new column_names?

-Regards
Rahul
On Mon, May 20, 2013 at 8:49 PM, Rahul Sharma rahulsharma...@gmail.comwrote:

 Hi All,

 I was running Openstack Multinode setup with Folsom release. I upgraded it
 to Grizzly. Due to some reasons I had to format the Controller Node. Now I
 have a newly deployed Grizzly controller node and upgraded Compute and
 Network nodes. I am facing an issue with this setup which is described
 below:-

 If I check the *INSTANCES* table in *NOVA* database of Folsom release, I
 could see that it contains a column *server_name* which is now *not
 present* in the Grizzly release. Is there a specific reason why this
 column is removed from the database? I am facing an issue that the upgraded
 Compute node's code is looking for server_name column which is not present
 in my Nova database since the node is fresh installed.

 Is there a way to completely remove the installed nova-packages for Folsom
 release from the node and install the latest Grizzly ones without format?
 Most of the times I try apt-get remove package-name, I end up messing up
 with the setup and libraries.

 Your feedback for this issue would be really helpful.

 Thanks and Regards
 Rahul Sharma



___
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] Splitting the Identity Backend

2013-05-20 Thread Miller, Mark M (EB SW Cloud - RD - Corvallis)
Hello Adam,

I have been waiting for a separation such as this. There is no way HP would 
allow us to muck with their LDAP servers other than read only.

Mark

-Original Message-
From: Openstack 
[mailto:openstack-bounces+mark.m.miller=hp@lists.launchpad.net] On Behalf 
Of Adam Young
Sent: Monday, May 20, 2013 9:47 AM
To: openstack
Subject: [Openstack] [Keystone] Splitting the Identity Backend

Currently, the Identity backend  has Domains, Users , Groups, Roles, Role 
Assignments and Projects.  I've proposed splitting it into 3 distinct pieces.  
Domain, Identity, and Projects.

Here is the rationale:

Somewhere between a third and a half of the OpenStack deployments are using 
LDAP.  However, the mapping from LDAP to Identity does not work. 
LDAP is almost always a read only  datasource.   While Keystone *can* 
manage these, it should also be possible to treat the users and groups piece as 
externally managed.

In addition, several organizations have multiple LDAP servers. Not a huge 
number of servers,  but more than one is a very common scenario due to a 
merger.  Each of these should map to a domain. Thus, domain management has to 
be extracted out of the LDAP backend.

Identity would contain users and groups.  Projects would contain Projects, 
Roles, and Role Assignments.  Domains would contain only domains.

For people happily deploying SQL, nothing should change.  A single Database 
instance can still serve all three backends.  It should only mean removing some 
foreign key constraints.

For people that are deploying the current LDAP code and are happy with the 
layout, we will continue to support the LDAP Project backend.


Say an organization has two LDAP servers, and also maintains a public 
facing cloud backed by SQL.  Each of the two LDAP servers would have 
configurations that correspond to the current layout, although limited 
only to the user and group subtrees.  The domain registry  would live in 
the SQL backend.  It would have two entries for the LDAP servers, and 
these would be immutable.  Dynamic domain allocation and deletion would 
work only for the domains backed by SQL.



The main blueprint for this is:
https://blueprints.launchpad.net/keystone/+spec/split-identity
with supporting blueprints for pieces that can be completed 
interdependently.

Comments welcome.

___
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] more info on this raise exception.NoValidHost

2013-05-20 Thread Remo Mattei
Hello everyone, 

I wonder if someone can give me a more detail overview about the raise 
exception.NoValidHost
on what does raise mean. 

Thanks
Remo ___
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] Customer Portal Security from Hackers

2013-05-20 Thread Chris Bartels
Hi,

 

I'm interested in learning more about how to implement a customer portal for
an OpenStack installation, and would like to know specifically about how the
customer portal is safe from would-be hackers when exposed in the wild. I
don't know if there are any additional measures I would have to add like
perhaps my own login page with its own security to protect the management
page, or if it comes with its own login system for example. 

 

How can I make the security of my VPS service a selling point when I'm using
OpenStack for the backend?

 

Mind you I don't know anything about OpenStack yet, aside from what I see in
videos on the OpenStack Foundation YouTube channel, and I haven't seen
anything addressing this issue as of yet. I don't even know if OpenStack
comes with a customer portal I can deploy or if I have to design one using
the API.

 

I hope to have servers arrive this week which I can use to build prototypes
of my production setup, where I can test hardening configurations. But I
don't know where to begin. All I can think of is fail2ban, and I don't think
that would apply in this case.

 

What can people tell me that would help me get a handle on this issue?

 

 

Thanks in advance.

 

-Chris

___
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] more info on this raise exception.NoValidHost

2013-05-20 Thread Aaron Rosen
Usually means that the instance trying to be launched can't be scheduled to
any nova-compute nodes. The log message should include a reason why though.




On Mon, May 20, 2013 at 12:06 PM, Remo Mattei r...@mattei.org wrote:

 Hello everyone,

 I wonder if someone can give me a more detail overview about the raise
 exception.NoValidHost
 on what does raise mean.

 Thanks
 Remo

 ___
 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] Customer Portal Security from Hackers

2013-05-20 Thread Brian Schott
The OpenStack customer-facing portal is called Horizon and is based on Django.
https://github.com/openstack/horizon
It's intended to be tailored and play nicely with other Django applications.  
That would be the first place to start.  The rest depends on what kind of 
interface you want to present to your customers for your deployment.


On May 20, 2013, at 3:54 PM, Chris Bartels ch...@christopherbartels.com 
wrote:

 Hi,
  
 I’m interested in learning more about how to implement a customer portal for 
 an OpenStack installation, and would like to know specifically about how the 
 customer portal is safe from would-be hackers when exposed in the wild. I 
 don’t know if there are any additional measures I would have to add like 
 perhaps my own login page with its own security to protect the management 
 page, or if it comes with its own login system for example.
  
 How can I make the security of my VPS service a selling point when I’m using 
 OpenStack for the backend?
  
 Mind you I don’t know anything about OpenStack yet, aside from what I see in 
 videos on the OpenStack Foundation YouTube channel, and I haven’t seen 
 anything addressing this issue as of yet. I don’t even know if OpenStack 
 comes with a customer portal I can deploy or if I have to design one using 
 the API.
  
 I hope to have servers arrive this week which I can use to build prototypes 
 of my production setup, where I can test hardening configurations. But I 
 don’t know where to begin. All I can think of is fail2ban, and I don’t think 
 that would apply in this case.
  
 What can people tell me that would help me get a handle on this issue?
  
  
 Thanks in advance.
  
 -Chris
 ___
 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] Customer Portal Security from Hackers

2013-05-20 Thread Matt Joyce
Chris,

Someone will probably denounce this email as heresy for using this analogy,
but so be it.

Try to think of OpenStack as you would a motor vehicle's engine.  It has
many components that all tie together to allow the engine to operate.
Sometimes it has different configurations such as having a turbo charger or
a specific custom intake.

But, by itself OpenStack is just that... an engine.  Think of the OS as
being the frame or chasis of the Car.  Now you have a chasis with an
engine.  Maybe Horizon is the Dashboard.  Awesome.  Now we have most of
what we need to move this vehicle from place to place.

However, there's no seat belts, no windows, no a/c, or stereo, no bumpers,
no breaks, no... etc etc.

OpenStack by itself is just one component of a larger thing, be it an SaaS,
IaaS, whatever... solution.

You need to add the pieces to your cloud vehicle as you build it, or
alternatively buy a cloud vehicle from one of the many fine purveyor's of
OpenStack products.

As far as basic security goes...   I put together a basic introduction to
security targetting for OpenStack for shmoocon earlier this year.  It's
very folsom specific and very high level.

That's here:  http://www.youtube.com/watch?v=TkFsBvymiNM

Not sure if that is enough. A long time ago I wrote a security primer for
OpenStack, probably around the cactus release time frame.  I'll try to
write something up for grizzly if I have time.  It would probably be
helpful to have something like that in Docs.

-Matt




On Mon, May 20, 2013 at 12:54 PM, Chris Bartels 
ch...@christopherbartels.com wrote:

 Hi,

 ** **

 I’m interested in learning more about how to implement a customer portal
 for an OpenStack installation, and would like to know specifically about
 how the customer portal is safe from would-be hackers when exposed in the
 wild. I don’t know if there are any additional measures I would have to add
 like perhaps my own login page with its own security to protect the
 management page, or if it comes with its own login system for example. ***
 *

 ** **

 How can I make the security of my VPS service a selling point when I’m
 using OpenStack for the backend?

 ** **

 Mind you I don’t know anything about OpenStack yet, aside from what I see
 in videos on the OpenStack Foundation YouTube channel, and I haven’t seen
 anything addressing this issue as of yet. I don’t even know if OpenStack
 comes with a customer portal I can deploy or if I have to design one using
 the API.

 ** **

 I hope to have servers arrive this week which I can use to build
 prototypes of my production setup, where I can test hardening
 configurations. But I don’t know where to begin. All I can think of is
 fail2ban, and I don’t think that would apply in this case.

 ** **

 What can people tell me that would help me get a handle on this issue?

 ** **

 ** **

 Thanks in advance.

 ** **

 -Chris

 ___
 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] Customer Portal Security from Hackers

2013-05-20 Thread Anne Gentle
On Mon, May 20, 2013 at 3:22 PM, Matt Joyce matt.jo...@cloudscaling.comwrote:

 Chris,

 Someone will probably denounce this email as heresy for using this
 analogy, but so be it.

 Try to think of OpenStack as you would a motor vehicle's engine.  It has
 many components that all tie together to allow the engine to operate.
 Sometimes it has different configurations such as having a turbo charger or
 a specific custom intake.

 But, by itself OpenStack is just that... an engine.  Think of the OS as
 being the frame or chasis of the Car.  Now you have a chasis with an
 engine.  Maybe Horizon is the Dashboard.  Awesome.  Now we have most of
 what we need to move this vehicle from place to place.

 However, there's no seat belts, no windows, no a/c, or stereo, no bumpers,
 no breaks, no... etc etc.

 OpenStack by itself is just one component of a larger thing, be it an
 SaaS, IaaS, whatever... solution.

 You need to add the pieces to your cloud vehicle as you build it, or
 alternatively buy a cloud vehicle from one of the many fine purveyor's of
 OpenStack products.

 As far as basic security goes...   I put together a basic introduction to
 security targetting for OpenStack for shmoocon earlier this year.  It's
 very folsom specific and very high level.

 That's here:  http://www.youtube.com/watch?v=TkFsBvymiNM

 Not sure if that is enough. A long time ago I wrote a security primer for
 OpenStack, probably around the cactus release time frame.  I'll try to
 write something up for grizzly if I have time.  It would probably be
 helpful to have something like that in Docs.


There's a book sprint for a hardening guide happening next month... at an
undisclosed location because they're secure like that. Matt, you might want
to see if you can free up your schedule to write or review or anything you
like. I'll connect you off-list.

I'd like a cloud vehicle in sky blue please.
Anne


 -Matt




 On Mon, May 20, 2013 at 12:54 PM, Chris Bartels 
 ch...@christopherbartels.com wrote:

 Hi,

 ** **

 I’m interested in learning more about how to implement a customer portal
 for an OpenStack installation, and would like to know specifically about
 how the customer portal is safe from would-be hackers when exposed in the
 wild. I don’t know if there are any additional measures I would have to add
 like perhaps my own login page with its own security to protect the
 management page, or if it comes with its own login system for example. **
 **

 ** **

 How can I make the security of my VPS service a selling point when I’m
 using OpenStack for the backend?

 ** **

 Mind you I don’t know anything about OpenStack yet, aside from what I see
 in videos on the OpenStack Foundation YouTube channel, and I haven’t seen
 anything addressing this issue as of yet. I don’t even know if OpenStack
 comes with a customer portal I can deploy or if I have to design one using
 the API.

 ** **

 I hope to have servers arrive this week which I can use to build
 prototypes of my production setup, where I can test hardening
 configurations. But I don’t know where to begin. All I can think of is
 fail2ban, and I don’t think that would apply in this case.

 ** **

 What can people tell me that would help me get a handle on this issue?***
 *

 ** **

 ** **

 Thanks in advance.

 ** **

 -Chris

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



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


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


Re: [Openstack] AuthN/AuthZ

2013-05-20 Thread Aaron Knister
Hi Alan,

Thanks for your reply. I have to admit I don't know much about VOMS-- I
hadn't heard about it until I started googling for openstack auth plugins.
How would VOMS fit in with a Kerberos-based workflow? Would the user obtain
a certificate from the VOMS service by authenticating with their Kerberos
credentials?

I'm happy to share more about what I'm doing. In a nutshell I'm evaluating
OpenStack with the intention of building an internal cloud. The given
direction is not too specific at this point and neither are the
requirements or projected use cases but one use story is to allow users
to create machines of certain classes, a class being a machine that runs
application X like a web server that hosts a specific application. That's
tricky for a whole host of reasons particularly as security is concerned.
We don't want people injecting files/root keys into images or running
unapproved images. It's the whole IaaS vs PaaS and OpenStack is really
geared towards the former IMO. Let me know if you'd like more/different
info about what I'm doing.

I was hoping to leverage Kerberos and AD/LDAP for AuthN/AuthZ,
respectively. The idea with using LDAP as the identity provider was to map
group membership to tenant/role membership, but with the LDAP schema
keystone is expecting the groups would map to tenants and not to any
particular role within a tenant. I would have had to write something to
sync group members to the role objects within a tenant. I was hoping to
avoid writing code to do any massaging of data so I feel like I didn't
really gain much from the LDAP backend. That coupled with the fact that the
implementation (openldap with a slew of overlays to talk to AD) had
implementation issues in of itself. I have reverted to the SQL identity
provider and will likely end up writing something to keep the two data
sources in sync. Actually, something I just thought of, I could perhaps use
a pipeline filter for keystone instead of doing a manual sync.

Where I am (the NIH) is pretty committed to strong authentication
(Kerberos, PIV/Smart Cards etc.) so this is definitely a priority for me.
I'm sure it's a policy violation for a user to store their credentials in
plain text in environment variables which seems to be required for the
current command line utilities. I'm also interested to see how openstack
handles this going forward and am curious as to why this hasn't been a
blocker for more people. This etherpad might shed some light on the future
of this: https://etherpad.openstack.org/havana-external-auth.

-Aaron


On Wed, May 15, 2013 at 5:34 PM, Sill, Alan alan.s...@ttu.edu wrote:

 Aaron,

 I'd be interested in hearing more about what you are doing.  As you know,
 VOMS is a general method of supplying virtual organization membership
 attributes (e.g., groups, roles, etc.) as a web service. One method of
 doing this is in the form of extended attribute certificates, which can be
 fitted into any PKI or Kerberos-based workflow in principle. Other methods
 to make use of VOMS information may exist through portals and other related
 methods of accessing the features of the stored attributes through web
 services calls.

 The more general question you are asking, though, is about Auth plugins
 and interfacing external auth. I know several user communities that are
 completely committed to use of strong authentication and for which a
 well-designed set of interfaces that can support this are required items.
 One doesn't want to lose generality in producing such interfaces, though,
 so I would be interested in seeing how the openStack community is
 responding to the design topics for this aspect of authN/authZ integration.

 Alan

 On May 7, 2013, at 12:52 PM, Aaron Knister aaron.knis...@gmail.com
 wrote:

  Hi Everyone,
 
  I'm looking for feedback and input about what other sites are doing for
 authentication and authorization with OpenStack.
 
  First, some background:
 
  I'm currently evaluating OpenStack (Grizzly), specifically working on
 integration with Active Directory. I'm unable to modify the schema to allow
 groupOfNames as a SUP of organizationalRole so I've implemented a
 workaround using openldap and several of its overlays backends to sit in
 front of AD. That all works just fine, however I really would like to be
 able to map AD groups to roles/tenants. I suspect I'll end up writing some
 code to do this-- shouldn't be too hard.
 
  Also on the subject of Active Directory, it's a show stopper for me to
 put un-encrypted AD credentials in environment variables to then pass to
 the various openstack CLI progs. My ideal workaround would be to use
 Kerberos authentication which I actually have working. I setup keystone to
 run under apache based on this documentation with some tweaks here and
 there:
 
  http://docs.openstack.org/developer/keystone/external-auth.html
 
  I created an openstack client auth plugin (based on the VOMS auth
 plugin) using requests_kerberos and this works well with the 

Re: [Openstack] AuthN/AuthZ

2013-05-20 Thread Aaron Knister
Thanks Adam. I don't think I asked the right question. I'm wondering how I
get horizon to use the external auth when keystone is running behind apache.


On Mon, May 20, 2013 at 10:22 AM, Adam Young ayo...@redhat.com wrote:

  On 05/16/2013 11:29 AM, Aaron Knister wrote:

  Thanks Adam. I was able to get that far after a *lot* of headache. AD's
 typical schema doesn't map to what OpenStack is expecting, particularly as
 far as the domain_id attribute is concerned.


 Sorry about that.  I am not too fond of our Domain_id thing either, and
 working to rectify:




  When running Keystone under Apache HTTPD how does one use horizon?


 No change.  You can report ports other that 5000/35357 for Keystone's
 service catalog  if you want to have Keystone serve on 443.  Or, you can
 have apache listen on the usual keystone ports.  You will want Keystone on
 a separate machine from Horizon.




 On Wed, May 15, 2013 at 3:57 PM, Adam Young ayo...@redhat.com wrote:

  Run Keystone in Apache HTPD, use Kerberos and the LDAP backend to talk
 to AD.



 On 05/14/2013 06:11 PM, Aaron Knister wrote:

   *bump*

  Here's the tl;dr version:

 - How have other folks handled integration of OpenStack with existing
 authN/authZ infrastructures? I'm particularly interested in the automatic
 mapping of existing LDAP groups to roles/tenants within openstack.
 - Are there plans to add support for the auth plugins to the *client
 modules and CLI tools going forward? I'd be interested in contributing this
 if it's on the roadmap and hasn't been done yet.
 - Are there plans to add support for auth plugins/external au th to
 Horizon? As above, I'm interested in implementing this if there's interest.
  - I see vague references in the documentation/*client code to using
 certificates for authentication (without the need for httpd external
 authentication) which would also eliminate the credentials-in-environment-
 variables issue. Is using PKI for authentication going to be supported?
 If so what's the status?

  Am I perhaps posting this to the wrong list? I didn't get any replies
 from my original post.

  Thanks!

 -Aaron



 On Tue, May 7, 2013 at 1:52 PM, Aaron Knister aaron.knis...@gmail.comwrote:

 Hi Everyone,

  I'm looking for feedback and input about what other sites are doing for
 authentication and authorization with OpenStack.

  First, some background:

  I'm currently evaluating OpenStack (Grizzly), specifically working on
 integration with Active Directory. I'm unable to modify the schema to allow
 groupOfNames as a SUP of organizationalRole so I've implemented a
 workaround using openldap and several of its overlays backends to sit in
 front of AD. That all works just fine, however I really would like to be
 able to map AD groups to roles/tenants. I suspect I'll end up writing some
 code to do this-- shouldn't be too hard.

  Also on the subject of Active Directory, it's a show stopper for me to
 put un-encrypted AD credentials in environment variables to then pass to
 the various openstack CLI progs. My ideal workaround would be to use
 Kerberos authentication which I actually have working. I setup keystone to
 run under apache based on this documentation with some tweaks here and
 there:

 http://docs.openstack.org/developer/keystone/external-auth.html

  I created an openstack client auth plugin (based on the VOMS auth
 plugin) using requests_kerberos and this works well with the nova client,
 however none of the other client tools, including horizon, seem to support
 authentication plugins or the external authentication concept in general.

  So, here are my questions:

  - How have other folks handled integration of OpenStack with existing
 authN/authZ infrastructures? I'm particularly interested in the automatic
 mapping of existing LDAP groups to roles/tenants within openstack.
  - Are there plans to add support for the auth plugins to the *client
 modules and CLI tools going forward? I'd be interested in contributing this
 if it's on the roadmap and hasn't been done yet.
  - Are there plans to add support for auth plugins/external au th to
 Horizon? As above, I'm interested in implementing this if there's interest.
  - I see vague references in the documentation/*client code to using
 certificates for authentication (without the need for httpd external
 authentication) which would also eliminate the
 credentials-in-environment-variables issue. Is using PKI for authentication
 going to be supported? If so what's the status?

  Thanks in advance!

 -Aaron




  ___
 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   : 

[Openstack] [openstack][quantum] nova-compute DOWN with 'brctl addif' cmd

2013-05-20 Thread Qinglong.Meng
Hi friends,
the nova-compute log say 'brctl addif qbr876fed87-40 qvb876fed87-40'
error, when I reboot the server by 'init 6', and the nova-compute service
down.
But it's Ok when I restart nova-compute service. so it's strange for me.
Here are some usefully info, maybe helpfully.

nova-compute.log:http://paste.openstack.org/show/37508/
ovs-vsctl: http://paste.openstack.org/show/37509/

And body help me..

Best regards,

Tks

-- 

Lawrency Meng
mail: mengql112...@gmail.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
___
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] Confused by the term 'provider network' in OpenStack doc

2013-05-20 Thread Zhidong Yu
It seems there are two different meaning for this term. One is about a sort
of usage scenario where the virtual network is *directly *mapped to a
physical and instance is *directly *connected to the outside world without
floating IP or L3 agent [1]. The word 'provider' in this context could be
understood as external *provider *of network service.

The other one is about a way to allow administrator to associate virtual
networks with its underlying physical networks' name/type/segmentation_id,
so that segregating between different types of network traffic can be
achieved. This is done by Provider Extension [2].

Do I take it correct? If yes, then I am really confused by the section 5.1
of Quantum Admin Guide [3][4] where the Provider Extension is discussed but
somehow the first meaning of Provider Network is referred. For instance,
the highlighted words in the quotation below is very confusing.

Provider networks allow cloud administrators to create OpenStack Networking
 networks that map directly to physical networks in the data center.  This
 is commonly used to give tenants direct access to a public network that
 can be used to reach the Internet.  It may also be used to integrate with
 VLANs in the network that already have a defined meaning (e.g., allow a VM
 from the marketing department to be placed on the same VLAN as bare-metal
 marketing hosts in the same data center).



[1]
http://docs.openstack.org/trunk/openstack-network/admin/content/use_cases_single_flat.html
[2]
http://docs.openstack.org/trunk/openstack-network/admin/content/provider_attributes.html
[3]
http://docs.openstack.org/trunk/openstack-network/admin/content/provider_networks.html
[4]
http://docs.openstack.org/trunk/openstack-network/admin/content/provider_terminology.html
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] [openstack][quantum] How to understand 'ovs-vsctl show'?

2013-05-20 Thread Qinglong.Meng
Hi all,
Here is output of cmd 'ovs-vsctl show'. But how to explain it. Can
anybody help me?

root@compute01:~# ovs-vsctl show
e98109dd-eb2d-43b0-82f8-e2c733db49d7
Bridge qbr876fed87-40
Port tap876fed87-40
Interface tap876fed87-40
Port qvb876fed87-40
Interface qvb876fed87-40
Port qbr876fed87-40
Interface qbr876fed87-40
type: internal
Bridge br-int
Port br-int
Interface br-int
type: internal
Port qvo876fed87-40
tag: 1
Interface qvo876fed87-40
Port patch-tun
Interface patch-tun
type: patch
options: {peer=patch-int}
Port qvoeeba05d1-fb
tag: 1
Interface qvoeeba05d1-fb
Port tapa27f848c-27
tag: 1
Interface tapa27f848c-27
Port tapb55a3af4-29
tag: 1
Interface tapb55a3af4-29
Bridge br-tun
Port gre-2
Interface gre-2
type: gre
options: {in_key=flow, out_key=flow,
remote_ip=10.10.10.73}
Port patch-int
Interface patch-int
type: patch
options: {peer=patch-tun}
Port gre-1
Interface gre-1
type: gre
options: {in_key=flow, out_key=flow,
remote_ip=10.10.10.72}
Port br-tun
Interface br-tun
type: internal
Bridge virbr0
Port virbr0
Interface virbr0
type: internal
Bridge br-ex
Port eth3
Interface eth3
Port tap15ee53c7-1d
Interface tap15ee53c7-1d
Port br-ex
Interface br-ex
type: internal
Bridge qbreeba05d1-fb
Port tapeeba05d1-fb
Interface tapeeba05d1-fb
Port qvbeeba05d1-fb
Interface qvbeeba05d1-fb
Port qbreeba05d1-fb
Interface qbreeba05d1-fb
type: internal
ovs_version: 1.4.0+build0

Best Regards,
Tks

-- 

Lawrency Meng
mail: mengql112...@gmail.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
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_havana_cinder_trunk #70

2013-05-20 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 #39

2013-05-20 Thread openstack-testing-bot
Title: saucy_havana_cinder_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_cinder_trunk/39/Project:saucy_havana_cinder_trunkDate of build:Mon, 20 May 2013 03:00:23 -0400Build duration:3 min 38 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd thin provisioning support checks.by john.griffitheditcinder/brick/local_dev/lvm.pyeditcinder/tests/brick/test_brick_lvm.pyConsole Output[...truncated 5056 lines...]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 [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 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+git201305200300~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A cinder_2013.2+git201305200300~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+git201305200300~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+git201305200300~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 #131

2013-05-20 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 #62

2013-05-20 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_glance_trunk #48

2013-05-20 Thread openstack-testing-bot
Title: precise_havana_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_glance_trunk/48/Project:precise_havana_glance_trunkDate of build:Mon, 20 May 2013 06:00:22 -0400Build duration:7 min 50 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesImprove unit tests for glance.common.auth moduleby mark.washenbergereditglance/tests/unit/test_auth.pyConsole Output[...truncated 7477 lines...]dch -a [0a4f4af] Compress response's content according to client's accepted encodingdch -a [a9f9f13] Call os.kill for each child instead of the process groupdch -a [3182d87] Improve unit tests for glance.common.auth moduledch -a [039f3d8] Convert scripts to entry pointsdch -a [ff75ad4] Fix functional test 'test_copy_from_swift'dch -a [d700f24] Remove unused configure_db functiondch -a [2d492e0] Don't raise HTTPForbidden on a multitenant environmentdch -a [acc2900] Expand HACKING with commit message guidelinesdch -a [39477af] Redirects requests from /v# to /v#/dch -a [d415611] Functional tests use a clean cached db that is only created once.dch -a [d3c5a6c] Fixes for mis-use of various exceptionsdch -a [545cb15] scrubber: dont print URI of image to be deleteddch -a [6335fdb] Eliminate the race when selecting a port for tests.dch -a [7d341de] Raise 404 while deleting a deleted imagedch -a [459e3e6] Sync with oslo-incubator copy of setup.py and version.pydch -a [1e98e10] Gracefully handle qpid errorsdch -a [6780571] Fix Qpid test casesdch -a [cd00848] Fix the deletion of a pending_delete image.dch -a [1e49329] Fix functional test 'test_scrubber_with_metadata_enc'dch -a [1c5a4d2] Call monkey_patch before other modules are loadeddch -a [6eaf42a] Improve unit tests for glance.api.middleware.cache moduledch -a [ae0f904] Add GridFS storedch -a [28b1129] Verify SSL certificates at boot timedch -a [b1ac90f] Add a policy handler to control copy-from functionalitydch -a [62068a3] Remove internal store references from migration 015dch -a [7155134] Add unit tests for glance.api.cached_images moduledebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC glance_2013.2+git201305200600~precise-0ubuntu1_source.changessbuild -d precise-havana -n -A glance_2013.2+git201305200600~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-havana', '-n', '-A', 'glance_2013.2+git201305200600~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-havana', '-n', '-A', 'glance_2013.2+git201305200600~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_glance_trunk #19

2013-05-20 Thread openstack-testing-bot
Title: saucy_havana_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_glance_trunk/19/Project:saucy_havana_glance_trunkDate of build:Mon, 20 May 2013 06:00:23 -0400Build duration:8 min 23 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesImprove unit tests for glance.common.auth moduleby mark.washenbergereditglance/tests/unit/test_auth.pyConsole Output[...truncated 8075 lines...]Job: glance_2013.2+git201305200600~saucy-0ubuntu1.dscMachine Architecture: amd64Package: glancePackage-Time: 375Source-Version: 1:2013.2+git201305200600~saucy-0ubuntu1Space: 26292Status: attemptedVersion: 1:2013.2+git201305200600~saucy-0ubuntu1Finished at 20130520-0608Build needed 00:06:15, 26292k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'glance_2013.2+git201305200600~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'glance_2013.2+git201305200600~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/glance/havana /tmp/tmpqF_dca/glancemk-build-deps -i -r -t apt-get -y /tmp/tmpqF_dca/glance/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log -n5 --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:2013.2+git201305200600~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [34135e8] Implement Registry's Client V2dch -a [abbc535] Redirects requests from /v# to /v#/ with correct Location headerdch -a [bba2f5c] Add documentation for query parametersdch -a [00cc32c] Fix test_mismatched_X test data deletion checkdch -a [f72ed76] Implement registry API v2debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC glance_2013.2+git201305200600~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A glance_2013.2+git201305200600~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', 'glance_2013.2+git201305200600~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', 'glance_2013.2+git201305200600~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] Jenkins build is back to normal : cloud-archive_folsom_version-drift #16918

2013-05-20 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/16918/


-- 
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 #52

2013-05-20 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_keystone_trunk #18

2013-05-20 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 #71

2013-05-20 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 #40

2013-05-20 Thread openstack-testing-bot
Title: saucy_havana_cinder_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_cinder_trunk/40/Project:saucy_havana_cinder_trunkDate of build:Mon, 20 May 2013 12:00:23 -0400Build duration:4 min 1 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesImported Translations from Transifexby Jenkinseditcinder/locale/uk/LC_MESSAGES/cinder.poeditcinder/locale/bs/LC_MESSAGES/cinder.poeditcinder/locale/bg_BG/LC_MESSAGES/cinder.poeditcinder/locale/en_GB/LC_MESSAGES/cinder.poeditcinder/locale/pt_BR/LC_MESSAGES/cinder.poeditcinder/locale/it/LC_MESSAGES/cinder.poeditcinder/locale/en_US/LC_MESSAGES/cinder.poeditcinder/locale/fr/LC_MESSAGES/cinder.poeditcinder/locale/tr/LC_MESSAGES/cinder.poeditcinder/locale/ko/LC_MESSAGES/cinder.poeditcinder/locale/zh_TW/LC_MESSAGES/cinder.poeditcinder/locale/cinder.poteditcinder/locale/vi_VN/LC_MESSAGES/cinder.poeditcinder/locale/ko_KR/LC_MESSAGES/cinder.poeditcinder/locale/es/LC_MESSAGES/cinder.poeditcinder/locale/fi_FI/LC_MESSAGES/cinder.poeditcinder/locale/zh_CN/LC_MESSAGES/cinder.poeditcinder/locale/ru/LC_MESSAGES/cinder.poeditcinder/locale/ja/LC_MESSAGES/cinder.poeditcinder/locale/da/LC_MESSAGES/cinder.poeditcinder/locale/en_AU/LC_MESSAGES/cinder.poeditcinder/locale/tl/LC_MESSAGES/cinder.poeditcinder/locale/cs/LC_MESSAGES/cinder.poeditcinder/locale/de/LC_MESSAGES/cinder.poConsole Output[...truncated 5072 lines...]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 [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 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+git201305201200~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A cinder_2013.2+git201305201200~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+git201305201200~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+git201305201200~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 Failure: saucy_havana_python-novaclient_trunk #6

2013-05-20 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_python-novaclient_trunk #30

2013-05-20 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 #72

2013-05-20 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 #7

2013-05-20 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 #41

2013-05-20 Thread openstack-testing-bot
Title: saucy_havana_cinder_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_cinder_trunk/41/Project:saucy_havana_cinder_trunkDate of build:Mon, 20 May 2013 13:31:31 -0400Build duration:3 min 55 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesUpdate import of strutils from oslo.by mikaleditcinder/openstack/common/strutils.pyConsole Output[...truncated 5075 lines...]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 [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 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+git201305201331~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A cinder_2013.2+git201305201331~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+git201305201331~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+git201305201331~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_nova_trunk #105

2013-05-20 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/105/Project:saucy_havana_nova_trunkDate of build:Mon, 20 May 2013 14:30:27 -0400Build duration:3 min 4 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0Changesm1.tiny now has root_gb=1by rconradharriseditdoc/api_samples/os-flavor-swap/flavor-swap-list-resp.jsoneditnova/tests/integrated/api_samples/os-flavor-swap/flavor-swap-get-resp.json.tpleditnova/tests/integrated/api_samples/OS-FLV-EXT-DATA/flavors-extra-data-list-resp.xml.tpleditdoc/api_samples/os-flavor-swap/flavor-swap-list-resp.xmleditnova/tests/integrated/api_samples/OS-FLV-EXT-DATA/flavors-extra-data-get-resp.json.tpleditnova/tests/integrated/api_samples/os-flavor-access/flavor-access-show-resp.json.tpleditdoc/api_samples/os-flavor-access/flavor-access-show-resp.xmleditdoc/api_samples/os-simple-tenant-usage/simple-tenant-usage-get.xmleditdoc/api_samples/os-flavor-access/flavor-access-detail-resp.jsoneditnova/tests/integrated/api_samples/os-flavor-access/flavor-access-detail-resp.xml.tpleditnova/tests/integrated/api_samples/OS-FLV-DISABLED/flavor-show-get-resp.xml.tpleditdoc/api_samples/all_extensions/flavor-get-resp.xmleditnova/tests/integrated/api_samples/os-flavor-swap/flavor-swap-list-resp.json.tpleditdoc/api_samples/os-flavor-swap/flavor-swap-get-resp.xmleditnova/tests/integrated/api_samples/OS-FLV-EXT-DATA/flavors-extra-data-get-resp.xml.tpleditnova/tests/integrated/api_samples/flavor-get-resp.xml.tpleditnova/tests/integrated/api_samples/os-flavor-access/flavor-access-detail-resp.json.tpleditdoc/api_samples/os-simple-tenant-usage/simple-tenant-usage-get-specific.jsoneditnova/tests/integrated/api_samples/os-flavor-rxtx/flavor-rxtx-get-resp.json.tpleditdoc/api_samples/OS-FLV-EXT-DATA/flavors-extra-data-get-resp.jsoneditnova/tests/integrated/api_samples/os-flavor-rxtx/flavor-rxtx-list-resp.xml.tpleditnova/tests/integrated/api_samples/OS-FLV-EXT-DATA/flavors-extra-data-list-resp.json.tpleditdoc/api_samples/os-flavor-rxtx/flavor-rxtx-get-resp.xmleditnova/tests/integrated/api_samples/os-simple-tenant-usage/simple-tenant-usage-get-specific.xml.tpleditdoc/api_samples/os-flavor-rxtx/flavor-rxtx-get-resp.jsoneditnova/tests/integrated/api_samples/OS-FLV-DISABLED/flavor-detail-get-resp.json.tpleditnova/tests/integrated/api_samples/os-flavor-swap/flavor-swap-get-resp.xml.tpleditnova/tests/integrated/api_samples/os-simple-tenant-usage/simple-tenant-usage-get-specific.json.tpleditnova/tests/integrated/api_samples/os-flavor-rxtx/flavor-rxtx-get-resp.xml.tpleditnova/tests/integrated/api_samples/os-simple-tenant-usage/simple-tenant-usage-get.xml.tpleditdoc/api_samples/flavor-get-resp.xmleditdoc/api_samples/OS-FLV-DISABLED/flavor-show-get-resp.xmleditnova/tests/integrated/api_samples/flavors-list-resp.json.tpleditdoc/api_samples/OS-FLV-DISABLED/flavor-detail-get-resp.jsoneditdoc/api_samples/os-flavor-swap/flavor-swap-get-resp.jsoneditdoc/api_samples/os-flavor-access/flavor-access-show-resp.jsoneditdoc/api_samples/OS-FLV-DISABLED/flavor-detail-get-resp.xmleditnova/tests/integrated/api_samples/os-flavor-access/flavor-access-show-resp.xml.tpleditnova/tests/integrated/api_samples/all_extensions/flavor-get-resp.xml.tpleditdoc/api_samples/os-flavor-rxtx/flavor-rxtx-list-resp.xmleditdoc/api_samples/os-flavor-access/flavor-access-detail-resp.xmleditdoc/api_samples/OS-FLV-EXT-DATA/flavors-extra-data-list-resp.xmleditnova/tests/integrated/api_samples/os-simple-tenant-usage/simple-tenant-usage-get.json.tpleditdoc/api_samples/all_extensions/flavor-get-resp.jsoneditnova/tests/integrated/api_samples/os-flavor-rxtx/flavor-rxtx-list-resp.json.tpleditdoc/api_samples/OS-FLV-DISABLED/flavor-show-get-resp.jsoneditdoc/api_samples/os-simple-tenant-usage/simple-tenant-usage-get-specific.xmleditdoc/api_samples/os-simple-tenant-usage/simple-tenant-usage-get.jsoneditnova/tests/integrated/api_samples/all_extensions/flavor-get-resp.json.tpleditdoc/api_samples/OS-FLV-EXT-DATA/flavors-extra-data-get-resp.xmleditnova/tests/integrated/api_samples/OS-FLV-DISABLED/flavor-detail-get-resp.xml.tpleditdoc/api_samples/os-flavor-rxtx/flavor-rxtx-list-resp.jsoneditnova/db/sqlalchemy/migrate_repo/versions/133_folsom.pyeditnova/tests/integrated/api_samples/OS-FLV-DISABLED/flavor-show-get-resp.json.tpleditnova/tests/integrated/api_samples/os-flavor-swap/flavor-swap-list-resp.xml.tpleditdoc/api_samples/OS-FLV-EXT-DATA/flavors-extra-data-list-resp.jsoneditdoc/api_samples/flavor-get-resp.jsoneditnova/tests/integrated/api_samples/flavor-get-resp.json.tplFix require_context() decorators.by rpodolyakaeditnova/db/sqlalchemy/api.pyeditnova/tests/test_db_api.pyConsole Output[...truncated 4598 lines...]INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpBfQYh0/novamk-build-deps -i -r -t apt-get -y 

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_havana_cinder_trunk #73

2013-05-20 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 #63

2013-05-20 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 #42

2013-05-20 Thread openstack-testing-bot
Title: saucy_havana_cinder_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_cinder_trunk/42/Project:saucy_havana_cinder_trunkDate of build:Mon, 20 May 2013 15:00:27 -0400Build duration:5 min 12 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAllow flake8 to run in venvby eharneyeditrun_tests.shConsole Output[...truncated 5078 lines...]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 [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 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+git201305201500~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A cinder_2013.2+git201305201500~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+git201305201500~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+git201305201500~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_cinder_trunk #43

2013-05-20 Thread openstack-testing-bot
Title: saucy_havana_cinder_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_cinder_trunk/43/Project:saucy_havana_cinder_trunkDate of build:Mon, 20 May 2013 16:00:23 -0400Build duration:3 min 58 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesConvert to oslo strutils.bool_from_string.by mikaleditcinder/api/v2/snapshots.pyeditcinder/utils.pyeditcinder/tests/test_utils.pyeditcinder/api/v1/snapshots.pyConsole Output[...truncated 5080 lines...]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 [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 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+git201305201600~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A cinder_2013.2+git201305201600~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+git201305201600~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+git201305201600~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-keystoneclient_trunk #13

2013-05-20 Thread openstack-testing-bot
Title: saucy_havana_python-keystoneclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_python-keystoneclient_trunk/13/Project:saucy_havana_python-keystoneclient_trunkDate of build:Mon, 20 May 2013 17:30:22 -0400Build duration:3 min 2 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesRefactor v3 API to support filteringby jmatteditkeystoneclient/v3/groups.pyeditkeystoneclient/v3/endpoints.pyeditkeystoneclient/v3/roles.pyeditkeystoneclient/v3/projects.pyeditkeystoneclient/v3/users.pyConsole Output[...truncated 1916 lines...]Job: python-keystoneclient_0.2.3.28.g0676523+git201305201730~saucy-0ubuntu1.dscMachine Architecture: amd64Package: python-keystoneclientPackage-Time: 66Source-Version: 1:0.2.3.28.g0676523+git201305201730~saucy-0ubuntu1Space: 1600Status: attemptedVersion: 1:0.2.3.28.g0676523+git201305201730~saucy-0ubuntu1Finished at 20130520-1733Build needed 00:01:06, 1600k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-keystoneclient_0.2.3.28.g0676523+git201305201730~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-keystoneclient_0.2.3.28.g0676523+git201305201730~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-keystoneclient/havana /tmp/tmpPaDmt9/python-keystoneclientmk-build-deps -i -r -t apt-get -y /tmp/tmpPaDmt9/python-keystoneclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log -n5 --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:0.2.3.28.g0676523+git201305201730~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [bda43e0] change "int(marker)" to "marker" on user list pagination.dch -a [11263ac] Use testr instead of nose.dch -a [548b523] Perform oslo-incubator code sync.dch -a [1736e2f] Securely create signing_dir (bug 1174608)dch -a [d10218f] Added Conflict Exception to the exception code mapdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-keystoneclient_0.2.3.28.g0676523+git201305201730~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A python-keystoneclient_0.2.3.28.g0676523+git201305201730~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-keystoneclient_0.2.3.28.g0676523+git201305201730~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-keystoneclient_0.2.3.28.g0676523+git201305201730~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_python-keystoneclient_trunk #17

2013-05-20 Thread openstack-testing-bot
Title: precise_havana_python-keystoneclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_python-keystoneclient_trunk/17/Project:precise_havana_python-keystoneclient_trunkDate of build:Mon, 20 May 2013 17:30:22 -0400Build duration:3 min 15 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesRefactor v3 API to support filteringby jmatteditkeystoneclient/v3/users.pyeditkeystoneclient/v3/projects.pyeditkeystoneclient/v3/groups.pyeditkeystoneclient/v3/roles.pyeditkeystoneclient/v3/endpoints.pyConsole Output[...truncated 1498 lines...]Build-Time: 6Distribution: precise-havanaFail-Stage: buildHost Architecture: amd64Install-Time: 56Job: python-keystoneclient_0.2.3.28.g0676523+git201305201730~precise-0ubuntu1.dscMachine Architecture: amd64Package: python-keystoneclientPackage-Time: 104Source-Version: 1:0.2.3.28.g0676523+git201305201730~precise-0ubuntu1Space: 1740Status: attemptedVersion: 1:0.2.3.28.g0676523+git201305201730~precise-0ubuntu1Finished at 20130520-1733Build needed 00:01:44, 1740k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-havana', '-n', '-A', 'python-keystoneclient_0.2.3.28.g0676523+git201305201730~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-havana', '-n', '-A', 'python-keystoneclient_0.2.3.28.g0676523+git201305201730~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-keystoneclient/havana /tmp/tmpjgNEhK/python-keystoneclientmk-build-deps -i -r -t apt-get -y /tmp/tmpjgNEhK/python-keystoneclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hdch -b -D precise --newversion 1:0.2.3.28.g0676523+git201305201730~precise-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-keystoneclient_0.2.3.28.g0676523+git201305201730~precise-0ubuntu1_source.changessbuild -d precise-havana -n -A python-keystoneclient_0.2.3.28.g0676523+git201305201730~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-havana', '-n', '-A', 'python-keystoneclient_0.2.3.28.g0676523+git201305201730~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-havana', '-n', '-A', 'python-keystoneclient_0.2.3.28.g0676523+git201305201730~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: precise_havana_nova_trunk #186

2013-05-20 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/186/Project:precise_havana_nova_trunkDate of build:Mon, 20 May 2013 17:30:25 -0400Build duration:3 min 59 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesSync service and threadgroup modules from osloby bdelliotteditopenstack-common.confeditnova/openstack/common/jsonutils.pyaddnova/openstack/common/service.pyaddnova/openstack/common/threadgroup.pyeditnova/openstack/common/processutils.pyeditnova/openstack/common/log.pyConsole Output[...truncated 793 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-7cc1685b-994b-4f19-897e-0f9c5efc1981', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-7cc1685b-994b-4f19-897e-0f9c5efc1981', '-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/tmp2hp3S8/novamk-build-deps -i -r -t apt-get -y /tmp/tmp2hp3S8/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-7cc1685b-994b-4f19-897e-0f9c5efc1981', '-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-7cc1685b-994b-4f19-897e-0f9c5efc1981', '-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 #106

2013-05-20 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/106/Project:saucy_havana_nova_trunkDate of build:Mon, 20 May 2013 17:31:28 -0400Build duration:4 min 14 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesSync service and threadgroup modules from osloby bdelliotteditnova/openstack/common/log.pyeditnova/openstack/common/jsonutils.pyeditopenstack-common.confaddnova/openstack/common/threadgroup.pyeditnova/openstack/common/processutils.pyaddnova/openstack/common/service.pyConsole Output[...truncated 4603 lines...]INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/havana /tmp/tmpoBf3nH/novamk-build-deps -i -r -t apt-get -y /tmp/tmpoBf3nH/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log b196d9626379258bd8c950b68830657f8c8d01f8..HEAD --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:2013.2+git201305201732~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [e5bf326] Update run_tests.sh to run flake8 too.dch -a [19aaaf5] Fix require_context() decorators.dch -a [e4f05ba] Imported Translations from Transifexdch -a [585311b] Remove locals() from nova/cells/*dch -a [e384bc3] Update mailmapdch -a [0428356] Strip exec_dirs prefix from rootwrap filtersdch -a [c092b27] Clean up test_api_samples a bitdch -a [ad90907] Remove unnecessary parens in test_volumesdch -a [715435c] Use strict=True instead of `is_valid_boolstr`dch -a [2dce8c9] Remove usage of locals() for formatting from nova.api.*dch -a [a333be8] Switch to flake8+hacking.dch -a [186c494] Fix flake8 errors in anticipation of flake8.dch -a [48bd759] baremetal: drop 'prov_mac_address' columndch -a [d4e762b] The vm_state should not be modified until the task is complete.dch -a [5613818] 'm1.tiny' now has root_gb=1dch -a [7f1670e] Cast `size` to int before comparisondch -a [dc88726] Don't raise unnecessary stack traces in EC2 APIdch -a [6d82c10] Fix whitespace issue in indentdch -a [7141f1b] Improve unit tests for DB archiving.dch -a [1298b18] Sync service and threadgroup modules from oslodch -a [0f56d8d] Optimize instance queries in compute managerdebcommitbzr 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-e81f9c2a-a33e-4c66-9cbf-dc3fcbf58347', '-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-e81f9c2a-a33e-4c66-9cbf-dc3fcbf58347', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


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

2013-05-20 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/1003/Project:precise_grizzly_nova_trunkDate of build:Mon, 20 May 2013 17:33:38 -0400Build duration:3 min 1 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesMake nova-network support requested nic orderingby rbryanteditnova/tests/network/test_manager.pyeditnova/network/manager.pyConsole Output[...truncated 3640 lines...]Applying patch fix-docs-build-without-network.patchpatching file doc/source/conf.pyApplying patch avoid_setuptools_git_dependency.patchpatching file tools/pip-requiresApplying patch CVE-2013-2096.patchpatching file nova/tests/test_imagebackend.pyHunk #1 FAILED at 20.Hunk #2 FAILED at 253.Hunk #3 succeeded at 288 with fuzz 1 (offset 21 lines).2 out of 3 hunks FAILED -- rejects in file nova/tests/test_imagebackend.pypatching file nova/virt/libvirt/imagebackend.pyHunk #1 FAILED at 21.Hunk #2 FAILED at 255.2 out of 2 hunks FAILED -- rejects in file nova/virt/libvirt/imagebackend.pyPatch CVE-2013-2096.patch can be reverse-appliedERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-7f8ee004-ce33-4b40-990d-3b6c2aef2d96', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-7f8ee004-ce33-4b40-990d-3b6c2aef2d96', '-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/nova/grizzly /tmp/tmpAVXtk3/novamk-build-deps -i -r -t apt-get -y /tmp/tmpAVXtk3/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hdch -b -D precise --newversion 1:2013.1+git201305201734~precise-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', 'precise-amd64-7f8ee004-ce33-4b40-990d-3b6c2aef2d96', '-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', 'precise-amd64-7f8ee004-ce33-4b40-990d-3b6c2aef2d96', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: raring_grizzly_nova_trunk #1013

2013-05-20 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/1013/Project:raring_grizzly_nova_trunkDate of build:Mon, 20 May 2013 17:33:27 -0400Build duration:4 min 15 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesMake nova-network support requested nic orderingby rbryanteditnova/tests/network/test_manager.pyeditnova/network/manager.pyConsole Output[...truncated 4381 lines...]Applying patch fix-docs-build-without-network.patchpatching file doc/source/conf.pyApplying patch avoid_setuptools_git_dependency.patchpatching file tools/pip-requiresApplying patch CVE-2013-2096.patchpatching file nova/tests/test_imagebackend.pyHunk #1 FAILED at 20.Hunk #2 FAILED at 253.Hunk #3 succeeded at 288 with fuzz 1 (offset 21 lines).2 out of 3 hunks FAILED -- rejects in file nova/tests/test_imagebackend.pypatching file nova/virt/libvirt/imagebackend.pyHunk #1 FAILED at 21.Hunk #2 FAILED at 255.2 out of 2 hunks FAILED -- rejects in file nova/virt/libvirt/imagebackend.pyPatch CVE-2013-2096.patch can be reverse-appliedERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'raring-amd64-054a3cbe-b25d-42c8-a17a-1ddc9bc27aaf', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'raring-amd64-054a3cbe-b25d-42c8-a17a-1ddc9bc27aaf', '-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/nova/grizzly /tmp/tmptsJXng/novamk-build-deps -i -r -t apt-get -y /tmp/tmptsJXng/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hdch -b -D raring --newversion 1:2013.1+git201305201734~raring-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'raring-amd64-054a3cbe-b25d-42c8-a17a-1ddc9bc27aaf', '-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', 'raring-amd64-054a3cbe-b25d-42c8-a17a-1ddc9bc27aaf', '-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_nova_trunk #187

2013-05-20 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/187/Project:precise_havana_nova_trunkDate of build:Mon, 20 May 2013 18:30:25 -0400Build duration:3 min 10 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesEditable default quota supportby liyingjun1988editnova/tests/test_quota.pyeditnova/quota.pyeditnova/db/api.pyeditnova/tests/test_db_api.pyeditnova/db/sqlalchemy/api.pyAdded attribute ip to server search options.by satya.patibandlaeditnova/api/openstack/compute/servers.pyeditnova/tests/api/openstack/compute/test_servers.pyConsole Output[...truncated 793 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-1021a5d2-edaf-4846-9408-7d7e76b00c4b', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-1021a5d2-edaf-4846-9408-7d7e76b00c4b', '-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/tmp2mIMzp/novamk-build-deps -i -r -t apt-get -y /tmp/tmp2mIMzp/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-1021a5d2-edaf-4846-9408-7d7e76b00c4b', '-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-1021a5d2-edaf-4846-9408-7d7e76b00c4b', '-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 #107

2013-05-20 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/107/Project:saucy_havana_nova_trunkDate of build:Mon, 20 May 2013 18:30:25 -0400Build duration:3 min 13 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesEditable default quota supportby liyingjun1988editnova/quota.pyeditnova/db/sqlalchemy/api.pyeditnova/tests/test_db_api.pyeditnova/db/api.pyeditnova/tests/test_quota.pyAdded attribute ip to server search options.by satya.patibandlaeditnova/tests/api/openstack/compute/test_servers.pyeditnova/api/openstack/compute/servers.pyConsole Output[...truncated 4609 lines...]mk-build-deps -i -r -t apt-get -y /tmp/tmpNsHzm8/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log b196d9626379258bd8c950b68830657f8c8d01f8..HEAD --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:2013.2+git201305201831~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [e5bf326] Update run_tests.sh to run flake8 too.dch -a [37abdd9] Added attribute 'ip' to server search options.dch -a [19aaaf5] Fix require_context() decorators.dch -a [e4f05ba] Imported Translations from Transifexdch -a [585311b] Remove locals() from nova/cells/*dch -a [e384bc3] Update mailmapdch -a [0428356] Strip exec_dirs prefix from rootwrap filtersdch -a [c092b27] Clean up test_api_samples a bitdch -a [ad90907] Remove unnecessary parens in test_volumesdch -a [715435c] Use strict=True instead of `is_valid_boolstr`dch -a [682fb1d] Editable default quota supportdch -a [2dce8c9] Remove usage of locals() for formatting from nova.api.*dch -a [a333be8] Switch to flake8+hacking.dch -a [186c494] Fix flake8 errors in anticipation of flake8.dch -a [48bd759] baremetal: drop 'prov_mac_address' columndch -a [d4e762b] The vm_state should not be modified until the task is complete.dch -a [5613818] 'm1.tiny' now has root_gb=1dch -a [7f1670e] Cast `size` to int before comparisondch -a [dc88726] Don't raise unnecessary stack traces in EC2 APIdch -a [6d82c10] Fix whitespace issue in indentdch -a [7141f1b] Improve unit tests for DB archiving.dch -a [1298b18] Sync service and threadgroup modules from oslodch -a [0f56d8d] Optimize instance queries in compute managerdebcommitbzr 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-79c58fe3-db03-430e-80b0-ca236139ea0b', '-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-79c58fe3-db03-430e-80b0-ca236139ea0b', '-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-keystoneclient_trunk #18

2013-05-20 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-keystoneclient_trunk #14

2013-05-20 Thread openstack-testing-bot
Title: saucy_havana_python-keystoneclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_python-keystoneclient_trunk/14/Project:saucy_havana_python-keystoneclient_trunkDate of build:Mon, 20 May 2013 20:30:23 -0400Build duration:4 min 36 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAllow secure user password update.by pkilambieditkeystoneclient/utils.pyeditkeystoneclient/v2_0/shell.pyConsole Output[...truncated 1927 lines...]Job: python-keystoneclient_0.2.3.30.g3f40509+git201305202030~saucy-0ubuntu1.dscMachine Architecture: amd64Package: python-keystoneclientPackage-Time: 57Source-Version: 1:0.2.3.30.g3f40509+git201305202030~saucy-0ubuntu1Space: 1608Status: attemptedVersion: 1:0.2.3.30.g3f40509+git201305202030~saucy-0ubuntu1Finished at 20130520-2034Build needed 00:00:57, 1608k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-keystoneclient_0.2.3.30.g3f40509+git201305202030~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-keystoneclient_0.2.3.30.g3f40509+git201305202030~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-keystoneclient/havana /tmp/tmpndVPrZ/python-keystoneclientmk-build-deps -i -r -t apt-get -y /tmp/tmpndVPrZ/python-keystoneclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log -n5 --no-merges --pretty=format:[%h] %sdch -b -D saucy --newversion 1:0.2.3.30.g3f40509+git201305202030~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [f2e0818] Allow secure user password update.dch -a [bda43e0] change "int(marker)" to "marker" on user list pagination.dch -a [11263ac] Use testr instead of nose.dch -a [548b523] Perform oslo-incubator code sync.dch -a [1736e2f] Securely create signing_dir (bug 1174608)debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-keystoneclient_0.2.3.30.g3f40509+git201305202030~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A python-keystoneclient_0.2.3.30.g3f40509+git201305202030~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-keystoneclient_0.2.3.30.g3f40509+git201305202030~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-keystoneclient_0.2.3.30.g3f40509+git201305202030~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 #133

2013-05-20 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 #64

2013-05-20 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_python-swiftclient_trunk #10

2013-05-20 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/10/Project:precise_havana_python-swiftclient_trunkDate of build:Tue, 21 May 2013 00:30:22 -0400Build duration:1 min 53 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesAdd end_marker and path query parametersby yuzawatakaeditswiftclient/client.pyedittests/test_swiftclient.pydo not warn about etag for sloby dpgoetzeditbin/swiftConsole Output[...truncated 687 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-662d38ae-bdcb-497e-8c70-3052019586b7', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-662d38ae-bdcb-497e-8c70-3052019586b7', '-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/tmpTCFjgS/python-swiftclientmk-build-deps -i -r -t apt-get -y /tmp/tmpTCFjgS/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-662d38ae-bdcb-497e-8c70-3052019586b7', '-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-662d38ae-bdcb-497e-8c70-3052019586b7', '-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_python-swiftclient_trunk #9

2013-05-20 Thread openstack-testing-bot
Title: saucy_havana_python-swiftclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_python-swiftclient_trunk/9/Project:saucy_havana_python-swiftclient_trunkDate of build:Tue, 21 May 2013 00:30:23 -0400Build duration:2 min 59 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40ChangesAdd end_marker and path query parametersby yuzawatakaedittests/test_swiftclient.pyeditswiftclient/client.pydo not warn about etag for sloby dpgoetzeditbin/swiftConsole Output[...truncated 1927 lines...]Build-Time: 47Distribution: saucy-havanaFail-Stage: buildHost Architecture: amd64Install-Time: 24Job: python-swiftclient_1.4.0.13.gd5b6d29+git201305210030~saucy-0ubuntu1.dscMachine Architecture: amd64Package: python-swiftclientPackage-Time: 84Source-Version: 1:1.4.0.13.gd5b6d29+git201305210030~saucy-0ubuntu1Space: 568Status: attemptedVersion: 1:1.4.0.13.gd5b6d29+git201305210030~saucy-0ubuntu1Finished at 20130521-0033Build needed 00:01:24, 568k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-swiftclient_1.4.0.13.gd5b6d29+git201305210030~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-swiftclient_1.4.0.13.gd5b6d29+git201305210030~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-swiftclient/havana /tmp/tmpkV9i0J/python-swiftclientmk-build-deps -i -r -t apt-get -y /tmp/tmpkV9i0J/python-swiftclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hdch -b -D saucy --newversion 1:1.4.0.13.gd5b6d29+git201305210030~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-swiftclient_1.4.0.13.gd5b6d29+git201305210030~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A python-swiftclient_1.4.0.13.gd5b6d29+git201305210030~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-swiftclient_1.4.0.13.gd5b6d29+git201305210030~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-swiftclient_1.4.0.13.gd5b6d29+git201305210030~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 #75

2013-05-20 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 #44

2013-05-20 Thread openstack-testing-bot
Title: saucy_havana_cinder_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_cinder_trunk/44/Project:saucy_havana_cinder_trunkDate of build:Tue, 21 May 2013 01:00:23 -0400Build duration:3 min 53 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdds notifiers to both volumeTypes and volumeTypeExtraSpecsby jenny.shieheditcinder/tests/api/contrib/test_types_extra_specs.pyeditcinder/api/contrib/types_extra_specs.pyeditcinder/tests/api/contrib/test_types_manage.pyeditcinder/api/contrib/types_manage.pyHide v1/v2 version entities in API when disabledby bcwaldoneditcinder/api/versions.pyeditcinder/tests/api/test_router.pyConsole Output[...truncated 5108 lines...]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_to_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+git201305210100~saucy-0ubuntu1_source.changessbuild -d saucy-havana -n -A cinder_2013.2+git201305210100~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+git201305210100~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+git201305210100~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