Re: [Openstack] custom url for openstack dashboard

2013-06-24 Thread Anshul Gangwar
Hi JuanFra,

This is not solving my problem. I want a solution where urls are relative to 
certain fixed string  say os.

Currently I can either make them relative by making changes in settings.py or 
absolute.

for example when I see page source I can see urls are of form

/static/*
/auth/*

what I want is that when these urls are returned to browser, they are prefixed 
with some string like

/os/static/*
/os/auth/*

this os string is added on the fly i.e. these urls are absolute, but relative 
to certain fixed string.

 Thanks,
Anshul





 From: JuanFra Rodriguez Cardoso juanfra.rodriguez.card...@gmail.com
To: Anshul Gangwar anshul1...@yahoo.co.in 
Cc: Balamurugan V G balamuruga...@gmail.com; openstack@lists.launchpad.net 
openstack@lists.launchpad.net 
Sent: Friday, 21 June 2013 6:43 PM
Subject: Re: [Openstack] custom url for openstack dashboard
 


Hi Anshul,
you can try to change WSGI alias in file 
'/etc/httpd/conf.d/openstack-dahsboard' file (on RHEL-based installation).

DEFAULT -- WSGIScriptAlias /dashboard 
/usr/share/openstack-dashboard/openstack_dashboard/wsgi/django.wsgi

NEW -- WSGIScriptAlias /os 
/usr/share/openstack-dashboard/openstack_dashboard/wsgi/django.wsgi

Regards,
JuanFRa



---
JuanFra


2013/6/21 Anshul Gangwar anshul1...@yahoo.co.in

I am already using one proxy. So below doesn't seems to serve my purpose.


Basically I want something like such that  urls within the page are not 
absolute, instead they are relative.


i.e. In page source I can see that urls are like /static/admin(absolute). Can 
I change them to static/admin(relative) with some dashboard/horizon setting? 


Thanks,
Anshul





 From: Balamurugan V G balamuruga...@gmail.com
To: Anshul Gangwar anshul1...@yahoo.co.in 
Cc: openstack@lists.launchpad.net openstack@lists.launchpad.net 
Sent: Friday, 21 June 2013 1:28 PM
Subject: Re: [Openstack] custom url for openstack dashboard
 

You can try Apache's mod rewrite and do URL rewrites as desired.

Regards,
Balu


On Fri, Jun 21, 2013 at 1:05 PM, Anshul Gangwar anshul1...@yahoo.co.in wrote:
 I want to give custom url for openstack dashboard, say

 http://10.1.1.1/os

 How can I acheive this?

 Thanks,
 Anshul


 ___
 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] [Swift] Load Average node storage

2013-06-24 Thread Robert van Leeuwen
 load average: 24.06, 24.02, 24.00

 There is something, can i do to reduce the load?
 is it normal?

I guess it depends on what is causing the load. (are there processes eating all 
cpu cycles?)

What we see is that the object-auditor and object-replicator can cause quite a 
bit of load because they are crawling the filesystems and waiting for IO.
You can try to turn these off for a while to see if the load is caused by them.

 and  why is there a node storage with load 0 and 0 cpu?
Is it properly configured in the ring files? (as in: does it have files on its 
filesystems)
Are the object-auditor and replicator running?

Cheers,
Robert van Leeuwen
___
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] custom url for openstack dashboard

2013-06-24 Thread Matthias Runge
On 24/06/13 08:07, Anshul Gangwar wrote:
 Hi JuanFra,
 
 This is not solving my problem. I want a solution where urls are
 relative to certain fixed string  say os.
 
 Currently I can either make them relative by making changes in
 settings.py or absolute.
 
 for example when I see page source I can see urls are of form
 
 /static/*
 /auth/*
 
 what I want is that when these urls are returned to browser, they are
 prefixed with some string like
 
 /os/static/*
 /os/auth/*
 
 this os string is added on the fly i.e. these urls are absolute, but
 relative to certain fixed string.
 
  Thanks,
 Anshul
 
 
What I have done in rpm packages is:
(from httpd.conf)
WSGIScriptAlias /dashboard
/usr/share/openstack-dashboard/openstack_dashboard/wsgi/django.wsgi
Alias /static /usr/share/openstack-dashboard/static

and also required:
(from /usr/share/openstack-dashboard/openstack_dashboard/settings.py:

WEBROOT = '/dashboard'
LOGIN_URL = WEBROOT + '/auth/login/'
LOGOUT_URL = WEBROOT + '/auth/logout/'
# LOGIN_REDIRECT_URL can be used as an alternative for
# HORIZON_CONFIG.user_home, if user_home is not set.
# Do not set it to '/home/', as this will cause circular redirect loop
LOGIN_REDIRECT_URL = WEBROOT

MEDIA_ROOT = os.path.abspath(os.path.join(ROOT_PATH, '..', 'media'))
MEDIA_URL = '/media/'
STATIC_ROOT = os.path.abspath(os.path.join(ROOT_PATH, '..', 'static'))
STATIC_URL = '/static/'
ADMIN_MEDIA_PREFIX = '/static/admin/'


This whole stuff maps the dashboard to /dashboard. You're free to change
/dashboard to whatever you like. (the wsgiscriptalias  and also WEBROOT
needs to be changed).

This implies, that you can accept to have static media mapped to /static.

Matthias



___
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] [Ceilometer][Healthnmon] Dealing with Performance/Monitoring Metrics

2013-06-24 Thread Julien Danjou
On Sat, Jun 22 2013, Bruno Oliveira ~lychinus wrote:

 So, long story short, is technically possible for me to create metrics
 to make the API show up system_usage_metrics instead of simply
 system_allocated_metrics ?  (I guess I misunderstood, right?)

 Could you please enlight the path for me ?

If you know how to retrieve the actual memory or disk used (rather than
allocated) by a VM by measuring from outside the VM, please enlighten
us. We (Ceilometer) don't know how to do that, that's why we don't do
it actually.

-- 
Julien Danjou
;; Free Software hacker ; freelance consultant
;; http://julien.danjou.info


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


Re: [Openstack] [Ceilometer][Healthnmon] Dealing with Performance/Monitoring Metrics

2013-06-24 Thread claudio marques
Hi all
I think that we are all (people working with ceilometer), trying to figure out 
how to get the system actual data metrics from VMs.Do we need to install 
Healthnmon in order to get them? (because ceilometer as Julien already said, 
can't do it yet)
Cheers
Cláudio Marques 
-claudio@onesource.pthttp://www.onesource.pt/

From: jul...@danjou.info
To: brunnop.olive...@gmail.com
Date: Mon, 24 Jun 2013 11:41:13 +0200
CC: openstack@lists.launchpad.net
Subject: Re: [Openstack] [Ceilometer][Healthnmon] Dealing with  
Performance/Monitoring Metrics

On Sat, Jun 22 2013, Bruno Oliveira ~lychinus wrote:
 
 So, long story short, is technically possible for me to create metrics
 to make the API show up system_usage_metrics instead of simply
 system_allocated_metrics ?  (I guess I misunderstood, right?)

 Could you please enlight the path for me ?
 
If you know how to retrieve the actual memory or disk used (rather than
allocated) by a VM by measuring from outside the VM, please enlighten
us. We (Ceilometer) don't know how to do that, that's why we don't do
it actually.
 
-- 
Julien Danjou
;; Free Software hacker ; freelance consultant
;; http://julien.danjou.info

___
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][Swift][Keystone] Authentication Fails

2013-06-24 Thread Trevor Roberts Jr
Hello Team,

I am unable to login to Swift using the Keystone integration.  Here is sample 
output when I try to get swift status:

vagrant@swift:~$ swift -A http://172.16.0.201:5000/v2.0 -U service:swift -K 
swift stat
Auth GET failed: http://172.16.0.201:5000/v2.0 200 OK

I tried adding TempAuth entries to the Proxy config as well, but that is not 
working for me either.  Please see my Proxy Config file contents below:

172.16.0.203 is my Swift Server
172.16.0.201 is my Controller Node, which runs Keystone

[DEFAULT]
bind_port = 443
cert_file = /etc/swift/cert.crt
key_file = /etc/swift/cert.key
user = swift
log_facility = LOG_LOCAL1

[pipeline:main] 
pipeline = catch_errors healthcheck cache authtoken keystoneauth proxy-server 

[app:proxy-server] 
use = egg:swift#proxy 
account_autocreate = true
allow_account_management = true

[filter:tempauth]
use = egg:swift#tempauth
user_admin_admin = admin .admin .rseller_admin

[filter:healthcheck]
use = egg:swift#healthcheck

[filter:cache]
use = egg:swift#memcache

[filter:keystone]
paste.filter_factory = keystoneclient.middleware.swift_auth:filter_factory
operator_roles = Member,admin

[filter:authtoken]
paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
service_port = 5000
service_host = 172.16.0.201 
auth_port = 35357
auth_host = 172.16.0.201
auth_protocol = http
auth_token = ADMIN
admin_token = ADMIN
admin_tenant_name = service
admin_user = swift
admin_password = swift
cache = swift.cache

[filter:catch_errors] 
use = egg:swift#catch_errors

[filter:swift3]
use = egg:swift#swift3

[filter:keystoneauth]
use = egg:swift#keystoneauth
operator_roles = admin, swiftoperator

[filter:swiftauth]
use = egg:keystone#swiftauth
keystone_url = http://172.16.0.201:5000/v2.0
keystone_admin_token = 999888777666
keystone_swift_operator_roles = Admin, SwiftOperator
keystone_tenant_user_admin = true

[filter:tokenauth]
paste.filter_factory = keystone.middleware.auth_token:filter_factory
auth_protocol = http
auth_host = 172.16.0.201
auth_port = 35357
auth_uri = http://172.16.0.201:5000/
admin_token = 999888777666
delay_auth_decision = 0
memecache_host = 172.16.0.203:11211

The keystone endpoint was successfully created:
+--+---+++---+--+
|id|   region  |   publicurl
|  internalurl   |  
adminurl |service_id|
+--+---+++---+--+
| 3bb430404e1f4da0a8f22fdfa8b906a2 | RegionOne |
http://172.16.0.201:8773/services/Cloud |
http://172.16.0.201:8773/services/Cloud |  
http://172.16.0.201:8773/services/Admin  | fcfddafdc36b4708a3bfddd39cd5bd57 |
| 6cc1aedc3e154344922b34100a0a5c95 | RegionOne | 
https://172.16.0.203:443/v1/AUTH_$(tenant_id)s | 
https://172.16.0.203:443/v1/AUTH_$(tenant_id)s |
https://172.16.0.203:443/v1| 0c342438b82a461f98494ef7f7d3abb7 |
| 78fda6ce75034e8b821aadaef72b3a8b | RegionOne |   
http://172.16.0.201:8776/v1/%(tenant_id)s|   
http://172.16.0.201:8776/v1/%(tenant_id)s| 
http://172.16.0.201:8776/v1/%(tenant_id)s | 2410a1924e764513805b9d6f62639226 |
| 9bf69ed68d404a959521f1099e0aae5b | RegionOne | 
http://172.16.0.201:5000/v2.0  | http://172.16.0.201:5000/v2.0  
|   http://172.16.0.201:35357/v2.0  | 
839a2b67a6f1450fa8666507e49476d3 |
| b4d2945af5d24e50aae51c935452f36d | RegionOne |  
http://172.16.0.201:9292/v1   |  http://172.16.0.201:9292/v1
   |http://172.16.0.201:9292/v1| 
3a172fa1190a40ddb8bedafdffc26e08 |
| e5e3664088be4295942bce38e611f420 | RegionOne |   
http://172.16.0.201:8774/v2/$(tenant_id)s|   
http://172.16.0.201:8774/v2/$(tenant_id)s| 
http://172.16.0.201:8774/v2/$(tenant_id)s | d3b23588d58e4f7f9563a8e8af650128 |
+--+---+++---+--+

Also, the swift user is an admin in the service tenant:
vagrant@swift:~$ keystone tenant-list
+--+--+-+
|id|   name   | enabled |
+--+--+-+
| 9106c2e5f44840f39bac59be3c9d4e12 | cookbook |   True  |
| b334b98cc9f241d59367e848e253e3cf | service  |   True  |
+--+--+-+


vagrant@swift:~$ keystone user-role-list --user swift 

Re: [Openstack] Ceilometer problem: virDomainLookupByName must not be NULL

2013-06-24 Thread Juha Tynninen
Thanks. Unfortunately server restart didn't help...


On 20 June 2013 13:41, Jobin Raju George jobin...@gmail.com wrote:

 I had this exact problem yesterday which, when I restarted the server,
 seems to have been resolved(I can't see the ERROR message again logged
 after restarting). You can see the conversation I had about this 
 herehttps://ask.openstack.org/question/1480/compute-usage-meters-from-ceilometer/.
 See the comments to the answer by Ruslan Kiianchuk.


 On Thu, Jun 20, 2013 at 4:06 PM, Juha Tynninen tyk...@gmail.com wrote:

 Hello,

 I get an error libvir:  error : name in virDomainLookupByName must not
 be NULL when trying to collect nova compute counters for VMs:

 Problem seems to occur inside
 ceilometer/compute/pollsters.py's _instance_name() method
 where OS-EXT-SRV-ATTR:instance_name can't be retrieved:

 def _instance_name(instance):
 Shortcut to get instance name.

 # my modifications start
 LOG.debug(HEEHO _instance_name 1:  + str(instance))
 name = getattr(instance, 'OS-EXT-SRV-ATTR:instance_name', None)
 LOG.debug(HEEHO _instance_name 2:  + str(name))
 # my modifications end

 return getattr(instance, 'OS-EXT-SRV-ATTR:instance_name', None)

 Log:

 2013-06-20 21:16:57 INFO [ceilometer.compute.manager] Polling
 pollster cpu
 2013-06-20 21:16:57 INFO [ceilometer.compute.pollsters.cpu] checking
 instance 6dcd9975-66c9-48ed-8ad1-e2174a94c99e
 2013-06-20 21:16:57DEBUG [ceilometer.compute.pollsters] MYLOG
 _instance_name 1: Server: simpletest.MySimpleApp
 2013-06-20 21:16:57DEBUG [ceilometer.compute.pollsters] MYLOG
 _instance_name 2: None
 libvir:  error : name in virDomainLookupByName must not be NULL
 2013-06-20 21:16:57ERROR [ceilometer.compute.pollsters.cpu] could not
 get CPU time for 6dcd9975-66c9-48ed-8ad1-e2174a94c99e: Error from libvirt
 while looking up None: [Error Code 8] name in virDomainLookupByName must
 not be NULL
 2013-06-20 21:16:57ERROR [ceilometer.compute.pollsters.cpu] Error
 from libvirt while looking up None: [Error Code 8] name in
 virDomainLookupByName must not be NULL
 Traceback (most recent call last):
   File
 /usr/local/lib/python2.7/dist-packages/ceilometer-2013.1.1.a16.g93ea469-py2.7.egg/ceilometer/compute/pollsters.py,
 line 176, in get_counters
 cpu_info = manager.inspector.inspect_cpus(instance_name)
   File
 /usr/local/lib/python2.7/dist-packages/ceilometer-2013.1.1.a16.g93ea469-py2.7.egg/ceilometer/compute/virt/libvirt/inspector.py,
 line 103, in inspect_cpus
 domain = self._lookup_by_name(instance_name)
   File
 /usr/local/lib/python2.7/dist-packages/ceilometer-2013.1.1.a16.g93ea469-py2.7.egg/ceilometer/compute/virt/libvirt/inspector.py,
 line 87, in _lookup_by_name
 raise virt_inspector.InstanceNotFoundException(msg)
 InstanceNotFoundException: Error from libvirt while looking up None:
 [Error Code 8] name in virDomainLookupByName must not be NULL

 Any ideas what causes this behaviour? I have grizzly in use.

 Any help is much appreciated.

 Thanks,
 -Juha


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




 --

 Thanks and regards,

 Jobin Raju George

 Third Year, Information Technology

 College of Engineering Pune

 Alternate e-mail: georgejr10...@coep.ac.in


___
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] OVS and quantum

2013-06-24 Thread Kyle Mestery (kmestery)
On Jun 24, 2013, at 12:01 AM, Peter Cheung mcheun...@hotmail.com wrote:
 
 Dear All
 I want to use OVS for my VMs. So which one i should do
 1) i use alway use quantum to control OVS. I believe quantum cannot 100% 
 control the OVS, so i can use ovs command line to control the additional 
 features.

Which features of OVS are you interested in which are currently not exposed 
through Neutron (formerly Quantum)?

 2) i shouldn't use quantum, i should leave quantum and use OVS directly. But 
 which parameter of nova boot can specific the OVS tap to a VM?
 
nova-networking is planned to be deprecated in the near future, FYI. It may be 
better to address your concerns in Neutron. Can you let us know what you're 
looking for in particular in OVS which is not exposed in Neutron yet?

Thanks,
Kyle

 Thanks
 from Peter
 ___
 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] OVS and quantum

2013-06-24 Thread Peter Cheung
Hi KyleIs Neutron support this1) create vlan, adding a port(tap) for a 
vm?2) create vlan tag and assign to tap 
http://openvswitch.org/support/config-cookbooks/vlan-configuration-cookbook/   
?3) control the netflow of openvswitch4) control the QOS of openvswitch5) does 
it provide an API to do the avobe things instead of command line?
I think commercial user need to above things, so we want to support those 
actions in pandora.
Thanksfrom Peter

 From: kmest...@cisco.com
 To: mcheun...@hotmail.com
 CC: openstack@lists.launchpad.net
 Subject: Re: [Openstack] OVS and quantum
 Date: Mon, 24 Jun 2013 13:42:43 +
 
 On Jun 24, 2013, at 12:01 AM, Peter Cheung mcheun...@hotmail.com wrote:
  
  Dear All
  I want to use OVS for my VMs. So which one i should do
  1) i use alway use quantum to control OVS. I believe quantum cannot 100% 
  control the OVS, so i can use ovs command line to control the additional 
  features.
 
 Which features of OVS are you interested in which are currently not exposed 
 through Neutron (formerly Quantum)?
 
  2) i shouldn't use quantum, i should leave quantum and use OVS directly. 
  But which parameter of nova boot can specific the OVS tap to a VM?
  
 nova-networking is planned to be deprecated in the near future, FYI. It may 
 be better to address your concerns in Neutron. Can you let us know what 
 you're looking for in particular in OVS which is not exposed in Neutron yet?
 
 Thanks,
 Kyle
 
  Thanks
  from Peter
  ___
  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] openvswitch instead of quantum

2013-06-24 Thread Peter Cheung
Hi Salvatore, Pandora is our open source admin UI for openstack  
https://code.google.com/p/c2-pandora/



On 22 June 2013 12:23, Peter Cheung mcheun...@hotmail.com wrote:




Thanks SalvatoreI am thinking these:1) openvswitch has more features than 
quantum, so i want to support it in pandora first, then later to support quantum

I think this statement is a bit incorrect, or at least deserves 
clarification.Open vSwitch is a multi-layer virtual switch, whereas Quantum is 
a management tool for cloud networks.
I don't know then what you mean by stating Open vSwitch has more features than 
Quantum; there are surely features of Open vSwitch which are not leveraged by 
Quantum - perhaps are you referring to this?
 We are making the network management UI, we are thinking we should control 
 the openvswitch directly, or control the quantum. In openvswitch, there are 
 some features needed by our commercial users, such as Qos, netflow 
 monitoring, vlan and vlan tag. I am not sure the quantum API can address 
 these things.
 2) openvswitch seems doesn't provide API, still don't know how to control it 
programatically. May be i send command in command-pipeline then parse the 
output. But this is not a good practice.

Openvswitch exposes interfaces for managing the switch layout and switch 
forwarding. They're the OVSDB [1,2] and Openflow interfaces. On openvswitch.org 
there's plenty of information about how to use them.
Again, if you're looking at API like 'create_network' or 'create_subnet' on 
Openvswitch you are probably not looking in the right place; in this case you 
might look at a controller or a management system.
 thanks :D
  3) i want to do live-migration with auto network transfer in pandora. So i 
need to control a vswitch.


It seems then you need to develop your own control plane. Frankly I have not 
idea of what you mean by auto network transfer.I assume you've already looked 
at Floodlight, Open Daylight, and perhaps even at the Quantum's OVS/ML2 plugins 
(which implement a control plane too), and you're positive that they cannot 
satisfy your requirements, so you need to write something new?

[1] http://networkheresy.com/tag/ovsdb/[2] 
http://tools.ietf.org/html/draft-pfaff-ovsdb-proto-02
 no, we are not going to develop a new virtual switch, we don't have enough 
 man power and don't want to reinvent the wheel. We just want to embed a 
 network control in Pandora, so people can use it to admin their network, 
 same way as they use ESX server. In a basic VM environment, i think people 
 need these thing:1) QOS control2) VLan3) netflow monitoring4) link up 
 mulitple vswitch to form a bigger network
Really not sure the quantum API can do that or not.
Thanks for you reply, Peter !!!


Thanks
from Peter

Date: Sat, 22 Jun 2013 11:14:38 +0100
Subject: Re: [Openstack] openvswitch instead of quantum
From: sorla...@nicira.com

To: mcheun...@hotmail.com
CC: openstack@lists.launchpad.net


Yes, it is a very common use case.Nowadays, everybody who deploys Xen, KVM, or 
LXC without a Cloud Management System is actually using Open vSwitch.In that 
case you can program Open vSwitch using its own interface to provide virtual 
networks.


When deploying Openstack, you can use Open vSwitch without Quantum by deploying 
nova-network instead.As far as I know every nova-network manager works with 
Open vSwitch too.

Salvatore

On 22 June 2013 09:14, Peter Cheung mcheun...@hotmail.com wrote:




HiAny people is using open vswitch directly, instead of sing quantum?Is it 
a common practice?

Thanksfrom Peter  

___

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] OVS and quantum

2013-06-24 Thread Salvatore Orlando
A few comments inline from my side.

On 24 June 2013 14:53, Peter Cheung mcheun...@hotmail.com wrote:

 Hi Kyle
 Is Neutron support this
 1) create vlan, adding a port(tap) for a vm?


I think this is one of Neutron's basic use cases, unless I'm missing
something.


 2) create vlan tag and assign to tap
 http://openvswitch.org/support/config-cookbooks/vlan-configuration-cookbook/
  ?


I'm not sure I see the difference with the previous case.
Are you referring to the ability of tagging a port which was not tagged
before?


 3) control the netflow of openvswitch


Nope, this is not supported by Neutron at the moment.
However, you can add an extension for it, if you wish.



 4) control the QOS of openvswitch


This feature is not supported by the 'reference' open source plugin (Open
vSwitch, Linux Bridge).
From what I gather now even the new ML2 plugin will have this capability.

Approaches for QoS in open source Quantum plugin have been recently
debated, but this feature is not on the roadmap for Havana.



 5) does it provide an API to do the avobe things instead of command line?


Neutron does *everything* through an API.



 I think commercial user need to above things, so we want to support those
 actions in pandora.

 Thanks
 from Peter


  From: kmest...@cisco.com
  To: mcheun...@hotmail.com
  CC: openstack@lists.launchpad.net
  Subject: Re: [Openstack] OVS and quantum
  Date: Mon, 24 Jun 2013 13:42:43 +

 
  On Jun 24, 2013, at 12:01 AM, Peter Cheung mcheun...@hotmail.com
 wrote:
  
   Dear All
   I want to use OVS for my VMs. So which one i should do
   1) i use alway use quantum to control OVS. I believe quantum cannot
 100% control the OVS, so i can use ovs command line to control the
 additional features.
 
  Which features of OVS are you interested in which are currently not
 exposed through Neutron (formerly Quantum)?
 
   2) i shouldn't use quantum, i should leave quantum and use OVS
 directly. But which parameter of nova boot can specific the OVS tap to a
 VM?
  
  nova-networking is planned to be deprecated in the near future, FYI. It
 may be better to address your concerns in Neutron. Can you let us know what
 you're looking for in particular in OVS which is not exposed in Neutron yet?
 
  Thanks,
  Kyle
 
   Thanks
   from Peter
   ___
   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] [Grizzly][Quantum] Fail scheduling network

2013-06-24 Thread Samuel Winchenbach
Hi everyone,

I am getting this warning (which seems more like an error) when trying to
launch instances:

/var/log/quantum/server.log:2013-06-24 09:34:03  WARNING
[quantum.db.agentschedulers_db] Fail scheduling network {'status':
u'ACTIVE', 'subnets': [u'19f681a4-99b0-4e45-85eb-6d08aa77cedb'], 'name':
u'demo-net', 'provider:physical_network': None, 'admin_state_up': True,
'tenant_id': u'c9ec52b4506b4d789180af84b78da5b1', 'provider:network_type':
u'gre', 'router:external': False, 'shared': False, 'id':
u'7a753d4b-b4dc-423a-98c2-79a1cbeb3d15', 'provider:segmentation_id': 2L}


The instance launches (on a different node) and seems to work correctly.  I
have gone over my quantum configuration on both nodes and all the IP's and
hostnames seem to have been set correctly (I can post configs if handy).

Here is my setup:  I have three all-in-one nodes (test1,test2,test3) that
each run all of the services (except l3-agent...  that only runs on one
node at a time).  The APIs, novnc-proxy, and mysql (actually Percona/Galera
Cluster) are load balanced with haproxy.  All services have their APIs
bound to the internal IP.  haproxy is bound to a VIP that can move around
with pacemaker.

In the example above a request comes into haproxy on test2.  quantum-server
spits out the warning above on test2, test1 launches the instance and seems
to work fine (without any warnings or errors).Oddly, test3 never seems
to even try to launch any instances.   Here is a list of my nova services
and quantum agents:


root@test1:~# quantum agent-list
+--++---+---++
| id   | agent_type | host  | alive
| admin_state_up |
+--++---+---++
| 0dfc68a8-7321-4d6c-a266-a4ffef5f9a33 | DHCP agent | test3 | :-)
| True   |
| 2ca7d965-c292-48a3-805c-11afebf18e20 | DHCP agent | test1 | :-)
| True   |
| 2f2c3259-4f63-4e7e-9552-fbc2ed69281e | L3 agent   | test2 | :-)
| True   |
| 5a76fbee-47d0-4dc1-af50-24dfb6113400 | Open vSwitch agent | test1 | :-)
| True   |
| 7c6c4058-c9c2-4774-8924-ab6ba54266b3 | DHCP agent | test2 | :-)
| True   |
| 7d01c7b2-1102-4249-85a0-7afcd9421884 | Open vSwitch agent | test2 | :-)
| True   |
| bde82424-b5ff-41b7-9d7e-35bf805cfae8 | Open vSwitch agent | test3 | :-)
| True   |
| dcb122ab-8c17-4f60-9b3a-41abfdf036c3 | L3 agent   | test1 | xxx
| True   |
+--++---+---++


root@test1:~# nova-manage service list


Binary   Host Zone
Status State Updated_At
nova-certtest1internal
enabled:-)   2013-06-24 14:26:11
nova-conductor   test1internal
enabled:-)   2013-06-24 14:26:12
nova-consoleauth test1internal
enabled:-)   2013-06-24 14:26:07
nova-scheduler   test1internal
enabled:-)   2013-06-24 14:26:11
nova-compute test1nova
enabled:-)   2013-06-24 14:26:08
nova-certtest2internal
enabled:-)   2013-06-24 14:26:06
nova-conductor   test2internal
enabled:-)   2013-06-24 14:26:11
nova-consoleauth test2internal
enabled:-)   2013-06-24 14:26:12
nova-scheduler   test2internal
enabled:-)   2013-06-24 14:26:12
nova-compute test2nova
enabled:-)   2013-06-24 14:26:07
nova-certtest3internal
enabled:-)   2013-06-24 14:26:11
nova-consoleauth test3internal
enabled:-)   2013-06-24 14:26:14
nova-scheduler   test3internal
enabled:-)   2013-06-24 14:26:11
nova-conductor   test3internal
enabled:-)   2013-06-24 14:26:12
nova-compute test3nova
enabled:-)   2013-06-24 14:26:08


Any ideas what might be happening?  Again, I can post additional logs,
configs, etc.   Whatever might help me get past this problem.

Thanks,
Sam
___
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] [Ceilometer][Healthnmon] Dealing with Performance/Monitoring Metrics

2013-06-24 Thread Bruno Oliveira ~lychinus
@Julien

Right. Working on it, Julien. I'll let you guys know if I manage to
get any significant progress.
Thank you.


@Claudio

 Do we need to install Healthnmon in order to get them? (because ceilometer

Yeah. Until we manage to find a way to retrieve'em with Ceilometer or
until the two projects merge;

--

Bruno Oliveira
Developer, Software Engineer
irc: lychinus | skype: brunnop.oliveira
brunnop.olive...@gmail.com
--

Bruno Oliveira
Developer, Software Engineer
irc: lychinus | skype: brunnop.oliveira
brunnop.olive...@gmail.com





On Mon, Jun 24, 2013 at 7:08 AM, claudio marques clau...@onesource.pt wrote:
 Hi all

 I think that we are all (people working with ceilometer), trying to figure
 out how to get the system actual data metrics from VMs.
 Do we need to install Healthnmon in order to get them? (because ceilometer
 as Julien already said, can't do it yet)

 Cheers

 Cláudio Marques

 -
 clau...@onesource.pt
 http://www.onesource.pt/


 From: jul...@danjou.info
 To: brunnop.olive...@gmail.com
 Date: Mon, 24 Jun 2013 11:41:13 +0200
 CC: openstack@lists.launchpad.net
 Subject: Re: [Openstack] [Ceilometer][Healthnmon] Dealing with
 Performance/Monitoring Metrics


 On Sat, Jun 22 2013, Bruno Oliveira ~lychinus wrote:

 So, long story short, is technically possible for me to create metrics
 to make the API show up system_usage_metrics instead of simply
 system_allocated_metrics ?  (I guess I misunderstood, right?)

 Could you please enlight the path for me ?

 If you know how to retrieve the actual memory or disk used (rather than
 allocated) by a VM by measuring from outside the VM, please enlighten
 us. We (Ceilometer) don't know how to do that, that's why we don't do
 it actually.

 --
 Julien Danjou
 ;; Free Software hacker ; freelance consultant
 ;; http://julien.danjou.info


 ___ 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] [Ceilometer][Healthnmon] Dealing with Performance/Monitoring Metrics

2013-06-24 Thread claudio marques
Thank you Bruno!
Cheers
Cláudio Marques
-claudio@onesource.pthttp://www.onesource.pt/



 From: brunnop.olive...@gmail.com
 Date: Mon, 24 Jun 2013 11:56:08 -0300
 To: clau...@onesource.pt
 CC: openstack@lists.launchpad.net
 Subject: Re: [Openstack] [Ceilometer][Healthnmon] Dealing with 
 Performance/Monitoring Metrics
 
 @Julien
 
 Right. Working on it, Julien. I'll let you guys know if I manage to
 get any significant progress.
 Thank you.
 
 
 @Claudio
 
  Do we need to install Healthnmon in order to get them? (because ceilometer
 
 Yeah. Until we manage to find a way to retrieve'em with Ceilometer or
 until the two projects merge;
 
 --
 
 Bruno Oliveira
 Developer, Software Engineer
 irc: lychinus | skype: brunnop.oliveira
 brunnop.olive...@gmail.com
 --
 
 Bruno Oliveira
 Developer, Software Engineer
 irc: lychinus | skype: brunnop.oliveira
 brunnop.olive...@gmail.com
 
 
 
 
 
 On Mon, Jun 24, 2013 at 7:08 AM, claudio marques clau...@onesource.pt wrote:
  Hi all
 
  I think that we are all (people working with ceilometer), trying to figure
  out how to get the system actual data metrics from VMs.
  Do we need to install Healthnmon in order to get them? (because ceilometer
  as Julien already said, can't do it yet)
 
  Cheers
 
  Cláudio Marques
 
  -
  clau...@onesource.pt
  http://www.onesource.pt/
 
 
  From: jul...@danjou.info
  To: brunnop.olive...@gmail.com
  Date: Mon, 24 Jun 2013 11:41:13 +0200
  CC: openstack@lists.launchpad.net
  Subject: Re: [Openstack] [Ceilometer][Healthnmon] Dealing with
  Performance/Monitoring Metrics
 
 
  On Sat, Jun 22 2013, Bruno Oliveira ~lychinus wrote:
 
  So, long story short, is technically possible for me to create metrics
  to make the API show up system_usage_metrics instead of simply
  system_allocated_metrics ?  (I guess I misunderstood, right?)
 
  Could you please enlight the path for me ?
 
  If you know how to retrieve the actual memory or disk used (rather than
  allocated) by a VM by measuring from outside the VM, please enlighten
  us. We (Ceilometer) don't know how to do that, that's why we don't do
  it actually.
 
  --
  Julien Danjou
  ;; Free Software hacker ; freelance consultant
  ;; http://julien.danjou.info
 
 
  ___ 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] OVS and quantum

2013-06-24 Thread Peter Cheung
Thanks Salvatore. I think i should use Neutron to do all the stuffs first, 
because Neutron is the primary network component of openstack. If it doesn't 
support some functions, i just direct control the openvswitch, I hope i won't 
break the neutron.
Thanksfrom Peter

Date: Mon, 24 Jun 2013 15:06:25 +0100
Subject: Re: [Openstack] OVS and quantum
From: sorla...@nicira.com
To: mcheun...@hotmail.com
CC: kmest...@cisco.com; openstack@lists.launchpad.net

A few comments inline from my side.

On 24 June 2013 14:53, Peter Cheung mcheun...@hotmail.com wrote:




Hi KyleIs Neutron support this1) create vlan, adding a port(tap) for a vm?
I think this is one of Neutron's basic use cases, unless I'm missing something.
 2) create vlan tag and assign to tap 
http://openvswitch.org/support/config-cookbooks/vlan-configuration-cookbook/   ?

I'm not sure I see the difference with the previous case.Are you referring to 
the ability of tagging a port which was not tagged before? 
3) control the netflow of openvswitch

Nope, this is not supported by Neutron at the moment.However, you can add an 
extension for it, if you wish.
 
4) control the QOS of openvswitch
This feature is not supported by the 'reference' open source plugin (Open 
vSwitch, Linux Bridge).
From what I gather now even the new ML2 plugin will have this capability.
Approaches for QoS in open source Quantum plugin have been recently debated, 
but this feature is not on the roadmap for Havana.

 5) does it provide an API to do the avobe things instead of command line?

Neutron does *everything* through an API. 

I think commercial user need to above things, so we want to support those 
actions in pandora.
Thanksfrom Peter

 From: kmest...@cisco.com

 To: mcheun...@hotmail.com
 CC: openstack@lists.launchpad.net
 Subject: Re: [Openstack] OVS and quantum

 Date: Mon, 24 Jun 2013 13:42:43 +
 
 On Jun 24, 2013, at 12:01 AM, Peter Cheung mcheun...@hotmail.com wrote:
  

  Dear All
  I want to use OVS for my VMs. So which one i should do
  1) i use alway use quantum to control OVS. I believe quantum cannot 100% 
  control the OVS, so i can use ovs command line to control the additional 
  features.

 
 Which features of OVS are you interested in which are currently not exposed 
 through Neutron (formerly Quantum)?
 
  2) i shouldn't use quantum, i should leave quantum and use OVS directly. 
  But which parameter of nova boot can specific the OVS tap to a VM?

  
 nova-networking is planned to be deprecated in the near future, FYI. It may 
 be better to address your concerns in Neutron. Can you let us know what 
 you're looking for in particular in OVS which is not exposed in Neutron yet?

 
 Thanks,
 Kyle
 
  Thanks
  from Peter
  ___
  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] Keystone Identity API v3 interface

2013-06-24 Thread Ruslan Kiianchuk
Hello.

I'm trying to exploit new features of Keystone Identity API v3 in Grizzly,
however I faced problems using* python-openstackclient*. If I specify to
use v3 API to the *openstackclient*, it still tries to obtain tokens using
v2.0 scheme and the server rejects such requests. So the first problem is
-- I couldn't set up* python-openstackclient *to work with Identity API v3
(maybe any additional env variables or parameters need to be passed?).

I have also tried to talk with the API server using curl, but I couldn't
get detailed documentation on Identity v3 API. I found the draft API
description at
https://github.com/openstack/identity-api/blob/master/openstack-identity-api/src/markdown/identity-api-v3.md
but
managed to only obtain token. Afterwards whatever request I do (get
.../v3/users
for example), I get 401 Unauthorized error from the server. The example of
a request I do:

curl -i -H Content-Type: application/json -H Accept: application/json
-H X-Auth-Token: ...PKI token obtained from X-Subject-Token header at
/v3/auth/tokens/... http://localhost:5000/v3/users

Could someone suggest the correct way of talking to Keystone Identity v3
API? Either configuration/parameters for correct *openstackclient *usage or
plain curl requests would be highly appreciated.

Thank you.

-- 
Sincerely, Ruslan Kiianchuk.
___
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 Identity API v3 interface

2013-06-24 Thread Miller, Mark M (EB SW Cloud - RD - Corvallis)
I struggled figuring out the v3 syntax myself. Here is the same command in v2.0 
and v3 format:

openstack --os-token 012345SECRET99TOKEN012345 --os-auth-url 
http://15.253.57.115:35357/v3; --os-url http://15.253.57.115:35357/v3; 
--log-file /var/log/os.log  --os-identity-api-version 3 role list
openstack --os-token 012345SECRET99TOKEN012345 --os-auth-url 
http://15.253.57.115:35357/v2.0; --os-url http://15.253.57.115:35357/v2.0; 
--log-file /var/log/os.log  --os-identity-api-version 2.0 role list

Mark


From: Openstack 
[mailto:openstack-bounces+mark.m.miller=hp@lists.launchpad.net] On Behalf 
Of Ruslan Kiianchuk
Sent: Monday, June 24, 2013 11:09 AM
To: openstack@lists.launchpad.net
Subject: [Openstack] Keystone Identity API v3 interface

Hello.

I'm trying to exploit new features of Keystone Identity API v3 in Grizzly, 
however I faced problems using python-openstackclient. If I specify to use v3 
API to the openstackclient, it still tries to obtain tokens using v2.0 scheme 
and the server rejects such requests. So the first problem is -- I couldn't set 
up python-openstackclient to work with Identity API v3 (maybe any additional 
env variables or parameters need to be passed?).

I have also tried to talk with the API server using curl, but I couldn't get 
detailed documentation on Identity v3 API. I found the draft API description at 
https://github.com/openstack/identity-api/blob/master/openstack-identity-api/src/markdown/identity-api-v3.md
 but managed to only obtain token. Afterwards whatever request I do (get 
.../v3/users for example), I get 401 Unauthorized error from the server. The 
example of a request I do:

curl -i -H Content-Type: application/json -H Accept: application/json -H 
X-Auth-Token: ...PKI token obtained from X-Subject-Token header at 
/v3/auth/tokens/... http://localhost:5000/v3/users

Could someone suggest the correct way of talking to Keystone Identity v3 API? 
Either configuration/parameters for correct openstackclient usage or plain curl 
requests would be highly appreciated.

Thank you.

--
Sincerely, Ruslan Kiianchuk.
___
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 Identity API v3 interface

2013-06-24 Thread Ruslan Kiianchuk
Thanks a lot for the tip!

Perhaps, --os-url is new parameter in *openstackclient *(can't remember
it using in *keystoneclient*). By the way, a doc mentions that --os-url is
a URL to OpenStack service. Do they mean URL of the Nova API on
controller node or something else, do you know?


On Mon, Jun 24, 2013 at 9:29 PM, Miller, Mark M (EB SW Cloud - RD -
Corvallis) mark.m.mil...@hp.com wrote:

  I struggled figuring out the v3 syntax myself. Here is the same command
 in v2.0 and v3 format:

 ** **

 openstack --os-token 012345SECRET99TOKEN012345 --os-auth-url 
 http://15.253.57.115:35357/v3; --os-url http://15.253.57.115:35357/v3;
 --log-file /var/log/os.log  --os-identity-api-version 3 role list

 openstack --os-token 012345SECRET99TOKEN012345 --os-auth-url 
 http://15.253.57.115:35357/v2.0; --os-url http://15.253.57.115:35357/v2.0;
 --log-file /var/log/os.log  --os-identity-api-version 2.0 role list

 ** **

 Mark

 ** **

 ** **

 *From:* Openstack [mailto:openstack-bounces+mark.m.miller=
 hp@lists.launchpad.net] *On Behalf Of *Ruslan Kiianchuk
 *Sent:* Monday, June 24, 2013 11:09 AM
 *To:* openstack@lists.launchpad.net
 *Subject:* [Openstack] Keystone Identity API v3 interface

 ** **

 Hello.

 ** **

 I'm trying to exploit new features of Keystone Identity API v3 in Grizzly,
 however I faced problems using* python-openstackclient*. If I specify to
 use v3 API to the *openstackclient*, it still tries to obtain tokens
 using v2.0 scheme and the server rejects such requests. So the first
 problem is -- I couldn't set up* python-openstackclient *to work with
 Identity API v3 (maybe any additional env variables or parameters need to
 be passed?).

 ** **

 I have also tried to talk with the API server using curl, but I couldn't
 get detailed documentation on Identity v3 API. I found the draft API
 description at
 https://github.com/openstack/identity-api/blob/master/openstack-identity-api/src/markdown/identity-api-v3.md
  but
 managed to only obtain token. Afterwards whatever request I do (get 
 .../v3/users
 for example), I get 401 Unauthorized error from the server. The example
 of a request I do:

 ** **

 curl -i -H Content-Type: application/json -H Accept: application/json
 -H X-Auth-Token: ...PKI token obtained from X-Subject-Token header at
 /v3/auth/tokens/... http://localhost:5000/v3/users

 ** **

 Could someone suggest the correct way of talking to Keystone Identity v3
 API? Either configuration/parameters for correct *openstackclient *usage
 or plain curl requests would be highly appreciated.

 ** **

 Thank you.
 

 ** **

 -- 

 Sincerely, Ruslan Kiianchuk.




-- 
Sincerely, Ruslan Kiianchuk.
___
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] Security Groups not being applied uniformly

2013-06-24 Thread Daniel Ellison
Hey all,

I'm running grizzly on Ubuntu 12.04 server. I have two instances, both with the 
same security groups (default and one to allow XMPP traffic). The firewall 
rules are working for one instance but not for the other. Can anyone think of 
why the group rules would be applied differently?

If more details are needed I'll gladly provide them. Both VMs are running 
Ubuntu 12.04. Both are provisioned with the same flavour. Both have private and 
public IPs. Running port scans on both provide different results, however. 
Ports that are open on one (e.g. 5000) are coming back as closed on the other.

Thanks,
Daniel
___
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 Summit Survey, Looking to Hong Kong

2013-06-24 Thread Mark Collier

 
I posted a blog post about the Portland Summit survey results, and some of the 
plans for Hong Kong (Nov5-8):
 
http://www.openstack.org/blog/2013/06/openstack-summit-survey-results/
 
Don't forget to register: openstack.org/summit - in addition to opening 
registration, we also opened the call for speakers and started signing sponsors 
last week.
 
A few people have asked me if the Hong Kong event is a regional event or a 
global summit, and the answer is definitely that it's a global summit!  All 
Summits are attended by people from all of the world, this one just happens to 
be in Kong Kong which we hope will make it easier for the many stackers in Asia 
to reach.  People from almost 40 countries attended the Portland event, and I 
expect similar diversity in Hong Kong.
 
Mark___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [Horizon] [UX] phabriactor/pholio as a possible UX option

2013-06-24 Thread Jaromir Coufal

Hey All,

I investigated and played with few tools for team collaboration, mainly 
focused on designs and discussions. They are mostly similar as 
Phabricator [1], what Monty suggested. You can see inVision [2] or 
GoVisually [3] for example. And of course there are more, however they 
are all somehow similar.


I have few notes which covers most of them (from my point of view):

* I can't help myself, but I have disorganized feeling.
- Might be only my problem, but the whole system navigation is 
just... Strange. Maybe too much graphical :)

* Main focus on pictures.
- You can't start a thread without picture.
- It's just a little bit weird, if everything is focused on the 
picture, which from my point of view shouldn't be the main point. 
Pictures and other documents should be supportive material - discussion 
matters here.

- Due on pictures focus, discussions are just somehow neglected.
* I love the inline comments for pictures, but...
 - Having possibility to attach comment to any place of the picture 
is cool, but... still this tool will fail for example in sequence of 
screens, if you are presenting workflow.
* Mainly - I don't see developers coming to this tool and actively ask  
discuss.


Therefore, also thanks to comments from Toshi and Kyle, I tried to focus 
a little bit more on GitHub. I asked couple of colleagues and friends 
what would they prefer. From developers, the answer was obvious - 
GitHub. Designers said that they wouldn't mind GH, they are ok with it. 
Anyway, it's a normal discussion tool, nothing to be afraid of. The 
reasons why GitHub matters are already covered in my first e-mail and I 
still see it as the best possibility.


Another reason for GitHub occurred in last conversation on G+ community 
site. There started thread about design question, which got solved, but 
then followed implementation discussion how to implement such thing. And 
here you can see, that any tool focusing on designers in the first 
place, would fail.


I really don't want to discourage creative people from proposals and 
discussions - completely the opposite. I want them to connect to 
developers and vice versa.


That's why I believe that GitHub worths trying.

-- Jarda

[1] http://www.invisionapp.com/
[2] http://www.invisionapp.com/
[3] http://www.govisually.com/


On 2013/19/06 03:49, Monty Taylor wrote:

Hey all!

I spoke with Gabriel about this briefly on IRC, but there is an app for
Phabricator called Pholio which seems to do the things the UI folks are
looking for.

To play with it further, I've spun up a phabricator here:

http://phab.mnorp.com/

You should have gotten account signup emails (if not, look in your spam
folder - it's a throwaway machine)

Check out:

http://phab.mnorp.com/pholio/

I've put up one design review here:

http://phab.mnorp.com/M1

that Jim and I have discussed a little bit.

We're not thrilled with Phabricator for things like bug tracking or code
review yet - but it's configurable enough that we could turn off
everything except design review and move forward with that.

Then, if we get to a point where more of its features are useful to us,
then great - or if this winds up something we only ever use for design
reviews - well, that's great too.

David/Olaph - we'll need an OpenID SSO provider landed upstream before
we can use this. (we are NOT going to carry local patches) There is an
upstream auth refactor going on:

https://secure.phabricator.com/T1536

Also, you'll see on http://phab.mnorp.com/M1 a lorem ipsum over to the
side. We should finish that work. Then we'll need to do a proper puppet
install and skinning.

Don't anybody do work yet - mainly I want to see if this is suitable for
the UI folks, and if we as the infra folks feel comfortable running one
for pholio, and whether or not the potential slippery slope of possibly
using more functions is something we'd be ok with in the future.

Thanks for checking this out guys!

Other things to look at if you get bored:

I made an issue:
http://phab.mnorp.com/T1
There is a calendar:
http://phab.mnorp.com/calendar/
There is a not-terrible code browser:
http://phab.mnorp.com/diffusion/
http://phab.mnorp.com/diffusion/HORIZON/

I particularly like blame being available:
http://phab.mnorp.com/diffusion/HORIZON/browse/master/README.rst?view=blame

And it's got github-like highlight:

http://phab.mnorp.com/diffusion/HORIZON/browse/master/README.rst;f66e2730fd8f94a4$15-23



___
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] ceilometer not getting disk.root.size notifications

2013-06-24 Thread Anshul Gangwar
I am not getting disk.root.size meter notifications from nova to ceilometer. I 
am getting all ther pollster meters but not notification meters.

Do I need to add something else in nova.conf other than 

notification_driver = 
nova.openstack.common.notifier.rpc_notifier,ceilometer.compute.nova_notifier
instance_usage_audit_period = hour
instance_usage_audit = True

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


[Openstack] can't install ubuntu from iso..

2013-06-24 Thread imran
if i try to install ubuntu 12.04 from ISO it does not recognize Root 
Disk. It only detects Ephemeral Disk.

what is difference in both.. please 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-ubuntu-testing-notifications] Build Still Failing: saucy_havana_nova_trunk #264

2013-06-24 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/264/Project:saucy_havana_nova_trunkDate of build:Mon, 24 Jun 2013 08:31:28 -0400Build duration:2 min 39 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesQuantumapi returns an empty network listby edouard.thuleaueditnova/network/quantumv2/api.pyeditnova/tests/network/test_quantumv2.pyConsole Output[...truncated 4510 lines...]python setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 3c67e4cbe419d666f75fada777c71ddd0cd05a29..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/nova/havana novadch -b -D saucy --newversion 1:2013.2+git201306240832~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [967e967] Fix sys_meta access in prep for instance objectdch -a [a42adb2] Fix KeyError exception when scheduling to child cell.dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdebcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-71c08fda-255d-4115-9c02-879974f0da63', '-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-71c08fda-255d-4115-9c02-879974f0da63', '-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_quantum_trunk #234

2013-06-24 Thread openstack-testing-bot
Title: precise_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_quantum_trunk/234/Project:precise_havana_quantum_trunkDate of build:Mon, 24 Jun 2013 10:01:22 -0400Build duration:1 min 7 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesImported Translations from Transifexby Jenkinseditquantum/locale/ro/LC_MESSAGES/quantum.poeditquantum/locale/fi_FI/LC_MESSAGES/quantum.poeditquantum/locale/cs/LC_MESSAGES/quantum.poeditquantum/locale/bg_BG/LC_MESSAGES/quantum.poeditquantum/locale/vi_VN/LC_MESSAGES/quantum.poeditquantum/locale/fr/LC_MESSAGES/quantum.poeditquantum/locale/de/LC_MESSAGES/quantum.poeditquantum/locale/ko_KR/LC_MESSAGES/quantum.poeditquantum/locale/zh_CN/LC_MESSAGES/quantum.poeditquantum/locale/pt_BR/LC_MESSAGES/quantum.poeditquantum/locale/ru/LC_MESSAGES/quantum.poeditquantum/locale/es/LC_MESSAGES/quantum.poeditquantum/locale/quantum.poteditquantum/locale/it/LC_MESSAGES/quantum.poeditquantum/locale/zh_TW/LC_MESSAGES/quantum.poeditquantum/locale/da/LC_MESSAGES/quantum.poeditquantum/locale/ka_GE/LC_MESSAGES/quantum.poeditquantum/locale/ja/LC_MESSAGES/quantum.poConsole Output[...truncated 1579 lines...]ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-e61a9bae-dd36-4c18-b9b3-c6c34417e5b8', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-e61a9bae-dd36-4c18-b9b3-c6c34417e5b8', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 97a103b04e93a9b16908dbc4e7dfbbfdea70c4c8..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/quantum/havana quantumdch -b -D precise --newversion 1:2013.2+git201306241001~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [34c4d9c] Imported Translations from Transifexdch -a [f287194] Imported Translations from Transifexdch -a [398be8c] Remove single-version-externally-managed in setup.cfgdch -a [4c48e48] Adds support for router rules to Big Switch plugindch -a [72496ad] Imported Translations from Transifexdch -a [a1b8a10] Fix haproxy plugin_driver.update_health_monitor() signaturedch -a [34f8b35] Fix single-version-externally-mananged typo in setup.cfgdch -a [c7cdf05] Imported Translations from Transifexdch -a [8eea1ae] Make sure exceptions during policy checks are logged.dch -a [5dd0cf1] Adds default route to DHCP namespace for upstream name resolution.dch -a [e20506c] Imported Translations from Transifexdch -a [381cb1c] Fix TestNecAgentMain not to call sys.exit()dch -a [f392263] Always include tenant_id in port delete requestdch -a [8a6143e] Reference default_servicetype group in lowercasedch -a [fd7223b] Allow use of lowercase section names in conf filesdch -a [531ff2f] Fix IP spoofing filter blocking all packets.debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-e61a9bae-dd36-4c18-b9b3-c6c34417e5b8', '-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-e61a9bae-dd36-4c18-b9b3-c6c34417e5b8', '-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: saucy_havana_quantum_trunk #172

2013-06-24 Thread openstack-testing-bot
Title: saucy_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_quantum_trunk/172/Project:saucy_havana_quantum_trunkDate of build:Mon, 24 Jun 2013 10:01:22 -0400Build duration:1 min 45 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesImported Translations from Transifexby Jenkinseditquantum/locale/it/LC_MESSAGES/quantum.poeditquantum/locale/de/LC_MESSAGES/quantum.poeditquantum/locale/es/LC_MESSAGES/quantum.poeditquantum/locale/cs/LC_MESSAGES/quantum.poeditquantum/locale/ro/LC_MESSAGES/quantum.poeditquantum/locale/bg_BG/LC_MESSAGES/quantum.poeditquantum/locale/ko_KR/LC_MESSAGES/quantum.poeditquantum/locale/zh_CN/LC_MESSAGES/quantum.poeditquantum/locale/fi_FI/LC_MESSAGES/quantum.poeditquantum/locale/ru/LC_MESSAGES/quantum.poeditquantum/locale/vi_VN/LC_MESSAGES/quantum.poeditquantum/locale/fr/LC_MESSAGES/quantum.poeditquantum/locale/quantum.poteditquantum/locale/da/LC_MESSAGES/quantum.poeditquantum/locale/zh_TW/LC_MESSAGES/quantum.poeditquantum/locale/ja/LC_MESSAGES/quantum.poeditquantum/locale/pt_BR/LC_MESSAGES/quantum.poeditquantum/locale/ka_GE/LC_MESSAGES/quantum.poConsole Output[...truncated 2479 lines...]ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-1e201241-0b92-4829-a325-6956ae7343d6', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-1e201241-0b92-4829-a325-6956ae7343d6', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 97a103b04e93a9b16908dbc4e7dfbbfdea70c4c8..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/quantum/havana quantumdch -b -D saucy --newversion 1:2013.2+git201306241001~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [34c4d9c] Imported Translations from Transifexdch -a [f287194] Imported Translations from Transifexdch -a [398be8c] Remove single-version-externally-managed in setup.cfgdch -a [4c48e48] Adds support for router rules to Big Switch plugindch -a [72496ad] Imported Translations from Transifexdch -a [a1b8a10] Fix haproxy plugin_driver.update_health_monitor() signaturedch -a [34f8b35] Fix single-version-externally-mananged typo in setup.cfgdch -a [c7cdf05] Imported Translations from Transifexdch -a [8eea1ae] Make sure exceptions during policy checks are logged.dch -a [5dd0cf1] Adds default route to DHCP namespace for upstream name resolution.dch -a [e20506c] Imported Translations from Transifexdch -a [381cb1c] Fix TestNecAgentMain not to call sys.exit()dch -a [f392263] Always include tenant_id in port delete requestdch -a [8a6143e] Reference default_servicetype group in lowercasedch -a [fd7223b] Allow use of lowercase section names in conf filesdch -a [531ff2f] Fix IP spoofing filter blocking all packets.debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-1e201241-0b92-4829-a325-6956ae7343d6', '-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-1e201241-0b92-4829-a325-6956ae7343d6', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: precise_havana_python-quantumclient_trunk #37

2013-06-24 Thread openstack-testing-bot
Title: precise_havana_python-quantumclient_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_python-quantumclient_trunk/37/Project:precise_havana_python-quantumclient_trunkDate of build:Mon, 24 Jun 2013 10:32:10 -0400Build duration:1 min 32 secBuild cause:Started by user James PageBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesNo ChangesConsole Output[...truncated 1592 lines...]Build needed 00:00:35, 2008k disc spaceINFO:root:Uploading package to ppa:openstack-ubuntu-testing/havanaDEBUG:root:['dput', 'ppa:openstack-ubuntu-testing/havana', 'python-quantumclient_2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1_source.changes']gpg: Signature made Mon Jun 24 10:32:55 2013 EDT using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "gpg: Signature made Mon Jun 24 10:32:55 2013 EDT using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "Checking signature on .changesGood signature on /tmp/tmpua5ARF/python-quantumclient_2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmpua5ARF/python-quantumclient_2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading python-quantumclient_2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1.dsc: done.  Uploading python-quantumclient_2.2.2a1.8.g418fdf8+git201306241032~precise.orig.tar.gz: done.  Uploading python-quantumclient_2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1.debian.tar.gz: done.  Uploading python-quantumclient_2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1_source.changes: done.Successfully uploaded packages.INFO:root:Installing build artifacts into /var/lib/jenkins/www/aptDEBUG:root:['reprepro', '--waitforlock', '10', '-Vb', '/var/lib/jenkins/www/apt', 'include', 'precise-havana', 'python-quantumclient_2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1_amd64.changes']Skipping inclusion of 'python-quantumclient' '2:2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1' in 'precise-havana|main|amd64', as it has already '2:2.2.2a.12.g12bc22b+git201306141132~precise-0ubuntu1'.Deleting files just added to the pool but not used.(to avoid use --keepunusednewfiles next time)deleting and forgetting pool/main/p/python-quantumclient/python-quantumclient_2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1_all.debINFO:root:Storing current commit for next build: 9389b782a9860fc0d28cc13ac4b041fd3fd79e87INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 5ac0b450299c32f7794a022ba8f7753dabae8613..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/python-quantumclient/havana python-quantumclientdch -b -D precise --newversion 2:2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [9389b78] Make --version option print a more detailed client version.dch -a [e7593e1] Fix mocking of HTTPClient.request() method.dch -a [b5a416a] Remove class-based import in the code repodch -a [5be031f] Remove explicit distribute depend.dch -a [2bc41fb] Add metavar for --fixed-ipdebcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-quantumclient_2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpua5ARF/python-quantumclient/debian/controlsbuild -d precise-havana -n -A python-quantumclient_2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/havana python-quantumclient_2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-havana python-quantumclient_2.2.2a1.8.g418fdf8+git201306241032~precise-0ubuntu1_amd64.changesEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


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

2013-06-24 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/423/Project:precise_havana_nova_trunkDate of build:Mon, 24 Jun 2013 11:01:15 -0400Build duration:1 min 44 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFix xenstore-rm race conditionby cbehrenseditplugins/xenserver/xenapi/etc/xapi.d/plugins/xenstore.pyConsole Output[...truncated 3613 lines...]git log -n1 --no-merges --pretty=format:%Hgit log 3c67e4cbe419d666f75fada777c71ddd0cd05a29..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/nova/havana novadch -b -D precise --newversion 1:2013.2+git201306241101~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [ee1accf] Fix xenstore-rm race conditiondch -a [967e967] Fix sys_meta access in prep for instance objectdch -a [a42adb2] Fix KeyError exception when scheduling to child cell.dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdebcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-28019bd3-b01d-4a54-9d18-b763f4cac330', '-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-28019bd3-b01d-4a54-9d18-b763f4cac330', '-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: saucy_havana_nova_trunk #265

2013-06-24 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/265/Project:saucy_havana_nova_trunkDate of build:Mon, 24 Jun 2013 11:01:16 -0400Build duration:2 min 28 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFix xenstore-rm race conditionby cbehrenseditplugins/xenserver/xenapi/etc/xapi.d/plugins/xenstore.pyConsole Output[...truncated 4513 lines...]git log -n1 --no-merges --pretty=format:%Hgit log 3c67e4cbe419d666f75fada777c71ddd0cd05a29..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/nova/havana novadch -b -D saucy --newversion 1:2013.2+git201306241101~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [ee1accf] Fix xenstore-rm race conditiondch -a [967e967] Fix sys_meta access in prep for instance objectdch -a [a42adb2] Fix KeyError exception when scheduling to child cell.dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdebcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-26d1862d-86d3-4590-8d04-2cedb73a70ab', '-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-26d1862d-86d3-4590-8d04-2cedb73a70ab', '-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 #424

2013-06-24 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/424/Project:precise_havana_nova_trunkDate of build:Mon, 24 Jun 2013 11:31:16 -0400Build duration:1 min 53 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesDo not raise NEW exceptionsby boriseditnova/exception.pyeditnova/api/openstack/compute/contrib/coverage_ext.pyeditnova/network/security_group/quantum_driver.pyeditnova/virt/baremetal/db/sqlalchemy/api.pyeditnova/virt/disk/vfs/localfs.pyeditnova/tests/utils.pyConsole Output[...truncated 3616 lines...]git log 3c67e4cbe419d666f75fada777c71ddd0cd05a29..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/nova/havana novadch -b -D precise --newversion 1:2013.2+git201306241131~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [ee1accf] Fix xenstore-rm race conditiondch -a [616098d] Do not raise NEW exceptionsdch -a [967e967] Fix sys_meta access in prep for instance objectdch -a [a42adb2] Fix KeyError exception when scheduling to child cell.dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdebcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-698e159e-a108-4256-b663-498b3acf8264', '-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-698e159e-a108-4256-b663-498b3acf8264', '-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: saucy_havana_nova_trunk #266

2013-06-24 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/266/Project:saucy_havana_nova_trunkDate of build:Mon, 24 Jun 2013 11:31:16 -0400Build duration:2 min 24 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesDo not raise NEW exceptionsby boriseditnova/api/openstack/compute/contrib/coverage_ext.pyeditnova/network/security_group/quantum_driver.pyeditnova/exception.pyeditnova/tests/utils.pyeditnova/virt/disk/vfs/localfs.pyeditnova/virt/baremetal/db/sqlalchemy/api.pyConsole Output[...truncated 4516 lines...]git log 3c67e4cbe419d666f75fada777c71ddd0cd05a29..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/nova/havana novadch -b -D saucy --newversion 1:2013.2+git201306241131~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [ee1accf] Fix xenstore-rm race conditiondch -a [616098d] Do not raise NEW exceptionsdch -a [967e967] Fix sys_meta access in prep for instance objectdch -a [a42adb2] Fix KeyError exception when scheduling to child cell.dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdebcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-a0646538-9975-4d41-ba9c-0d7f11b0fed7', '-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-a0646538-9975-4d41-ba9c-0d7f11b0fed7', '-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 #425

2013-06-24 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/425/Project:precise_havana_nova_trunkDate of build:Mon, 24 Jun 2013 12:31:15 -0400Build duration:1 min 50 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesPort evacuate API to v3 Part 1by cyeohaddnova/api/openstack/compute/plugins/v3/evacuate.pyaddnova/tests/api/openstack/compute/plugins/v3/test_evacuate.pyPort evacuate API to v3 Part 2by cyeoheditnova/api/openstack/compute/plugins/v3/evacuate.pyeditnova/tests/api/openstack/compute/plugins/v3/test_evacuate.pyeditnova/tests/fake_policy.pyeditsetup.cfgeditetc/nova/policy.jsonConsole Output[...truncated 3624 lines...]dch -b -D precise --newversion 1:2013.2+git201306241231~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [ee1accf] Fix xenstore-rm race conditiondch -a [616098d] Do not raise NEW exceptionsdch -a [967e967] Fix sys_meta access in prep for instance objectdch -a [a42adb2] Fix KeyError exception when scheduling to child cell.dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdch -a [6c2c9be] Port evacuate API to v3 Part 2dch -a [37cf3b6] Port evacuate API to v3 Part 1debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-8a494429-dbc0-47a4-9378-012333e739b1', '-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-8a494429-dbc0-47a4-9378-012333e739b1', '-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: saucy_havana_nova_trunk #267

2013-06-24 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/267/Project:saucy_havana_nova_trunkDate of build:Mon, 24 Jun 2013 12:31:16 -0400Build duration:2 min 58 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesPort evacuate API to v3 Part 1by cyeohaddnova/tests/api/openstack/compute/plugins/v3/test_evacuate.pyaddnova/api/openstack/compute/plugins/v3/evacuate.pyPort evacuate API to v3 Part 2by cyeoheditnova/tests/fake_policy.pyeditnova/api/openstack/compute/plugins/v3/evacuate.pyeditetc/nova/policy.jsoneditsetup.cfgeditnova/tests/api/openstack/compute/plugins/v3/test_evacuate.pyConsole Output[...truncated 4524 lines...]dch -b -D saucy --newversion 1:2013.2+git201306241232~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [ee1accf] Fix xenstore-rm race conditiondch -a [616098d] Do not raise NEW exceptionsdch -a [967e967] Fix sys_meta access in prep for instance objectdch -a [a42adb2] Fix KeyError exception when scheduling to child cell.dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdch -a [6c2c9be] Port evacuate API to v3 Part 2dch -a [37cf3b6] Port evacuate API to v3 Part 1debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-bcf7394b-4174-4746-abae-5160b8f0fa14', '-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-bcf7394b-4174-4746-abae-5160b8f0fa14', '-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 #426

2013-06-24 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/426/Project:precise_havana_nova_trunkDate of build:Mon, 24 Jun 2013 13:01:41 -0400Build duration:2 min 9 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesPort rescue API to v3 Part 1by cyeohaddnova/tests/api/openstack/compute/plugins/v3/test_rescue.pyaddnova/api/openstack/compute/plugins/v3/rescue.pyPort rescue API to v3 Part 2by cyeoheditnova/api/openstack/compute/plugins/v3/rescue.pyeditetc/nova/policy.jsoneditnova/tests/api/openstack/compute/plugins/v3/test_rescue.pyeditsetup.cfgeditnova/tests/fake_policy.pyCleanup overshadowing in test_evacuate.pyby cyeoheditnova/tests/api/openstack/compute/plugins/v3/test_evacuate.pyeditnova/tests/api/openstack/compute/contrib/test_evacuate.pyrefactor security group api not to raise http exceptionsby melwitteditnova/api/openstack/compute/contrib/security_groups.pyConsole Output[...truncated 3638 lines...]dch -a [967e967] Fix sys_meta access in prep for instance objectdch -a [a42adb2] Fix KeyError exception when scheduling to child cell.dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdch -a [c09711d] Cleanup overshadowing in test_evacuate.pydch -a [6c2c9be] Port evacuate API to v3 Part 2dch -a [37cf3b6] Port evacuate API to v3 Part 1dch -a [e3d7f1e] Port rescue API to v3 Part 2dch -a [ca29b25] Port rescue API to v3 Part 1debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-c33eb52d-3e46-4aa9-8ced-18439b8132e4', '-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-c33eb52d-3e46-4aa9-8ced-18439b8132e4', '-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: saucy_havana_nova_trunk #268

2013-06-24 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/268/Project:saucy_havana_nova_trunkDate of build:Mon, 24 Jun 2013 13:01:15 -0400Build duration:3 min 15 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesPort rescue API to v3 Part 1by cyeohaddnova/api/openstack/compute/plugins/v3/rescue.pyaddnova/tests/api/openstack/compute/plugins/v3/test_rescue.pyPort rescue API to v3 Part 2by cyeoheditnova/api/openstack/compute/plugins/v3/rescue.pyeditnova/tests/api/openstack/compute/plugins/v3/test_rescue.pyeditetc/nova/policy.jsoneditnova/tests/fake_policy.pyeditsetup.cfgCleanup overshadowing in test_evacuate.pyby cyeoheditnova/tests/api/openstack/compute/contrib/test_evacuate.pyeditnova/tests/api/openstack/compute/plugins/v3/test_evacuate.pyrefactor security group api not to raise http exceptionsby melwitteditnova/api/openstack/compute/contrib/security_groups.pyConsole Output[...truncated 4538 lines...]dch -a [967e967] Fix sys_meta access in prep for instance objectdch -a [a42adb2] Fix KeyError exception when scheduling to child cell.dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdch -a [c09711d] Cleanup overshadowing in test_evacuate.pydch -a [6c2c9be] Port evacuate API to v3 Part 2dch -a [37cf3b6] Port evacuate API to v3 Part 1dch -a [e3d7f1e] Port rescue API to v3 Part 2dch -a [ca29b25] Port rescue API to v3 Part 1debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-dbc929a7-4694-4ec5-8f6a-a5a0a2348222', '-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-dbc929a7-4694-4ec5-8f6a-a5a0a2348222', '-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: saucy_havana_nova_trunk #269

2013-06-24 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/269/Project:saucy_havana_nova_trunkDate of build:Mon, 24 Jun 2013 13:31:17 -0400Build duration:2 min 36 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesModify _assertEqualListsOfObjects() function.by vsergeyeveditnova/tests/db/test_db_api.pyConsole Output[...truncated 4541 lines...]dch -a [a42adb2] Fix KeyError exception when scheduling to child cell.dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [fa7ea5d] Modify _assertEqualListsOfObjects() function.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdch -a [c09711d] Cleanup overshadowing in test_evacuate.pydch -a [6c2c9be] Port evacuate API to v3 Part 2dch -a [37cf3b6] Port evacuate API to v3 Part 1dch -a [e3d7f1e] Port rescue API to v3 Part 2dch -a [ca29b25] Port rescue API to v3 Part 1debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-54751610-719d-40e0-b0fa-ca94c67f82ae', '-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-54751610-719d-40e0-b0fa-ca94c67f82ae', '-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 #427

2013-06-24 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/427/Project:precise_havana_nova_trunkDate of build:Mon, 24 Jun 2013 13:31:15 -0400Build duration:1 min 51 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesModify _assertEqualListsOfObjects() function.by vsergeyeveditnova/tests/db/test_db_api.pyConsole Output[...truncated 3641 lines...]dch -a [a42adb2] Fix KeyError exception when scheduling to child cell.dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [fa7ea5d] Modify _assertEqualListsOfObjects() function.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdch -a [c09711d] Cleanup overshadowing in test_evacuate.pydch -a [6c2c9be] Port evacuate API to v3 Part 2dch -a [37cf3b6] Port evacuate API to v3 Part 1dch -a [e3d7f1e] Port rescue API to v3 Part 2dch -a [ca29b25] Port rescue API to v3 Part 1debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-38e68c44-b3a9-4f2d-887d-1bca605d4cc6', '-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-38e68c44-b3a9-4f2d-887d-1bca605d4cc6', '-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 #428

2013-06-24 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/428/Project:precise_havana_nova_trunkDate of build:Mon, 24 Jun 2013 14:32:26 -0400Build duration:3 min 20 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdds expected_errors decorator for API v3by cyeoheditnova/api/openstack/compute/plugins/v3/fixed_ips.pyeditnova/api/openstack/compute/plugins/v3/keypairs.pyeditnova/tests/api/openstack/compute/test_v3_extensions.pyeditnova/api/openstack/extensions.pyPerform additional check before live snapshottingby rafieditnova/virt/libvirt/driver.pyAdd invalid number checking in flavor creation apiby jiataotjeditnova/tests/api/openstack/compute/contrib/test_flavor_manage.pyeditnova/compute/flavors.pyeditnova/api/openstack/compute/contrib/flavormanage.pyConsole Output[...truncated 3650 lines...]dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [fa7ea5d] Modify _assertEqualListsOfObjects() function.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [7ff01fd] Adds expected_errors decorator for API v3dch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdch -a [c09711d] Cleanup overshadowing in test_evacuate.pydch -a [6c2c9be] Port evacuate API to v3 Part 2dch -a [37cf3b6] Port evacuate API to v3 Part 1dch -a [e3d7f1e] Port rescue API to v3 Part 2dch -a [ca29b25] Port rescue API to v3 Part 1debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-0488f3bf-3055-4560-b031-a91960ce4b1e', '-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-0488f3bf-3055-4560-b031-a91960ce4b1e', '-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: saucy_havana_nova_trunk #270

2013-06-24 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/270/Project:saucy_havana_nova_trunkDate of build:Mon, 24 Jun 2013 14:31:17 -0400Build duration:3 min 40 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdds expected_errors decorator for API v3by cyeoheditnova/api/openstack/compute/plugins/v3/fixed_ips.pyeditnova/tests/api/openstack/compute/test_v3_extensions.pyeditnova/api/openstack/extensions.pyeditnova/api/openstack/compute/plugins/v3/keypairs.pyPerform additional check before live snapshottingby rafieditnova/virt/libvirt/driver.pyAdd invalid number checking in flavor creation apiby jiataotjeditnova/tests/api/openstack/compute/contrib/test_flavor_manage.pyeditnova/api/openstack/compute/contrib/flavormanage.pyeditnova/compute/flavors.pyConsole Output[...truncated 4313 lines...]dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [fa7ea5d] Modify _assertEqualListsOfObjects() function.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [7ff01fd] Adds expected_errors decorator for API v3dch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdch -a [c09711d] Cleanup overshadowing in test_evacuate.pydch -a [6c2c9be] Port evacuate API to v3 Part 2dch -a [37cf3b6] Port evacuate API to v3 Part 1dch -a [e3d7f1e] Port rescue API to v3 Part 2dch -a [ca29b25] Port rescue API to v3 Part 1debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr 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-1a024e74-44df-4990-ae99-fc4dc9469348', '-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-1a024e74-44df-4990-ae99-fc4dc9469348', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: precise_havana_nova_trunk #429

2013-06-24 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/429/Project:precise_havana_nova_trunkDate of build:Mon, 24 Jun 2013 14:58:08 -0400Build duration:13 minBuild cause:Started by user Adam GandelmanBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesNo ChangesConsole Output[...truncated 17736 lines...]dch -b -D precise --newversion 1:2013.2+git201306241459~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [8ee10c5] Add invalid number checking in flavor creation apidch -a [ee1accf] Fix xenstore-rm race conditiondch -a [3401cca] refactor security group api not to raise http exceptionsdch -a [c6a1204] Perform additional check before live snapshottingdch -a [616098d] Do not raise NEW exceptionsdch -a [967e967] Fix sys_meta access in prep for instance objectdch -a [a42adb2] Fix KeyError exception when scheduling to child cell.dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [fa7ea5d] Modify _assertEqualListsOfObjects() function.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [7ff01fd] Adds expected_errors decorator for API v3dch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdch -a [c09711d] Cleanup overshadowing in test_evacuate.pydch -a [6c2c9be] Port evacuate API to v3 Part 2dch -a [37cf3b6] Port evacuate API to v3 Part 1dch -a [e3d7f1e] Port rescue API to v3 Part 2dch -a [ca29b25] Port rescue API to v3 Part 1debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306241459~precise-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpDMg4mh/nova/debian/controlsbuild -d precise-havana -n -A nova_2013.2+git201306241459~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/havana nova_2013.2+git201306241459~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-havana nova_2013.2+git201306241459~precise-0ubuntu1_amd64.changes+ [ 0 != 0 ]+ jenkins-cli build -p pipeline_parameters=pipeline_parameters -p PARENT_BUILD_TAG=jenkins-precise_havana_nova_trunk-429 pipeline_runnerEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: precise_havana_quantum_trunk #235

2013-06-24 Thread openstack-testing-bot
Title: precise_havana_quantum_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_quantum_trunk/235/Project:precise_havana_quantum_trunkDate of build:Mon, 24 Jun 2013 15:01:43 -0400Build duration:10 minBuild cause:Started by user Adam GandelmanBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesNo ChangesConsole Output[...truncated 19657 lines...]deleting and forgetting pool/main/q/quantum/quantum-plugin-linuxbridge_2013.2+git201306190404~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-metaplugin_2013.2+git201306190404~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-midonet_2013.2+git201306190404~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-nec-agent_2013.2+git201306190404~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-nec_2013.2+git201306190404~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-nicira_2013.2+git201306190404~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-openvswitch-agent_2013.2+git201306190404~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-openvswitch_2013.2+git201306190404~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-plumgrid_2013.2+git201306190404~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-ryu-agent_2013.2+git201306190404~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-ryu_2013.2+git201306190404~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-server_2013.2+git201306190404~precise-0ubuntu1_all.debINFO:root:Storing current commit for next build: 34c4d9c6faa1d8e2c8ebdc10c47cb1140846b12aINFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 97a103b04e93a9b16908dbc4e7dfbbfdea70c4c8..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/quantum/havana quantumdch -b -D precise --newversion 1:2013.2+git201306241502~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [34c4d9c] Imported Translations from Transifexdch -a [f287194] Imported Translations from Transifexdch -a [398be8c] Remove single-version-externally-managed in setup.cfgdch -a [4c48e48] Adds support for router rules to Big Switch plugindch -a [72496ad] Imported Translations from Transifexdch -a [a1b8a10] Fix haproxy plugin_driver.update_health_monitor() signaturedch -a [34f8b35] Fix single-version-externally-mananged typo in setup.cfgdch -a [c7cdf05] Imported Translations from Transifexdch -a [8eea1ae] Make sure exceptions during policy checks are logged.dch -a [5dd0cf1] Adds default route to DHCP namespace for upstream name resolution.dch -a [e20506c] Imported Translations from Transifexdch -a [381cb1c] Fix TestNecAgentMain not to call sys.exit()dch -a [f392263] Always include tenant_id in port delete requestdch -a [8a6143e] Reference default_servicetype group in lowercasedch -a [fd7223b] Allow use of lowercase section names in conf filesdch -a [531ff2f] Fix IP spoofing filter blocking all packets.debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC quantum_2013.2+git201306241502~precise-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpivj4Gi/quantum/debian/controlsbuild -d precise-havana -n -A quantum_2013.2+git201306241502~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/havana quantum_2013.2+git201306241502~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-havana quantum_2013.2+git201306241502~precise-0ubuntu1_amd64.changesEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: saucy_havana_nova_trunk #271

2013-06-24 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/271/Project:saucy_havana_nova_trunkDate of build:Mon, 24 Jun 2013 15:31:38 -0400Build duration:14 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesXenApi virt driver should throw exception on failureby koushiksridevi8editnova/virt/xenapi/vmops.pyeditnova/tests/virt/xenapi/test_xenapi.pyeditnova/tests/virt/xenapi/test_vmops.pyConsole Output[...truncated 18515 lines...]dch -a [8ee10c5] Add invalid number checking in flavor creation apidch -a [ee1accf] Fix xenstore-rm race conditiondch -a [3401cca] refactor security group api not to raise http exceptionsdch -a [c6a1204] Perform additional check before live snapshottingdch -a [616098d] Do not raise NEW exceptionsdch -a [967e967] Fix sys_meta access in prep for instance objectdch -a [a42adb2] Fix KeyError exception when scheduling to child cell.dch -a [346d941] Port missing bits from httplib2 to requestsdch -a [65a5bf4] Fix quota logging on exceptionsdch -a [2cb3112] XenApi virt driver should throw exception on failuredch -a [a02766e] Make sure instance_type has extra_specsdch -a [b68aa0a] Remove locals() from nova/virt/libvirt packagedch -a [66e81db] Fix importing InstanceInfoCache during register_all()dch -a [ff4194b] Make _poll_unconfirmed_resizes() use objectsdch -a [d26581d] Revert "Add oslo-config-1.2.0a2 and pbr>=0.5.16 to requirements."dch -a [8ae97f2] fixes nova resize bug when force_config_drive is set.dch -a [fa7ea5d] Modify _assertEqualListsOfObjects() function.dch -a [79633bb] Remove a layer of nesting in _poll_unconfirmed_resizes()dch -a [2b36b24] Use InstanceList for _heal_instance_info_cache()dch -a [6bbe906] Remove straggling use of all-kwarg object methodsdch -a [834fc60] xenapi: revisit error handling around calls to agentdch -a [01672d8] Remove the unused plugins frameworkdch -a [7ff01fd] Adds expected_errors decorator for API v3dch -a [824b49d] Remove db session hack from conductor's vol_usage_update()dch -a [68e9b48] Setting static ip= for baremetal PXE boot.dch -a [99c51e3] Allow reboot or rebuild from vm_state=Errordch -a [198a915] Cleanup certificate API extensiondch -a [d3dbc09] Port certificates API to v3 Part 2dch -a [71ece4a] Port certificates API to v3 Part 1dch -a [14d3ae5] Quantumapi returns an empty network listdch -a [c09711d] Cleanup overshadowing in test_evacuate.pydch -a [6c2c9be] Port evacuate API to v3 Part 2dch -a [37cf3b6] Port evacuate API to v3 Part 1dch -a [e3d7f1e] Port rescue API to v3 Part 2dch -a [ca29b25] Port rescue API to v3 Part 1debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306241532~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpDQXbvi/nova/debian/controlsbuild -d saucy-havana -n -A nova_2013.2+git201306241532~saucy-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/havana nova_2013.2+git201306241532~saucy-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include saucy-havana nova_2013.2+git201306241532~saucy-0ubuntu1_amd64.changes+ [ 0 != 0 ]+ jenkins-cli build -p pipeline_parameters=pipeline_parameters -p PARENT_BUILD_TAG=jenkins-saucy_havana_nova_trunk-271 pipeline_runnerEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: saucy_havana_quantum_trunk #173

2013-06-24 Thread openstack-testing-bot
Title: saucy_havana_quantum_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_quantum_trunk/173/Project:saucy_havana_quantum_trunkDate of build:Mon, 24 Jun 2013 16:28:42 -0400Build duration:11 minBuild cause:Started by user Adam GandelmanBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesNo ChangesConsole Output[...truncated 20637 lines...]deleting and forgetting pool/main/q/quantum/quantum-plugin-linuxbridge_2013.2+git201306190409~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-metaplugin_2013.2+git201306190409~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-midonet_2013.2+git201306190409~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-nec-agent_2013.2+git201306190409~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-nec_2013.2+git201306190409~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-nicira_2013.2+git201306190409~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-openvswitch-agent_2013.2+git201306190409~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-openvswitch_2013.2+git201306190409~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-plumgrid_2013.2+git201306190409~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-ryu-agent_2013.2+git201306190409~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-ryu_2013.2+git201306190409~saucy-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-server_2013.2+git201306190409~saucy-0ubuntu1_all.debINFO:root:Storing current commit for next build: 34c4d9c6faa1d8e2c8ebdc10c47cb1140846b12aINFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 97a103b04e93a9b16908dbc4e7dfbbfdea70c4c8..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/quantum/havana quantumdch -b -D saucy --newversion 1:2013.2+git201306241628~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [34c4d9c] Imported Translations from Transifexdch -a [f287194] Imported Translations from Transifexdch -a [398be8c] Remove single-version-externally-managed in setup.cfgdch -a [4c48e48] Adds support for router rules to Big Switch plugindch -a [72496ad] Imported Translations from Transifexdch -a [a1b8a10] Fix haproxy plugin_driver.update_health_monitor() signaturedch -a [34f8b35] Fix single-version-externally-mananged typo in setup.cfgdch -a [c7cdf05] Imported Translations from Transifexdch -a [8eea1ae] Make sure exceptions during policy checks are logged.dch -a [5dd0cf1] Adds default route to DHCP namespace for upstream name resolution.dch -a [e20506c] Imported Translations from Transifexdch -a [381cb1c] Fix TestNecAgentMain not to call sys.exit()dch -a [f392263] Always include tenant_id in port delete requestdch -a [8a6143e] Reference default_servicetype group in lowercasedch -a [fd7223b] Allow use of lowercase section names in conf filesdch -a [531ff2f] Fix IP spoofing filter blocking all packets.debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC quantum_2013.2+git201306241628~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpEMWmhQ/quantum/debian/controlsbuild -d saucy-havana -n -A quantum_2013.2+git201306241628~saucy-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/havana quantum_2013.2+git201306241628~saucy-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include saucy-havana quantum_2013.2+git201306241628~saucy-0ubuntu1_amd64.changesEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: precise_havana_nova_trunk #432

2013-06-24 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/432/Project:precise_havana_nova_trunkDate of build:Mon, 24 Jun 2013 17:35:59 -0400Build duration:11 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesFix orphaned instance from get_by_uuid() and _from_db_object()by cbehrenseditnova/objects/instance_info_cache.pyeditnova/objects/instance.pyeditnova/compute/manager.pyeditnova/api/ec2/cloud.pyFix serialization of iterable typesby cbehrenseditnova/objects/base.pyeditnova/tests/objects/test_objects.pyConsole Output[...truncated 9094 lines...]Fail-Stage: buildHost Architecture: amd64Install-Time: 52Job: nova_2013.2+git201306241737~precise-0ubuntu1.dscMachine Architecture: amd64Package: novaPackage-Time: 499Source-Version: 1:2013.2+git201306241737~precise-0ubuntu1Space: 87940Status: attemptedVersion: 1:2013.2+git201306241737~precise-0ubuntu1Finished at 20130624-1747Build needed 00:08:19, 87940k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-havana', '-n', '-A', 'nova_2013.2+git201306241737~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-havana', '-n', '-A', 'nova_2013.2+git201306241737~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hbzr branch lp:~ubuntu-server-dev/nova/havana novadch -b -D precise --newversion 1:2013.2+git201306241737~precise-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306241737~precise-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpCze0kf/nova/debian/controlsbuild -d precise-havana -n -A nova_2013.2+git201306241737~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', 'nova_2013.2+git201306241737~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', 'nova_2013.2+git201306241737~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 Failure: raring_grizzly_keystone_stable #267

2013-06-24 Thread openstack-testing-bot
Title: raring_grizzly_keystone_stable
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_keystone_stable/267/Project:raring_grizzly_keystone_stableDate of build:Mon, 24 Jun 2013 21:32:21 -0400Build duration:1 min 21 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesIgnore conflict on v2 auto role assignment (bug 1161963)by dolph.mathewseditkeystone/identity/controllers.pyedittests/test_keystoneclient.pyConsole Output[...truncated 118 lines...]Setting up python (2.7.4-0ubuntu1) ...Setting up python-pkg-resources (0.6.34-0ubuntu1) ...Setting up python-setuptools (0.6.34-0ubuntu1) ...Processing triggers for libc-bin ...ldconfig deferred processing now taking placeDEBUG:root:About to call setup.py (['python', 'setup.py', 'sdist']) in schrootINFO:root:Executing ['python', 'setup.py', 'sdist'] in schrootDEBUG:root:['python', 'setup.py', 'sdist']running sdistTraceback (most recent call last):  File "setup.py", line 51, in 'Programming Language :: Python :: 2.7',  File "/usr/lib/python2.7/distutils/core.py", line 152, in setupdist.run_commands()  File "/usr/lib/python2.7/distutils/dist.py", line 953, in run_commandsself.run_command(cmd)  File "/usr/lib/python2.7/distutils/dist.py", line 972, in run_commandcmd_obj.run()  File "/tmp/tmpmoDMEv/git/keystone/keystone/openstack/common/setup.py", line 190, in runwrite_git_changelog()  File "/tmp/tmpmoDMEv/git/keystone/keystone/openstack/common/setup.py", line 139, in write_git_changelogchangelog_file.write(canonicalize_emails(changelog, mailmap))  File "/tmp/tmpmoDMEv/git/keystone/keystone/openstack/common/setup.py", line 51, in canonicalize_emailschangelog = changelog.replace(alias, email_address)AttributeError: 'NoneType' object has no attribute 'replace'ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'raring-amd64-9c854b52-5a2b-4c58-8320-2d3dcf44bfda', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'raring-amd64-9c854b52-5a2b-4c58-8320-2d3dcf44bfda', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython 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', 'raring-amd64-9c854b52-5a2b-4c58-8320-2d3dcf44bfda', '-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', 'raring-amd64-9c854b52-5a2b-4c58-8320-2d3dcf44bfda', '-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 Fixed: precise_havana_nova_trunk #433

2013-06-24 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/433/Project:precise_havana_nova_trunkDate of build:Mon, 24 Jun 2013 22:02:15 -0400Build duration:14 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesRevert XenApi virt driver should throw exceptionby dprinceeditnova/virt/xenapi/vmops.pyeditnova/tests/virt/xenapi/test_vmops.pyeditnova/tests/virt/xenapi/test_xenapi.pyConsole Output[...truncated 17616 lines...]deleting and forgetting pool/main/n/nova/nova-common_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-kvm_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-lxc_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-qemu_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-uml_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-xcp_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-xen_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-conductor_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-console_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-consoleauth_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-doc_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-network_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-novncproxy_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-objectstore_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-scheduler_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-spiceproxy_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-volume_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-network_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-plugins_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xvpvncproxy_2013.2+git201306242203~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/python-nova_2013.2+git201306242203~precise-0ubuntu1_all.debINFO:root:Storing current commit for next build: c9bb51c6da93a40f4057e99db146c109718bc3a6INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log c040c41fb9047c65c8608a3dc3c57d2ba9b0c48c..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/nova/havana novadch -b -D precise --newversion 1:2013.2+git201306242203~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [c9bb51c] Revert XenApi virt driver should throw exceptiondch -a [92a3190] Fix serialization of iterable typesdch -a [a9c695d] Fix orphaned instance from get_by_uuid() and _from_db_object()dch -a [3d27a0e] Handle NoMoreFixedIps in _shutdown_instance.debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306242203~precise-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpT3LnMt/nova/debian/controlsbuild -d precise-havana -n -A nova_2013.2+git201306242203~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/havana nova_2013.2+git201306242203~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-havana nova_2013.2+git201306242203~precise-0ubuntu1_amd64.changes+ [ 0 != 0 ]+ jenkins-cli build -p pipeline_parameters=pipeline_parameters -p PARENT_BUILD_TAG=jenkins-precise_havana_nova_trunk-433 pipeline_runnerEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: raring_grizzly_cinder_stable #265

2013-06-24 Thread openstack-testing-bot
Title: raring_grizzly_cinder_stable
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_cinder_stable/265/Project:raring_grizzly_cinder_stableDate of build:Mon, 24 Jun 2013 22:17:20 -0400Build duration:3 min 39 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesAdd _create_volume to ThinLVMVolumeDriverby eharneyeditcinder/volume/drivers/lvm.pyConsole Output[...truncated 126 lines...]Download error on http://pypi.python.org/simple/setuptools_git/: timed out -- Some packages may not be found!Download error on http://pypi.python.org/simple/setuptools-git/: timed out -- Some packages may not be found!Couldn't find index page for 'setuptools_git' (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 setuptools-git>=0.4Traceback (most recent call last):  File "setup.py", line 83, in py_modules=[])  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 586, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 831, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 843, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 295, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 611, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('setuptools-git>=0.4')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'raring-amd64-eb3d986f-86b0-4fa8-8b4b-f76c1c2cd50a', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'raring-amd64-eb3d986f-86b0-4fa8-8b4b-f76c1c2cd50a', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython 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', 'raring-amd64-eb3d986f-86b0-4fa8-8b4b-f76c1c2cd50a', '-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', 'raring-amd64-eb3d986f-86b0-4fa8-8b4b-f76c1c2cd50a', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_stable #1025

2013-06-24 Thread openstack-testing-bot
Title: precise_grizzly_nova_stable
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_stable/1025/Project:precise_grizzly_nova_stableDate of build:Mon, 24 Jun 2013 22:21:14 -0400Build duration:8 min 24 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesFix bug where consoleauth depended on remote conductor serviceby vishvanandaeditnova/consoleauth/manager.pyConsole Output[...truncated 3396 lines...]Get:112 http://localhost/ubuntu/ precise-havana/main python-sqlalchemy all 0.7.9-1~ubuntu12.04.1~grizzly0 [478 kB]Get:113 http://localhost/ubuntu/ precise-havana/main python-netaddr all 0.7.7-1~ubuntu12.04.1~havana0 [1217 kB]Get:114 http://localhost/ubuntu/ precise-havana/main python-novaclient all 1:2.13.0.96.g05ca996+git201306211001~precise-0ubuntu1 [127 kB]Get:115 http://localhost/ubuntu/ precise-havana/main python-quantumclient all 2:2.2.2a.12.g12bc22b+git201306141132~precise-0ubuntu1 [50.9 kB]Get:116 http://localhost/ubuntu/ precise-havana/main python-stevedore all 0.9-0ubuntu1~ubuntu12.04.1~havana0 [13.1 kB]Get:117 http://localhost/ubuntu/ precise-havana/main python-sqlalchemy-ext amd64 0.7.9-1~ubuntu12.04.1~grizzly0 [14.3 kB]Get:118 http://localhost/ubuntu/ precise-havana/main python-webob all 1.2.3-0ubuntu1~ubuntu12.04.1~grizzly0 [64.5 kB]Get:119 http://localhost/ubuntu/ precise-havana/main pep8 all 1.4.4-1~ubuntu12.04.1~havana0 [30.6 kB]Get:120 http://localhost/ubuntu/ precise-havana/main python-subunit all 0.0.12-0ubuntu1~cloud0 [67.6 kB]Get:121 http://localhost/ubuntu/ precise-havana/main python-testrepository all 0.0.15-0ubuntu1~ubuntu12.04.1~havana0 [70.5 kB]Get:122 http://localhost/ubuntu/ precise-havana/main testrepository all 0.0.15-0ubuntu1~ubuntu12.04.1~havana0 [12.6 kB]Failed to fetch http://localhost/ubuntu/pool/main/p/python-cinderclient/python-cinderclient_1.0.4.43.gd3b8d70+git201306231201~precise-0ubuntu1_all.deb  404  Not FoundFetched 47.2 MB in 2s (16.5 MB/s)E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?install call failedERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-21d2f214-f25d-4484-96dd-7a045e1b9c2f', '-u', 'root', '--', 'mk-build-deps', '-i', '-r', '-t', 'apt-get -y', '/tmp/tmpamruZP/nova/debian/control']' returned non-zero exit status 100ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-21d2f214-f25d-4484-96dd-7a045e1b9c2f', '-u', 'root', '--', 'mk-build-deps', '-i', '-r', '-t', 'apt-get -y', '/tmp/tmpamruZP/nova/debian/control']' returned non-zero exit status 100INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hbzr branch lp:~openstack-ubuntu-testing/nova/grizzly novadch -b -D precise --newversion 1:2013.1+git201306242223~precise-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.1+git201306242223~precise-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpamruZP/nova/debian/controlTraceback (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-21d2f214-f25d-4484-96dd-7a045e1b9c2f', '-u', 'root', '--', 'mk-build-deps', '-i', '-r', '-t', 'apt-get -y', '/tmp/tmpamruZP/nova/debian/control']' returned non-zero exit status 100Error 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-21d2f214-f25d-4484-96dd-7a045e1b9c2f', '-u', 'root', '--', 'mk-build-deps', '-i', '-r', '-t', 'apt-get -y', '/tmp/tmpamruZP/nova/debian/control']' returned non-zero exit status 100Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_nova_stable #1033

2013-06-24 Thread openstack-testing-bot
Title: raring_grizzly_nova_stable
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_stable/1033/Project:raring_grizzly_nova_stableDate of build:Mon, 24 Jun 2013 22:29:52 -0400Build duration:3 min 22 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesFix bug where consoleauth depended on remote conductor serviceby vishvanandaeditnova/consoleauth/manager.pyConsole Output[...truncated 125 lines...]Download error on http://pypi.python.org/simple/setuptools_git/: timed out -- Some packages may not be found!Download error on http://pypi.python.org/simple/setuptools-git/: timed out -- Some packages may not be found!Couldn't find index page for 'setuptools_git' (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 setuptools-git>=0.4Traceback (most recent call last):  File "setup.py", line 75, in py_modules=[])  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 586, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 831, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 843, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 295, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 611, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('setuptools-git>=0.4')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'raring-amd64-e346828a-cd96-47ac-9d9d-18382b877559', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'raring-amd64-e346828a-cd96-47ac-9d9d-18382b877559', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython 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', 'raring-amd64-e346828a-cd96-47ac-9d9d-18382b877559', '-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', 'raring-amd64-e346828a-cd96-47ac-9d9d-18382b877559', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_quantum_stable #524

2013-06-24 Thread openstack-testing-bot
Title: precise_grizzly_quantum_stable
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_stable/524/Project:precise_grizzly_quantum_stableDate of build:Tue, 25 Jun 2013 00:07:23 -0400Build duration:1 min 1 secBuild cause:Started by user Adam GandelmanBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesNo ChangesConsole Output[...truncated 1449 lines...]Get:48 http://localhost/ubuntu/ precise-havana/main python-requests all 1.1.0-1~ubuntu12.04.1~grizzly0 [39.4 kB]Get:49 http://localhost/ubuntu/ precise-havana/main python-oslo.config all 1:1.2.0a2-1ubuntu1~ubuntu12.04.1~havana0 [18.7 kB]Get:50 http://localhost/ubuntu/ precise-havana/main python-keystoneclient all 1:0.2.5.17.g3056f33+git201306231232~precise-0ubuntu1 [72.1 kB]Err http://localhost/ubuntu/ precise-havana/main python-keystone all 1:2013.2+git201306231331~precise-0ubuntu1  404  Not FoundGet:51 http://localhost/ubuntu/ precise-havana/main python-mock all 1.0.1-1~ubuntu12.04.1~grizzly0 [26.5 kB]Get:52 http://localhost/ubuntu/ precise-havana/main python-netaddr all 0.7.7-1~ubuntu12.04.1~havana0 [1217 kB]Get:53 http://localhost/ubuntu/ precise-havana/main python-novaclient all 1:2.13.0.96.g05ca996+git201306211001~precise-0ubuntu1 [127 kB]Get:54 http://localhost/ubuntu/ precise-havana/main python-quantumclient all 2:2.2.2a.12.g12bc22b+git201306141132~precise-0ubuntu1 [50.9 kB]Get:55 http://localhost/ubuntu/ precise-havana/main python-sqlalchemy-ext amd64 0.7.9-1~ubuntu12.04.1~grizzly0 [14.3 kB]Failed to fetch http://localhost/ubuntu/pool/main/k/keystone/python-keystone_2013.2+git201306231331~precise-0ubuntu1_all.deb  404  Not FoundFetched 5904 kB in 0s (7684 kB/s)E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?install call failedERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-bac60299-430f-4553-9124-176a5f839f9d', '-u', 'root', '--', 'mk-build-deps', '-i', '-r', '-t', 'apt-get -y', '/tmp/tmpNaBIMg/quantum/debian/control']' returned non-zero exit status 100ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-bac60299-430f-4553-9124-176a5f839f9d', '-u', 'root', '--', 'mk-build-deps', '-i', '-r', '-t', 'apt-get -y', '/tmp/tmpNaBIMg/quantum/debian/control']' returned non-zero exit status 100INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log a99cc45585759014c14491ab5eb45429f207e749..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/quantum/grizzly quantumdch -b -D precise --newversion 1:2013.1+git201306250007~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [1ee62c6] Fix IP spoofing filter blocking all packets.debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC quantum_2013.1+git201306250007~precise-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpNaBIMg/quantum/debian/controlTraceback (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-bac60299-430f-4553-9124-176a5f839f9d', '-u', 'root', '--', 'mk-build-deps', '-i', '-r', '-t', 'apt-get -y', '/tmp/tmpNaBIMg/quantum/debian/control']' returned non-zero exit status 100Error 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-bac60299-430f-4553-9124-176a5f839f9d', '-u', 'root', '--', 'mk-build-deps', '-i', '-r', '-t', 'apt-get -y', '/tmp/tmpNaBIMg/quantum/debian/control']' returned non-zero exit status 100Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_cinder_stable #266

2013-06-24 Thread openstack-testing-bot
Title: raring_grizzly_cinder_stable
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_cinder_stable/266/Project:raring_grizzly_cinder_stableDate of build:Tue, 25 Jun 2013 00:07:34 -0400Build duration:1 min 49 secBuild cause:Started by user Adam GandelmanBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesNo ChangesConsole Output[...truncated 118 lines...]Download error on http://pypi.python.org/simple/setuptools_git/: timed out -- Some packages may not be found!Download error on http://pypi.python.org/simple/setuptools-git/: timed out -- Some packages may not be found!Couldn't find index page for 'setuptools_git' (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 setuptools-git>=0.4Traceback (most recent call last):  File "setup.py", line 83, in py_modules=[])  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 586, in resolvedist = best[req.key] = env.best_match(req, self, installer)  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 831, in best_matchreturn self.obtain(req, installer) # try and download/install  File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 843, in obtainreturn installer(requirement)  File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 295, in fetch_build_eggreturn cmd.easy_install(req)  File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 611, in easy_installraise DistutilsError(msg)distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('setuptools-git>=0.4')ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'raring-amd64-8e961834-903f-4436-88b8-f4280738a0cb', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'raring-amd64-8e961834-903f-4436-88b8-f4280738a0cb', '-u', 'jenkins', '--', 'python', 'setup.py', 'sdist']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython 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', 'raring-amd64-8e961834-903f-4436-88b8-f4280738a0cb', '-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', 'raring-amd64-8e961834-903f-4436-88b8-f4280738a0cb', '-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