Re: [Openstack] libvirtError: unsupported configuration: disk bus 'ide' cannot be hotplugged.

2013-07-19 Thread Wangpan
I think the 'virtio' bus is the default one, I have no idea why the 'ide' bus 
is used in your deployment.

2013-07-19



Wangpan



发件人:Andalabs mahardika.gil...@andalabs.com
发送时间:2013-07-16 19:01
主题:Re: [Openstack] libvirtError: unsupported configuration: disk bus 'ide' 
cannot be hotplugged.
收件人:Wangpanhzwang...@corp.netease.com
抄送:openstack@lists.launchpad.netopenstack@lists.launchpad.net

How to enabled it? Or configure ?
Thanks before

Email-an dari Kokpit

On 16 Jul 2013, at 05:13 PM, Wangpanhzwang...@corp.netease.com wrote:


'virtio' disk bus should be used if you want to hotplug a disk on kvm guest.

2013-07-16



Wangpan



发件人:Mahardhika mahardika.gil...@andalabs.com
发送时间:2013-07-16 17:24
主题:Re: [Openstack] libvirtError: unsupported configuration: disk bus 'ide' 
cannot be hotplugged.
收件人:Wangpanhzwang...@corp.netease.com,openstack@lists.launchpad.netopenstack@lists.launchpad.net
抄送:

Hi, i used KVM.

On 7/16/2013 4:16 PM, Wangpan wrote:

what hypervisor you are using?

2013-07-16



Wangpan



发件人:Mahardhika mahardika.gil...@andalabs.com
发送时间:2013-07-16 17:09
主题:[Openstack] libvirtError: unsupported configuration: disk bus 'ide' cannot 
be hotplugged.
收件人:openstack@lists.launchpad.netopenstack@lists.launchpad.net
抄送:

Hi, i've got this when try to attach on running instance that running centos 
6.3 
libvirtError: unsupported configuration: disk bus 'ide' cannot be hotplugged.
volume can attach when instance is on suspend state, but when i resume and 
reboot, no volume device is appear
it work when i used cirros, but not with other os (bare-metal) or .iso image
please help
thanks




-- 
Regards,
Mahardhika Gilang

PT. Andalabs Technology 
Gedung Gravira
Jl. Cideng Barat no. 54
Jakarta Pusat 10150

HP : 0852 139 55861
Email : mahardika.gil...@andalabs.com ___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Delete orphaned floating ip (Solved)

2013-07-19 Thread Jake G.
Hi All,

I couldn`t find this info on the web so I created a set-by-step guide to 
removing orphaned floating IP addresses. Enjoy :)

0. Check if you have a orphaned floating ip. If you see an IP with the Instance 
ID of None, then that is the IP address you will use below.
# nova floating-ip-list

(output will look similar below)

+-+-+--++
| Ip              | Instance Id | Fixed Ip | Pool           |
+-+-+--++
| 192.168.100.133 | None        | None     | Public Network |
+-+-+--++

Now delete the orphaned floating IP.
1. Login to mysql.
# mysql -u username -p

2. List your databases if you want.
# show databases;

3. Switch to use the ovs_quantum database.
mysql use ovs_quantum; 

4. Show the values in the table floatingips. Take note of the column name 
(floating_ip_address) for the orphaned IP
mysql SELECT * FROM floatingips; (Show the table contents)
mysql DELETE FROM floatingips WHERE floating_ip_address=192.168.100.133;  
(insert your ip address withing the quotes)
mysql SELECT * FROM floatingips; (confirm the row was deleted)

5. Show the values in the table ipallocations. Take note of the column name 
(ip_address) for the orphaned IP
mysql SELECT * FROM ipallocations; (Show the table contents)
mysql DELETE FROM ipallocations WHERE ip_address=192.168.100.133;  (insert 
your ip address withing the quotes)
mysql SELECT * FROM ipallocations; (confirm the row was deleted)
 
6. Next login to the Openstack Dashboard and delete the port for the network 
containing the orphaned floating IP. 

In my case I deleted the whole subnet because the DHCP server does not release 
the IP pack in the pool unless you do this.
You can see this in the table ipavailabilityranges. once you delete the subnet 
the values clear out. 
This last part will only work if you have no more instances connected to this 
subnet.
Those who are good at sql commands could figure out how to modify the IP range 
in the ipavailabilityranges tables to release the IP back
to the dhcp server.


Hope that helps others with the same issue.

Best,
Jake







 From: laserjetyang laserjety...@gmail.com
To: Jake G. dj_dark_jungl...@yahoo.com 
Cc: openstack@lists.launchpad.net openstack@lists.launchpad.net 
Sent: Friday, July 19, 2013 2:42 PM
Subject: Re: [Openstack] Delete orphaned floating ip
 


I will do it by entering database




On Fri, Jul 19, 2013 at 1:21 PM, Jake G. dj_dark_jungl...@yahoo.com wrote:

Hi all,


I have a orphaned floating IP I am unable to delete.


# nova floating-ip-list
+-+-+--++
| Ip              | Instance Id | Fixed Ip | Pool           |
+-+-+--++
| 192.168.100.133 | None        | None     | Public Network |


Is there a way to delete this manually?


Thanks,
Jake


___
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] Network configuration for single node Openstack install

2013-07-19 Thread Jake G.
Hi all,

I am having issues with networking. I have a single node Openstack Grizzly 
server with two NICs.

-NIC1
eth0
IP address: 10.3.7.24
Mask: 255.0.0.0
GW: none

-NIC2
eth1
IP address: 192.168.100.24
Mask: 255.255.255.0
GW: 192.168.100.254

1. Instances should use the 192.168.100.0/24 subnet for access to the internet.
2. My Management network should use the 10.3.7.0/8 subnet and does not need 
access to the internet.


Could somone help me with setting this up? or a link pointing to something 
similar?

Thank you___
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] Network configuration for single node Openstack install.

2013-07-19 Thread Jake G.
Hi all,

I am having issues with networking. I have a single node Openstack Grizzly 
server with two NICs.

-NIC1
eth0
IP address: 10.3.7.24
Mask: 255.0.0.0
GW: none

-NIC2
eth1
IP address: 192.168.100.24
Mask: 255.255.255.0
GW: 192.168.100.254

1. Instances should use the 192.168.100.0/24 subnet for access to the internet.
2. My Management network should use the 10.3.7.0/8 subnet and does not need 
access to the internet.


Could somone help me with setting this up? or a link pointing to something 
similar?

Thank you___
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] Memory meters from ceilometer

2013-07-19 Thread Eoghan Glynn

Hi Jobin,

As explained earlier, the existing memory and disk.* meters are
not measures of utilization in the classic sense (i.e. the % of an
existing limited resource currently used and available).

If you simply want to know the quantum of memory allocated to the
instance by the hypervisor, then the existing memory meter is fine.

Similarly if all you need to know is ephermal disk size or the rate
of read/write IOPs, then the existing disk.* meters address this.

If on the other hand you want to know how much free memory or unused
diskspace remains available to processes running on the instance, then
this would require new meters as I explained earlier on this thread.

Cheers,
Eoghan


- Original Message -
 Thanks Eoghan for your detailed response regarding the current scenario and
 progress related to this project. Had been investigating about this for
 while since they had been documented here in the official ceilometer
 measurements
 pagehttp://docs.openstack.org/developer/ceilometer/measurements.html.
 Thanks for your enlightenment!
 
 
 On Thu, Jul 18, 2013 at 8:43 PM, Eoghan Glynn egl...@redhat.com wrote:
 
 
  Hi Jobin,
 
  The memory utilization metering will require a new release of libvirt
  which will not be available for another few weeks. After that, it will
  depend on there being developer bandwidth available to put the ceilometer
  support in place for a new meter type.
 
  We have no current plans that I'm aware of to implement metering of disk
  utilization (in the sense of available diskspace, equivalent to that
  reported by say running the df command on the instance). But I could see
  it being a useful thing.
 
  The information is certainly available via the libvirt domain blockInfo,
  though there may be some wrinkles around multiple block devices versus
  volumes attached.
 
  In any case, please submit[1] a bug with a request for enhancement.
 
  Cheers,
  Eoghan
 
  [1] https://bugs.launchpad.net/ceilometer/+filebug
 
  - Original Message -
   Thanks a lot Eoghan for your detailed response. I have enabled instance
   usage auditing in my nova.conf http://pastebin.ubuntu.com/5887592/. Is
   there anyway I could get these meters(memory and disk utilization) for
  VM's
   provisioned using OpenStack?
  
   Thanks for your efforts.
  
  
   On Thu, Jul 18, 2013 at 4:57 PM, Eoghan Glynn egl...@redhat.com wrote:
  
   
Hey Jobin,
   
Thanks for your perceptive question.
   
The reason is that the conduits for gathering CPU metering and memory
metering are quite different in ceilometer currently:
   
* cpu/cpu_util are derived by polling the libvirt daemon
   
* memory is derived from the compute.instance.exists notification
  sent by nova
   
(This is the pollster versus notification-handler dichotomy you'll
 see throughout ceilometer).
   
The reason you're not seeing the memory meter being collected is
probably because you don't have instance usage auditing enabled in
your nova config (see the Configure nova section in [1]).
   
However, be warned that this meter is probably not the memory
utilization statistic that you're expecting. Rather it's likely to
be a static value reflecting the quantum of memory allocated by the
hypervisor to the instance (as opposed to the sort of number you'd
see when running free -m on the instance).
   
I'm looking into adding support for more useful memory utilization
metering (that could for example drive autoscaling logic), but this
will require usage of an upcoming release of libvirt.
   
Cheers,
Eoghan
   
[1] http://docs.openstack.org/developer/ceilometer/install/manual.html
   
   
   
 Hey!





 I am running openstack on an Ubuntu 12.04 desktop 64-bit virtual
machine. I
 am trying to use ceilometer to get the CPU and memory utilization
  from my
 compute node on a KVM host which has a few VM's running on it.

 However, this is the list of meters I get from ceilometer:

 cpu, cpu_util, disk.read.bytes, disk.write.bytes, disk.read.requests,
 disk.write.requests, image, image.size, image.download, instance,
 instance:m1.small, network.incoming.bytes, network.outgoing.bytes,
 network.incoming.packets, network.outgoing.packets





 Why am I not getting memory usage meters? I don't see the logs to
  have
any
 interpretation of this. Here is my ceilometer config file .

 --












 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
 

[Openstack] vga video setting for kvm/libvirt virtual machine on openstack folsom

2013-07-19 Thread Jacques LANDRU
Hi all,

I didn't find solution, using google, so trying openstack mailing list. I hope, 
this is the good place to post.

I'm using Folsom with kvm/libvirt environment.

Is there a simple way to force video -vga std instead of -vga cirrus when 
launching a vm using nova boot command

As there is no more libvirt.template.xml, I didn't find how to set hardware 
properties for a virtual machine.

I saw I can set vif to e1000 when registering/updating an image in glance with 
--property hw_vif_model=e1000.

Is there a hw_video equivalent property to set vga video characteristics ?

Thanks

Jacques Landru


-oOo-
 Jacques Landru
   mel:  landru~hat~telecom-lille.fr
   tel:  +33 (0)3 2033 5556
   fax:  +33 (0)3 2033 5598

 Telecom Lille
 Cite scientifique, rue G. Marconi, BP20145
 59653 VILLENEUVE D'ASCQ  Cedex
  web: http://www.telecom-lille.fr
  Tel: +33 (0)3 2033 5577 
  Fax: +33 (0)3 2033 5599 
-oOo-






-oOo-
 Jacques Landru
   mel:  landru~hat~telecom-lille.fr
   tel:  +33 (0)3 2033 5556
   fax:  +33 (0)3 2033 5598

 Telecom Lille
 Cite scientifique, rue G. Marconi, BP20145
 59653 VILLENEUVE D'ASCQ  Cedex
  web: http://www.telecom-lille.fr
  Tel: +33 (0)3 2033 5577 
  Fax: +33 (0)3 2033 5599 
-oOo-




___
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] vga video setting for kvm/libvirt virtual machine on openstack folsom

2013-07-19 Thread Daniel P. Berrange
On Fri, Jul 19, 2013 at 11:35:27AM +0200, Jacques LANDRU wrote:
 Hi all,
 
 I didn't find solution, using google, so trying openstack mailing list. I 
 hope, this is the good place to post.
 
 I'm using Folsom with kvm/libvirt environment.
 
 Is there a simple way to force video -vga std instead of -vga cirrus when 
 launching a vm using nova boot command
 
 As there is no more libvirt.template.xml, I didn't find how to set hardware 
 properties for a virtual machine.
 
 I saw I can set vif to e1000 when registering/updating an image in glance 
 with --property hw_vif_model=e1000.
 
 Is there a hw_video equivalent property to set vga video characteristics ?

There is no facility to change the video card directly at this time. The
only time it will change is if you enable spice, in which case it'll use
qxl instead of cirrus.

Adding a hw_video_model=x image property would be a reasonable addition
if you want to file a feature request, and/or supply a patch.

Daniel
-- 
|: http://berrange.com  -o-http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org  -o- http://virt-manager.org :|
|: http://autobuild.org   -o- http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org   -o-   http://live.gnome.org/gtk-vnc :|

___
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] Getting Disk information from Libvirt for tiny flavor type virtual machine

2013-07-19 Thread Narayanan, Krishnaprasad
Hallo All,

Can somebody suggest a method to get Disk information for a virtual machine 
from Libvirt which belongs to tiny flavor as it has 0 Disk?

I currently get the Domain object and then get the DomainBlockInfo object 
passing the path where the disk exists. When there is 0 Disk, the path doesn't 
exist and throws me an exception.
Is there any alternative to get rid of this problem?

Thanks
Krishnaprasad
___
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] Getting Disk information from Libvirt for tiny flavor type virtual machine

2013-07-19 Thread Narayanan, Krishnaprasad
Sorry for the confusion in the wordings. I want to get disk information for a 
VM that belongs to tiny flavor from Libvirt. Can somebody guide me to get rid 
of the problem that was stated in my earlier email?

From: Openstack 
[mailto:openstack-bounces+narayana=uni-mainz...@lists.launchpad.net] On Behalf 
Of Narayanan, Krishnaprasad
Sent: Freitag, 19. Juli 2013 11:48
To: openstack@lists.launchpad.net
Subject: [Openstack] Getting Disk information from Libvirt for tiny flavor type 
virtual machine

Hallo All,

Can somebody suggest a method to get Disk information for a virtual machine 
from Libvirt which belongs to tiny flavor as it has 0 Disk?

I currently get the Domain object and then get the DomainBlockInfo object 
passing the path where the disk exists. When there is 0 Disk, the path doesn't 
exist and throws me an exception.
Is there any alternative to get rid of this problem?

Thanks
Krishnaprasad
___
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 folsom quota issue

2013-07-19 Thread val john
Hi..

I have project  that 32G ram allocated, but my project runs only 3 2G VMS ,
when i going to create new 2G VM , i get the following message

Quota exceeded for ram: Requested 2048, but already used 30720 of 32576 ram

Please Advice

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


Re: [Openstack] vga video setting for kvm/libvirt virtual machine on openstack folsom

2013-07-19 Thread Jacques LANDRU
Hi Daniel,

Thank you for this quick answer, spice could be a solution as the virtual 
appliance I plan to deploy (based on an iso livedvd) can use qxl video driver.

Adding a hw_video_model=x image property would be a reasonable addition
if you want to file a feature request, and/or supply a patch.
Unfortunatly as I am not a python dev, I 'm not able to correctly write a clean 
glance patch

Regards.

-oOo-
 Jacques Landru
   mel:  landru~hat~telecom-lille.fr
   tel:  +33 (0)3 2033 5556
   fax:  +33 (0)3 2033 5598

 Telecom Lille
 Cite scientifique, rue G. Marconi, BP20145
 59653 VILLENEUVE D'ASCQ  Cedex
  web: http://www.telecom-lille.fr
  Tel: +33 (0)3 2033 5577 
  Fax: +33 (0)3 2033 5599 
-oOo-



- Mail original -
De: Daniel P. Berrange berra...@redhat.com
À: Jacques LANDRU lan...@telecom-lille.fr
Cc: openstack@lists.launchpad.net
Envoyé: Vendredi 19 Juillet 2013 11:41:22
Objet: Re: [Openstack] vga video setting for kvm/libvirt virtual machine on 
openstack folsom

On Fri, Jul 19, 2013 at 11:35:27AM +0200, Jacques LANDRU wrote:
 Hi all,
 
 I didn't find solution, using google, so trying openstack mailing list. I 
 hope, this is the good place to post.
 
 I'm using Folsom with kvm/libvirt environment.
 
 Is there a simple way to force video -vga std instead of -vga cirrus when 
 launching a vm using nova boot command
 
 As there is no more libvirt.template.xml, I didn't find how to set hardware 
 properties for a virtual machine.
 
 I saw I can set vif to e1000 when registering/updating an image in glance 
 with --property hw_vif_model=e1000.
 
 Is there a hw_video equivalent property to set vga video characteristics ?

There is no facility to change the video card directly at this time. The
only time it will change is if you enable spice, in which case it'll use
qxl instead of cirrus.

Adding a hw_video_model=x image property would be a reasonable addition
if you want to file a feature request, and/or supply a patch.

Daniel
-- 
|: http://berrange.com  -o-http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org  -o- http://virt-manager.org :|
|: http://autobuild.org   -o- http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org   -o-   http://live.gnome.org/gtk-vnc :|

___
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] a flavor with no disk nor ephemeral storage ?

2013-07-19 Thread Jacques LANDRU
Hi,

For an academic cloud, I plan to deploy virtual lab appliance clones booting 
from a unique shared iso liveDVD file located on a ramdisk.
Using nova flavor-create command, is there a way to create a new flavor with 
no disk, nor ephemeral storage for this kind of virtual machines ?

Thanks.

Jacques Landru

-oOo-
 Jacques Landru
   mel:  landru~hat~telecom-lille.fr
   tel:  +33 (0)3 2033 5556
   fax:  +33 (0)3 2033 5598

 Telecom Lille
 Cite scientifique, rue G. Marconi, BP20145
 59653 VILLENEUVE D'ASCQ  Cedex
  web: http://www.telecom-lille.fr
  Tel: +33 (0)3 2033 5577 
  Fax: +33 (0)3 2033 5599 
-oOo-




___
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] Network configuration for single node Openstack install.

2013-07-19 Thread Logan McNaughton
I'll give it a go.
For starters, your management network would actually be 10.0.0.0/8, not
10.3.7.0/8. /8 means that only the first octet is significant for the
network portion. You'd need to make it a /24 network if you want 10.3.7.0
(/24 is perfectly fine for that address by the way).

Personally I would look here:
http://docs.openstack.org/grizzly/openstack-network/admin/content/ch_install.html

Just follow those steps for the OVS plugin. When it comes time to install
the L3 agent, you do:
ovs-vsctl add-br br-ex
ovs-vsctl add-port br-ex eth1

eth1 doesn't need to have an IP address assigned.
Once everything is setup, you can do this:

quantum net-create public --router:external=True
quantum subnet-create --gateway 192.168.100.254 public
192.168.100.0/24--allocation-pool
start=192.168.100.25,end=192.168.100.250 --disable-dhcp
--name public-subnet

Then in Horizon you can create a Router, attach one interface to the
internal network, and then set it's gateway to the public network, you
should be good to go.

You can then assign your instances floating IP's from the
192.168.100.0/24subnet. Traffic will be routed through the virtual
router, out the eth1
interface.

On Fri, Jul 19, 2013 at 1:39 AM, Jake G. dj_dark_jungl...@yahoo.com wrote:

 Hi all,

 I am having issues with networking. I have a single node Openstack Grizzly
 server with two NICs.

 -NIC1
 eth0
 IP address: 10.3.7.24
 Mask: 255.0.0.0
 GW: none

 -NIC2
 eth1
 IP address: 192.168.100.24
 Mask: 255.255.255.0
 GW: 192.168.100.254

 1. Instances should use the 192.168.100.0/24 subnet for access to the
 internet.
 2. My Management network should use the 10.3.7.0/8 subnet and does not
 need access to the internet.

 Could somone help me with setting this up? or a link pointing to something
 similar?

 Thank you

 ___
 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] Grizzly Bear

2013-07-19 Thread Jonathan Proulx
As long as the network the interfaces connect to is properly configured for
the traffic you are trying to put across them there's no reason I know of
that OpenStack should care if they are physical or virtual (or tunnels or
bonded interfaces, or what).

That said I've not tried virtual interfaces.
___
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] Command nova-manage service list output

2013-07-19 Thread amogh patel
Hi everyone,

My Openstack environment is up and running, but when I'm trying to fire
nova-manage service list command it gives me below DEBUG message, though
I'm getting the smiley as well. Could anyone please advise on how to fix
this DEBUG issue?

2013-07-19 22:10:02.869 *DEBUG
nova.servicegroup.api*[req-a57f42be-0e31-48c3-92db-9d60b7dfda33 None
None] Check if the given
member [{'binary': u'nova-compute', 'availability_zone': 'nova', 'deleted':
0L, 'created_at': datetime.datetime(2013, 7, 19, 0, 39, 6), 'updated_at':
datetime.datetime(2013, 7, 20, 5, 10), 'report_count': 9782L, 'topic':
u'compute', 'host': u'sjcubuntu13', 'disabled': False, 'deleted_at': None,
'id': 33L}] is part of the ServiceGroup, is up service_is_up
/usr/lib/python2.7/dist-packages/nova/servicegroup/api.py:92
2013-07-19 22:10:02.870 *DEBUG
nova.servicegroup.drivers.db*[req-a57f42be-0e31-48c3-92db-9d60b7dfda33
None None] DB_Driver.is_up
last_heartbeat = 2013-07-20 05:10:00 elapsed = 2.870004 is_up
/usr/lib/python2.7/dist-packages/nova/servicegroup/drivers/db.py:67
nova-compute sjcubuntu13  nova
enabled:-)   2013-07-20 05:10:00
2013-07-19 22:10:02.870 *DEBUG
nova.servicegroup.api*[req-a57f42be-0e31-48c3-92db-9d60b7dfda33 None
None] Check if the given
member [{'binary': u'nova-network', 'availability_zone': 'internal',
'deleted': 0L, 'created_at': datetime.datetime(2013, 7, 19, 0, 39, 11),
'updated_at': datetime.datetime(2013, 7, 20, 5, 10, 1), 'report_count':
9996L, 'topic': u'network', 'host': u'sjcubuntu13', 'disabled': False,
'deleted_at': None, 'id': 34L}] is part of the ServiceGroup, is up
service_is_up /usr/lib/python2.7/dist-packages/nova/servicegroup/api.py:92
2013-07-19 22:10:02.870 *DEBUG
nova.servicegroup.drivers.db*[req-a57f42be-0e31-48c3-92db-9d60b7dfda33
None None] DB_Driver.is_up
last_heartbeat = 2013-07-20 05:10:01 elapsed = 1.870295 is_up
/usr/lib/python2.7/dist-packages/nova/servicegroup/drivers/db.py:67
nova-network sjcubuntu13  internal
enabled:-)   2013-07-20 05:10:01

thanks,
Amogh
___
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] Savanna 0.2 release details and screencast

2013-07-19 Thread Sergey Lukjanov
Hello everyone!

As you remember, we had 0.2 release this week and I’m really happy to do one 
more announcement today. We've prepared blog post for you with all new features 
appeared in our release. The most beautiful thing is that my colleague, Dmitry 
Mescheryakov made an awesome screencast with demonstration of brand new Savanna 
and you can find it in the post - 
http://www.mirantis.com/blog/savanna-0-2-released-new-hadoop-on-openstack-features/

You are welcome to read, watch and comment.

Thank you!

Sincerely yours,
Sergey Lukjanov
Savanna Technical Lead
Mirantis Inc.


___
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 Community Weekly Newsletter (July 12 – 19)

2013-07-19 Thread Stefano Maffulli

  Hong Kong Summit – Registration, Call for Speakers  Sponsors
  Now Open!
  
http://www.openstack.org/blog/2013/06/hong-kong-summit-registration-call-for-speakers-sponsors-now-open/


   ???, 
  http://openstacksummitnovember2013.eventbrite.com/


  Need support to travel to Hong Kong? The All New OpenStack
  Travel Support Program
  
http://www.openstack.org/blog/2013/07/the-all-new-openstack-travel-support-program/


  OpenStack Celebrates Three Years!
  http://www.openstack.org/blog/2013/07/openstack-celebrates-three-years/

OpenStack is no one person or company or idea or line of code. It
derives its strength from the collective community. No matter when you
joined or what role you play, you have the ability to shape the future
of OpenStack and computing.

In three short years since the community was established, OpenStack has
truly become the center of cloud innovation, attracting hundreds of
talented developers, brand-name users, and support from major industry
leaders. This calls for a big toast to you, the OpenStack community!


  A Vision for Keystone
  http://adam.younglogic.com/2013/07/a-vision-for-keystone/

As OpenStack evolves, its requirements for Identity Management evolve
with it. In the early days, there was a single Nova server, and that
stored user-id and password. Once OpenStack evolved into a body of
servers, copying passwords around comprised too big a security risk.
Keystone was first implemented as a central repository for those
passwords. Adam Young http://adam.younglogic.com/ writes in fine
details what the plans are for the future of the OpenStack Identity
Management service.


  Glance Registry Driver
  http://blog.flaper87.org/post/51e47d110f06d35a218b0307/

A lot is going on on Glance lately, although you may have not noticed.
The team has been working on several blueprints, and most of them aim to
promote glance as a public service. Flavio Percoco
http://blog.flaper87.org/ has published an update of what’s cooking in
OpenStack Image Service.


Tips ‘n Tricks

  * By Sébastien Han http://sebastien-han.fr/: OpenStack: instance
evacuation goes to host

http://sebastien-han.fr/blog/2013/07/19/openstack-instance-evacuation-goes-to-host/
  * By Chmouel Boudjnah http://blog.chmouel.com/: Quick Swift Tip: How
to remove a header with Curl

http://blog.chmouel.com/2013/07/17/quick-swift-tip-how-to-remove-a-header-with-curl/
  * By Victoria Martínez de la Cruz http://vmartinezdelacruz.com/:
Getting started with Marconi, the message queue for OpenStack

http://vmartinezdelacruz.com/getting-started-with-marconi-the-message-queue-for-openstack/
  * By Kashyap Chamarthy http://kashyapc.wordpress.com/: Configuring
Libvirt guests with an Open vSwitch bridge

http://kashyapc.wordpress.com/2013/07/13/configuring-libvirt-guests-with-an-open-vswitch-bridge/


Upcoming Events

  * Lots of birthday celebrations near you: Blow Out the Candles –
OpenStack Turns 3!

http://www.openstack.org/blog/2013/07/blow-out-the-candles-openstack-turns-3/
  * OpenStack Meeting at “One Convergence”
http://www.meetup.com/Indian-OpenStack-User-Group/events/127721822/ Jul
21, 2013 – Hyderabad, India Details
http://www.meetup.com/Indian-OpenStack-User-Group/events/127721822/
  * OSCON 2013 http://www.oscon.com/oscon2013 Jul 22 – 26, 2013 –
Portland, OR Details http://www.oscon.com/oscon2013
  * Gluster Community Workshop @ PDX
http://glusterday-pdx.eventbrite.com/, Jul 22 – 26, 2013 –
Portland, OR Details http://glusterday-pdx.eventbrite.com/
  * 2nd OpenStack User Group Nordics meetup
http://www.meetup.com/OpenStack-User-Group-Nordics/ Sep 11, 2013 –
Kista, Stockholm Details
http://www.meetup.com/OpenStack-User-Group-Nordics/
  * OpenStack on Ales http://openstack.onales.com/ Sep 30 – Oct 01,
2013 – Bend, OR Details http://openstack.onales.com/


Reports from Previous Events

  * Infrastructure Bootcamp
http://www.openstack.org/blog/2013/07/infrastructure-bootcamp/


Other News

  * python-heatclient 0.2.3 released

http://lists.openstack.org/pipermail/openstack-announce/2013-July/000119.html
  * Havana-2 development milestone available

http://lists.openstack.org/pipermail/openstack-announce/2013-July/000120.html
  * Savanna 0.2 released: Bring on the new Hadoop on OpenStack features!

http://www.mirantis.com/blog/savanna-0-2-released-new-hadoop-on-openstack-features/
  * Open Mic Spotlight: Elizabeth Krumbach Joseph

http://www.openstack.org/blog/2013/07/open-mic-spotlight-elizabeth-krumbach-joseph/
  * Open Mic Spotlight: Diane Fleming
http://www.openstack.org/blog/2013/07/open-mic-spotlight-diane-fleming/
  * Open Mic Spotlight: Anne Gentle
http://www.openstack.org/blog/2013/07/open-mic-spotlight-anne-gentle/
  * Open Mic Spotlight: Clint Byrum

Re: [Openstack] openstack folsom quota issue

2013-07-19 Thread val john
hi guys

As a example   my quota Summary in Horizone shows that im using 28040MB
out of 52000MB allocated RAM, but when i going to launch new instace with
4GB ram Error message displays as

Quota exceeded for ram requested 4096MB but already used 47616 of 52000
ram (HTTP 413) (Rquuest-ID:.)

IS there any way to fixed that issue , please advice ?

Thank You
John



On 19 July 2013 17:18, val john valjohn1...@gmail.com wrote:

 Hi..

 I have project  that 32G ram allocated, but my project runs only 3 2G VMS
 , when i going to create new 2G VM , i get the following message

 Quota exceeded for ram: Requested 2048, but already used 30720 of 32576 ram

 Please Advice

 Thank You
 John

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


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_havana_python-glanceclient_trunk #36

2013-07-19 Thread openstack-testing-bot
Title: precise_havana_python-glanceclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_python-glanceclient_trunk/36/Project:precise_havana_python-glanceclient_trunkDate of build:Fri, 19 Jul 2013 06:01:26 -0400Build duration:5 min 22 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesIncrease default page_size valueby jared.culpeditglanceclient/v2/images.pyedittests/v1/test_images.pyeditglanceclient/v1/images.pyConsole Output[...truncated 1505 lines...]Job: python-glanceclient_0.9.0.55.g093064c+git201307190601~precise-0ubuntu1.dscMachine Architecture: amd64Package: python-glanceclientPackage-Time: 85Source-Version: 1:0.9.0.55.g093064c+git201307190601~precise-0ubuntu1Space: 1356Status: attemptedVersion: 1:0.9.0.55.g093064c+git201307190601~precise-0ubuntu1Finished at 20130719-0606Build needed 00:01:25, 1356k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-havana', '-n', '-A', 'python-glanceclient_0.9.0.55.g093064c+git201307190601~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-havana', '-n', '-A', 'python-glanceclient_0.9.0.55.g093064c+git201307190601~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 sdistbzr branch lp:~ubuntu-server-dev/python-glanceclient/havana python-glanceclientdch -b -D precise --newversion 1:0.9.0.55.g093064c+git201307190601~precise-0ubuntu1 Automated Ubuntu testing build:git log -n1 --no-merges --pretty=format:%Hgit log 29270bb853d1fa5e05139197c77fb13f3898ead4..HEAD --no-merges --pretty=format:[%h] %sdch -a [0211656] Increase default page_size valuedch -a [95810ef] Pass all identity headers received to glancedch -a [09b29aa] Expose checksum index image property in clientdebcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-glanceclient_0.9.0.55.g093064c+git201307190601~precise-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpMzlJK_/python-glanceclient/debian/controlsbuild -d precise-havana -n -A python-glanceclient_0.9.0.55.g093064c+git201307190601~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-havana', '-n', '-A', 'python-glanceclient_0.9.0.55.g093064c+git201307190601~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-havana', '-n', '-A', 'python-glanceclient_0.9.0.55.g093064c+git201307190601~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


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

2013-07-19 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/639/Project:precise_havana_nova_trunkDate of build:Fri, 19 Jul 2013 06:02:22 -0400Build duration:4 min 48 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesRaise exceptions when Spice/VNC are unavailableby rafieditnova/exception.pyeditnova/tests/virt/libvirt/test_libvirt.pyeditnova/virt/libvirt/driver.pyConsole Output[...truncated 4586 lines...]dch -a [5bceb0f] Port config_drive API to v3 Part 2dch -a [57b3fc1] Port config drive API to v3 Part 1dch -a [827c2d3] Sane rest API rate limit defaultsdch -a [4fbc164] Remove locals() from compute directorydch -a [d2a4915] Hypervisor uptime fails if service is disableddch -a [09accc6] Port server password extension to v3 API Part 1dch -a [e00245804] Port Simple_tenant_usage API to v3 Part 2dch -a [b505388] Make sure periodic instance reclaims cINFO:root:Destroying schroot.ontinues on errordch -a [941984e] Make sure periodic cleanup of instances continues on errordch -a [7f57bb8] Sync models.Console* with migrations.dch -a [42bd910] Exeption message of 'live migration' is not appropriatedch -a [b5a3d05] Sync rpc from oslo-incubator.dch -a [ec01030] Update pyparsing to 1.5.7dch -a [b0a2a2d] Avoid redefining host to none in get_instance_nw_info(...)dch -a [12c6416] Clarify the compute API is_volume_backed_instance methoddch -a [1b3f890] Port extended-server-attributes into v3 part1dch -a [37b269d] Revert "fixes nova resize bug when force_config_drive is set."dch -a [b01136e] Port extended status extension to v3 API Part 1dch -a [b0da1ab] Preserve network order when using ConfigDrivedch -a [5e6c081] Add troubleshoot to baremetal PXE template.dch -a [fdafaf3] Port hypervisor API into v3 part1dch -a [5bc4b7a] port Simple_tenant_usage  API into v3 part1dch -a [d925044] Don't deallocate network if destroy time outdch -a [c8fc1c2] Port fping extension to v3 API Part 1dch -a [cf3cf3c] libvirt fix resize/migrates with swap or ephemeraldch -a [2654ae8] Enforce sqlite-specific flow in drop_unique_constraintdebcommitapt-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-69cf30fc-877e-4ad8-9396-1375d494a4d8', '-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-69cf30fc-877e-4ad8-9396-1375d494a4d8', '-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 #485

2013-07-19 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/485/Project:saucy_havana_nova_trunkDate of build:Fri, 19 Jul 2013 06:01:32 -0400Build duration:5 min 39 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesRaise exceptions when Spice/VNC are unavailableby rafieditnova/exception.pyeditnova/virt/libvirt/driver.pyeditnova/tests/virt/libvirt/test_libvirt.pyConsole Output[...truncated 4460 lines...]ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-034c448c-af09-4fd4-8b0e-b0cb9ee9cca2', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-034c448c-af09-4fd4-8b0e-b0cb9ee9cca2', '-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 sdistbzr branch lp:~ubuntu-server-dev/nova/havana novadch -b -D saucy --newversion 1:2013.2+git201307190602~saucy-0ubuntu1 Automated Ubuntu testing build:git log -n1 --no-merges --pretty=format:%Hgit log 8e81e069a18e09562abfc4b18c5c7e57020aee66..HEAD --no-merges --pretty=format:[%h] %sdch -a [923a7ee] Check that the configuration file sample is up to datedch -a [7f0051d] Make compute_api.reboot() use objectsdch -a [48b31c9] Fix HTTP response for PortInUse during bootdch -a [dcdb545] Fix parse_transport_url when url has query stringdch -a [1b40765] Code dedup in test_libvirt_vifdch -a [cc8021d] Raise exceptions when Spice/VNC are unavailabledch -a [fc8cb35] Create key manager interfacedch -a [583addc] Disable ssl layer compression for glance requests.dch -a [49fdad5] Refresh network cache when reassigning a floating IP in Neutrondch -a [c8c048b] Remove unnecessary comments for instance rebuild tests.dch -a [97f8069] Remove redundant if statements in cells.statedch -a [7e8fa8f] Fix filtering aggregate metadata by keydch -a [cd38293] Fix IPAddress and CIDR type decoratorsdch -a [13513a1] Fix aggregate_get_by_host host filteringdch -a [7f7d29d] port disk_config API into v3 part1dch -a [2b750f7] Sync v2/v3 console_output API extensionsdch -a [e16260b] Unimplemented pause should not change vm state on PowerVMdebcommitapt-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-034c448c-af09-4fd4-8b0e-b0cb9ee9cca2', '-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-034c448c-af09-4fd4-8b0e-b0cb9ee9cca2', '-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 #486

2013-07-19 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/486/Project:saucy_havana_nova_trunkDate of build:Fri, 19 Jul 2013 06:31:35 -0400Build duration:4 min 30 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesConvert suspend/resume to use objectsby danmseditnova/tests/cells/test_cells_manager.pyeditnova/tests/cells/test_cells_rpcapi.pyeditnova/api/openstack/compute/plugins/v3/admin_actions.pyeditnova/api/openstack/compute/contrib/admin_actions.pyeditnova/tests/cells/test_cells_messaging.pyeditnova/compute/manager.pyeditnova/tests/api/openstack/compute/contrib/test_admin_actions.pyeditnova/tests/compute/test_compute_api.pyeditnova/tests/compute/test_rpcapi.pyeditnova/cells/rpcapi.pyeditnova/tests/api/openstack/compute/plugins/v3/test_admin_actions.pyeditnova/cells/messaging.pyeditnova/tests/compute/test_compute.pyeditnova/cells/manager.pyeditnova/compute/rpcapi.pyeditnova/compute/api.pyeditnova/compute/cells_api.pyMake Instance.save() handle cells DB updatesby danmseditnova/tests/cells/test_cells_rpcapi.pyeditnova/cells/messaging.pyeditnova/cells/rpcapi.pyeditnova/tests/api/openstack/compute/test_server_actions.pyeditnova/tests/api/openstack/compute/test_servers.pyeditnova/tests/cells/test_cells_messaging.pyeditnova/tests/compute/test_compute.pyeditnova/db/api.pyeditnova/tests/compute/test_shelve.pyeditnova/tests/api/openstack/compute/plugins/v3/test_servers.pyeditnova/cells/manager.pyeditnova/tests/objects/test_instance.pyeditnova/tests/cells/test_cells_manager.pyeditnova/objects/instance.pyMake servers::update() use Instance.save() to do the workby danmseditnova/tests/fake_network.pyeditnova/tests/api/openstack/compute/test_servers.pyeditnova/api/openstack/compute/servers.pyConsole Output[...truncated 4469 lines...]INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistbzr branch lp:~ubuntu-server-dev/nova/havana novadch -b -D saucy --newversion 1:2013.2+git201307190632~saucy-0ubuntu1 Automated Ubuntu testing build:git log -n1 --no-merges --pretty=format:%Hgit log 8e81e069a18e09562abfc4b18c5c7e57020aee66..HEAD --no-merges --pretty=format:[%h] %sdch -a [923a7ee] Check that the configuration file sample is up to datedch -a [ae3711a] Make servers::update() use Instance.save() to do the workdch -a [b4964ae] Make Instance.save() handle cells DB updatesdch -a [0165ff5] Convert suspend/resume to use objectsdch -a [7f0051d] Make compute_api.reboot() use objectsdch -a [48b31c9] Fix HTTP response for PortInUse during bootdch -a [dcdb545] Fix parse_transport_url when url has query stringdch -a [1b40765] Code dedup in test_libvirt_vifdch -a [cc8021d] Raise exceptions when Spice/VNC are unavailabledch -a [fc8cb35] Create key manager interfacedch -a [583addc] Disable ssl layer compression for glance requests.dch -a [49fdad5] Refresh network cache when reassigning a floating IP in Neutrondch -a [c8c048b] Remove unnecessary comments for instance rebuild tests.dch -a [97f8069] Remove redundant if statements in cells.statedch -a [7e8fa8f] Fix filtering aggregate metadata by keydch -a [cd38293] Fix IPAddress and CIDR type decoratorsdch -a [13513a1] Fix aggregate_get_by_host host filteringdch -a [7f7d29d] port disk_config API into v3 part1dch -a [2b750f7] Sync v2/v3 console_output API extensionsdch -a [e16260b] Unimplemented pause should not change vm state on PowerVMdebcommitapt-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-1774cc67-8915-4844-aff1-403806cc1267', '-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-1774cc67-8915-4844-aff1-403806cc1267', '-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 : 

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

2013-07-19 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/640/Project:precise_havana_nova_trunkDate of build:Fri, 19 Jul 2013 06:31:35 -0400Build duration:5 min 15 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesConvert suspend/resume to use objectsby danmseditnova/tests/compute/test_compute.pyeditnova/compute/api.pyeditnova/tests/cells/test_cells_messaging.pyeditnova/tests/api/openstack/compute/contrib/test_admin_actions.pyeditnova/cells/messaging.pyeditnova/compute/cells_api.pyeditnova/tests/compute/test_compute_api.pyeditnova/compute/rpcapi.pyeditnova/tests/cells/test_cells_rpcapi.pyeditnova/api/openstack/compute/contrib/admin_actions.pyeditnova/tests/cells/test_cells_manager.pyeditnova/cells/rpcapi.pyeditnova/compute/manager.pyeditnova/api/openstack/compute/plugins/v3/admin_actions.pyeditnova/tests/compute/test_rpcapi.pyeditnova/tests/api/openstack/compute/plugins/v3/test_admin_actions.pyeditnova/cells/manager.pyMake Instance.save() handle cells DB updatesby danmseditnova/cells/messaging.pyeditnova/objects/instance.pyeditnova/tests/objects/test_instance.pyeditnova/cells/rpcapi.pyeditnova/cells/manager.pyeditnova/db/api.pyeditnova/tests/api/openstack/compute/plugins/v3/test_servers.pyeditnova/tests/cells/test_cells_rpcapi.pyeditnova/tests/api/openstack/compute/test_servers.pyeditnova/tests/cells/test_cells_messaging.pyeditnova/tests/compute/test_shelve.pyeditnova/tests/cells/test_cells_manager.pyeditnova/tests/compute/test_compute.pyeditnova/tests/api/openstack/compute/test_server_actions.pyMake servers::update() use Instance.save() to do the workby danmseditnova/tests/api/openstack/compute/test_servers.pyeditnova/api/openstack/compute/servers.pyeditnova/tests/fake_network.pyConsole Output[...truncated 4595 lines...]dch -a [5bceb0f] Port config_drive API to v3 Part 2dch -a [57b3fc1] Port config drive API to v3 Part 1dch -a [827c2d3] Sane rest API rate limit defaultsdch -a [4fbc164] Remove locals() from compute directorydch -a [d2a4915] Hypervisor uptime fails if service iINFO:root:Destroying schroot.s disableddch -a [09accc6] Port server password extension to v3 API Part 1dch -a [e00245804] Port Simple_tenant_usage API to v3 Part 2dch -a [b505388] Make sure periodic instance reclaims continues on errordch -a [941984e] Make sure periodic cleanup of instances continues on errordch -a [7f57bb8] Sync models.Console* with migrations.dch -a [42bd910] Exeption message of 'live migration' is not appropriatedch -a [b5a3d05] Sync rpc from oslo-incubator.dch -a [ec01030] Update pyparsing to 1.5.7dch -a [b0a2a2d] Avoid redefining host to none in get_instance_nw_info(...)dch -a [12c6416] Clarify the compute API is_volume_backed_instance methoddch -a [1b3f890] Port extended-server-attributes into v3 part1dch -a [37b269d] Revert "fixes nova resize bug when force_config_drive is set."dch -a [b01136e] Port extended status extension to v3 API Part 1dch -a [b0da1ab] Preserve network order when using ConfigDrivedch -a [5e6c081] Add troubleshoot to baremetal PXE template.dch -a [fdafaf3] Port hypervisor API into v3 part1dch -a [5bc4b7a] port Simple_tenant_usage  API into v3 part1dch -a [d925044] Don't deallocate network if destroy time outdch -a [c8fc1c2] Port fping extension to v3 API Part 1dch -a [cf3cf3c] libvirt fix resize/migrates with swap or ephemeraldch -a [2654ae8] Enforce sqlite-specific flow in drop_unique_constraintdebcommitapt-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-6f01d505-1d07-4083-8161-c60135f334f9', '-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-6f01d505-1d07-4083-8161-c60135f334f9', '-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

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

2013-07-19 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/487/Project:saucy_havana_nova_trunkDate of build:Fri, 19 Jul 2013 09:01:18 -0400Build duration:3 min 42 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesHandle instance being deleted while in filter schedulerby philip.dayeditnova/scheduler/filter_scheduler.pyeditnova/tests/scheduler/test_filter_scheduler.pyConsole Output[...truncated 4472 lines...]apt-get -y install python-setuptoolspython setup.py sdistbzr branch lp:~ubuntu-server-dev/nova/havana novadch -b -D saucy --newversion 1:2013.2+git201307190902~saucy-0ubuntu1 Automated Ubuntu testing build:git log -n1 --no-merges --pretty=format:%Hgit log 8e81e069a18e09562abfc4b18c5c7e57020aee66..HEAD --no-merges --pretty=format:[%h] %sdch -a [923a7ee] Check that the configuration file sample is up to datedch -a [ae3711a] Make servers::update() use Instance.save() to do the workdch -a [b4964ae] Make Instance.save() handle cells DB updatesdch -a [0165ff5] Convert suspend/resume to use objectsdch -a [7f0051d] Make compute_api.reboot() use objectsdch -a [48b31c9] Fix HTTP response for PortInUse during bootdch -a [dcdb545] Fix parse_transport_url when url has query stringdch -a [1b40765] Code dedup in test_libvirt_vifdch -a [cc8021d] Raise exceptions when Spice/VNC are unavailabledch -a [fc8cb35] Create key manager interfacedch -a [583addc] Disable ssl layer compression for glance requests.dch -a [49fdad5] Refresh network cache when reassigning a floating IP in Neutrondch -a [c8c048b] Remove unnecessary comments for instance rebuild tests.dch -a [97f8069] Remove redundant if statements in cells.statedch -a [7e8fa8f] Fix filtering aggregate metadata by keydch -a [cd38293] Fix IPAddress and CIDR type decoratorsdch -a [13513a1] Fix aggregate_get_by_host host filteringdch -a [7f7d29d] port disk_config API into v3 part1dch -a [2b750f7] Sync v2/v3 console_output API extensionsdch -a [79039a7] Handle instance being deleted while in filter schedulerdch -a [e16260b] Unimplemented pause should not change vm state on PowerVMdebcommitapt-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-425702a7-70c3-4ecc-901e-1905b90227ab', '-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-425702a7-70c3-4ecc-901e-1905b90227ab', '-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 #641

2013-07-19 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/641/Project:precise_havana_nova_trunkDate of build:Fri, 19 Jul 2013 09:01:17 -0400Build duration:4 min 33 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesHandle instance being deleted while in filter schedulerby philip.dayeditnova/scheduler/filter_scheduler.pyeditnova/tests/scheduler/test_filter_scheduler.pyConsole Output[...truncated 4598 lines...]dch -a [5bceb0f] Port config_drive API to v3 Part 2dch -a [57b3fc1] Port config drive API to v3 Part 1dch -a [827c2d3] Sane rest API rate limit defaultsdch -a [4fbc164] Remove locals() froINFO:root:Destroying schroot.m compute directorydch -a [d2a4915] Hypervisor uptime fails if service is disableddch -a [09accc6] Port server password extension to v3 API Part 1dch -a [e00245804] Port Simple_tenant_usage API to v3 Part 2dch -a [b505388] Make sure periodic instance reclaims continues on errordch -a [941984e] Make sure periodic cleanup of instances continues on errordch -a [7f57bb8] Sync models.Console* with migrations.dch -a [42bd910] Exeption message of 'live migration' is not appropriatedch -a [b5a3d05] Sync rpc from oslo-incubator.dch -a [ec01030] Update pyparsing to 1.5.7dch -a [b0a2a2d] Avoid redefining host to none in get_instance_nw_info(...)dch -a [12c6416] Clarify the compute API is_volume_backed_instance methoddch -a [1b3f890] Port extended-server-attributes into v3 part1dch -a [37b269d] Revert "fixes nova resize bug when force_config_drive is set."dch -a [b01136e] Port extended status extension to v3 API Part 1dch -a [b0da1ab] Preserve network order when using ConfigDrivedch -a [5e6c081] Add troubleshoot to baremetal PXE template.dch -a [fdafaf3] Port hypervisor API into v3 part1dch -a [5bc4b7a] port Simple_tenant_usage  API into v3 part1dch -a [d925044] Don't deallocate network if destroy time outdch -a [c8fc1c2] Port fping extension to v3 API Part 1dch -a [cf3cf3c] libvirt fix resize/migrates with swap or ephemeraldch -a [2654ae8] Enforce sqlite-specific flow in drop_unique_constraintdebcommitapt-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-dd7f4c77-0456-4ce7-9c43-4b1e07676eff', '-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-dd7f4c77-0456-4ce7-9c43-4b1e07676eff', '-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 #642

2013-07-19 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/642/Project:precise_havana_nova_trunkDate of build:Fri, 19 Jul 2013 13:01:39 -0400Build duration:6 min 38 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesRemove locals() from various places.by enikanoroveditnova/cells/weights/mute_child.pyeditnova/cmd/baremetal_deploy_helper.pyeditnova/servicegroup/drivers/mc.pyeditnova/hooks.pyeditnova/scheduler/filters/core_filter.pyeditnova/image/glance.pyeditnova/network/manager.pyeditnova/servicegroup/drivers/db.pyeditnova/servicegroup/api.pyeditnova/network/neutronv2/api.pyeditnova/conductor/manager.pyeditnova/utils.pyeditnova/quota.pyeditnova/api/openstack/compute/plugins/v3/quota_sets.pyeditnova/db/sqlalchemy/api.pyeditnova/api/openstack/compute/contrib/quotas.pyeditnova/cmd/manage.pyeditnova/objects/base.pyeditnova/version.pyeditnova/scheduler/filters/ram_filter.pyeditnova/storage/linuxscsi.pyeditnova/network/floating_ips.pyeditnova/network/linux_net.pyeditnova/consoleauth/manager.pySend updated aggregate to compute on add/rm hostby john.garbutteditnova/compute/api.pyeditnova/tests/compute/test_compute.pyConsole Output[...truncated 4602 lines...]dch -a [5bceb0f] Port config_drive API to v3 Part 2dch -a [57b3fc1] PoINFO:root:Destroying schroot.rt config drive API to v3 Part 1dch -a [827c2d3] Sane rest API rate limit defaultsdch -a [4fbc164] Remove locals() from compute directorydch -a [d2a4915] Hypervisor uptime fails if service is disableddch -a [09accc6] Port server password extension to v3 API Part 1dch -a [e00245804] Port Simple_tenant_usage API to v3 Part 2dch -a [b505388] Make sure periodic instance reclaims continues on errordch -a [941984e] Make sure periodic cleanup of instances continues on errordch -a [7f57bb8] Sync models.Console* with migrations.dch -a [42bd910] Exeption message of 'live migration' is not appropriatedch -a [b5a3d05] Sync rpc from oslo-incubator.dch -a [ec01030] Update pyparsing to 1.5.7dch -a [b0a2a2d] Avoid redefining host to none in get_instance_nw_info(...)dch -a [12c6416] Clarify the compute API is_volume_backed_instance methoddch -a [1b3f890] Port extended-server-attributes into v3 part1dch -a [37b269d] Revert "fixes nova resize bug when force_config_drive is set."dch -a [b01136e] Port extended status extension to v3 API Part 1dch -a [b0da1ab] Preserve network order when using ConfigDrivedch -a [5e6c081] Add troubleshoot to baremetal PXE template.dch -a [fdafaf3] Port hypervisor API into v3 part1dch -a [5bc4b7a] port Simple_tenant_usage  API into v3 part1dch -a [d925044] Don't deallocate network if destroy time outdch -a [c8fc1c2] Port fping extension to v3 API Part 1dch -a [cf3cf3c] libvirt fix resize/migrates with swap or ephemeraldch -a [2654ae8] Enforce sqlite-specific flow in drop_unique_constraintdebcommitapt-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-00c33f84-7736-4795-ba18-f2b452767b3e', '-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-00c33f84-7736-4795-ba18-f2b452767b3e', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: saucy_havana_neutron_trunk #55

2013-07-19 Thread openstack-testing-bot
Title: saucy_havana_neutron_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_neutron_trunk/55/Project:saucy_havana_neutron_trunkDate of build:Fri, 19 Jul 2013 18:04:00 -0400Build duration:5 min 31 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesImported Translations from Transifexby Jenkinseditneutron/locale/zh_CN/LC_MESSAGES/neutron.poeditneutron/locale/cs/LC_MESSAGES/neutron.poeditneutron/locale/fr/LC_MESSAGES/neutron.poeditneutron/locale/ru/LC_MESSAGES/neutron.poeditneutron/locale/pl_PL/LC_MESSAGES/neutron.poeditneutron/locale/es/LC_MESSAGES/neutron.poeditneutron/locale/da/LC_MESSAGES/neutron.poeditneutron/locale/zh_TW/LC_MESSAGES/neutron.poeditneutron/locale/ja/LC_MESSAGES/neutron.poeditneutron/locale/vi_VN/LC_MESSAGES/neutron.poeditneutron/locale/neutron.poteditneutron/locale/bg_BG/LC_MESSAGES/neutron.poeditneutron/locale/de/LC_MESSAGES/neutron.poeditneutron/locale/pt_BR/LC_MESSAGES/neutron.poeditneutron/locale/sl_SI/LC_MESSAGES/neutron.poeditneutron/locale/ro/LC_MESSAGES/neutron.poeditneutron/locale/ko_KR/LC_MESSAGES/neutron.poeditneutron/locale/fi_FI/LC_MESSAGES/neutron.poeditneutron/locale/it/LC_MESSAGES/neutron.poeditneutron/locale/ka_GE/LC_MESSAGES/neutron.poConsole Output[...truncated 2250 lines...]Looking for a way to retrieve the upstream tarballUsing the upstream tarball that is present in /tmp/tmpAZ6z2Ybzr: ERROR: An error (1) occurred running quilt: NoneApplying patch fix-quantum-configuration.patchpatching file etc/neutron.confHunk #1 FAILED at 330.1 out of 1 hunk FAILED -- rejects in file etc/neutron.confpatching file etc/neutron.conf.origpatching file etc/neutron.conf.rejPatch fix-quantum-configuration.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-289d316b-04c7-4ad6-b041-569b4e5b2356', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-289d316b-04c7-4ad6-b041-569b4e5b2356', '-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 sdistbzr branch lp:~ubuntu-server-dev/neutron/havana neutrondch -b -D saucy --newversion 1:2013.2+git201307191804~saucy-0ubuntu1 Automated Ubuntu testing build:git log -n1 --no-merges --pretty=format:%Hgit log 0f129121a1c8331c702204cf95951444ae53ef9c..HEAD --no-merges --pretty=format:[%h] %sdch -a [ce013f2] Imported Translations from Transifexdch -a [713838e] Fix revision branches appeared after merging recent patchesdch -a [a1e483d] Add support for the agent extension to NVP Plugin.dch -a [c2427c2] Add decorator helping to log method calls.dch -a [375d8be] remove repeated allocation_pools check in unittestdebcommitapt-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-289d316b-04c7-4ad6-b041-569b4e5b2356', '-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-289d316b-04c7-4ad6-b041-569b4e5b2356', '-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 #644

2013-07-19 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/644/Project:precise_havana_nova_trunkDate of build:Fri, 19 Jul 2013 21:01:16 -0400Build duration:4 min 13 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesHandle instance objects in conductor compute_stopby mriedemeditnova/conductor/manager.pyeditnova/tests/conductor/test_conductor.pyeditnova/conductor/rpcapi.pyConsole Output[...truncated 4608 lines...] Port scheduler hints extension to v3 API Part 1dch -a [5bceb0f] Port config_drive API to v3 Part 2dch -a [57b3fc1] Port config drive API to v3 Part 1dch -a [827c2d3] Sane rest API rate limit defaultsdch -a [4fbc164] Remove locals() from compute directorydch -a [d2a4915] Hypervisor uptime fails if service is disableddch -a [09accc6] Port server password extension to v3 API Part 1dch -a [e00245804] Port Simple_tenant_usage API to v3 Part 2dch -a [b505388] Make sure periodic instance reclaims continues on errordch -a [941984e] Make sure periodic cleanup of instances continues on errordch -a [7f57bb8] Sync models.Console* with migrations.dch -a [42bd910] Exeption message of 'live migration' is not appropriatedch -a [b5a3d05] Sync rpc from oslo-incubator.dch -a [ec01030] Update pyparsing to 1.5.7dch -a [b0a2a2d] Avoid redefining host to none in get_instance_nw_info(...)dch -a [12c6416] Clarify the compute API is_volume_backed_instance methoddch -a [1b3f890] Port extended-server-attributes into v3 part1dch -a [37b269d] Revert "fixes nova resize bug when force_config_drive is set."dch -a [b01136e] Port extended status extension to v3 API Part 1dch -a [b0da1ab] Preserve network order when using ConfigDrivedch -a [5e6c081] Add troubleshoot to baremetal PXE template.dch -a [fdafaf3] Port hypervisor API into v3 part1dch -a [5bc4b7a] port Simple_tenant_usage  API into v3 part1dch -a [d925044] Don't deallocate network if destroy time outdch -a [c8fc1c2] Port fping extension to v3 API Part 1dch -a [cf3cf3c] libvirt fix resize/migrates with swap or ephemeraldch -a [2654ae8] Enforce sqlite-specific flow in drop_unique_constraintdebcommitapt-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-71beccf7-86f5-4e6a-a6b0-be1ed4744277', '-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-71beccf7-86f5-4e6a-a6b0-be1ed4744277', '-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 #490

2013-07-19 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/490/Project:saucy_havana_nova_trunkDate of build:Fri, 19 Jul 2013 21:01:19 -0400Build duration:3 min 21 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesHandle instance objects in conductor compute_stopby mriedemeditnova/tests/conductor/test_conductor.pyeditnova/conductor/manager.pyeditnova/conductor/rpcapi.pyConsole Output[...truncated 4482 lines...]git log -n1 --no-merges --pretty=format:%Hgit log 8e81e069a18e09562abfc4b18c5c7e57020aee66..HEAD --no-merges --pretty=format:[%h] %sdch -a [fd308a2] Ensure dates are dates, not stringsdch -a [190d8ca] Handle instance objects in conductor compute_stopdch -a [923a7ee] Check that the configuration file sample is up to datedch -a [ae3711a] Make servers::update() use Instance.save() to do the workdch -a [b4964ae] Make Instance.save() handle cells DB updatesdch -a [0165ff5] Convert suspend/resume to use objectsdch -a [7f0051d] Make compute_api.reboot() use objectsdch -a [48b31c9] Fix HTTP response for PortInUse during bootdch -a [75329ad] Send updated aggregate to compute on add/rm hostdch -a [dcdb545] Fix parse_transport_url when url has query stringdch -a [1b40765] Code dedup in test_libvirt_vifdch -a [cc8021d] Raise exceptions when Spice/VNC are unavailabledch -a [fc8cb35] Create key manager interfacedch -a [583addc] Disable ssl layer compression for glance requests.dch -a [49fdad5] Refresh network cache when reassigning a floating IP in Neutrondch -a [c8c048b] Remove unnecessary comments for instance rebuild tests.dch -a [20eac6c] Remove locals() from various places.dch -a [97f8069] Remove redundant if statements in cells.statedch -a [7e8fa8f] Fix filtering aggregate metadata by keydch -a [cd38293] Fix IPAddress and CIDR type decoratorsdch -a [13513a1] Fix aggregate_get_by_host host filteringdch -a [7f7d29d] port disk_config API into v3 part1dch -a [2b750f7] Sync v2/v3 console_output API extensionsdch -a [79039a7] Handle instance being deleted while in filter schedulerdch -a [e16260b] Unimplemented pause should not change vm state on PowerVMdebcommitapt-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-1fd019ee-a48b-43e5-8602-e826f617a4a4', '-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-1fd019ee-a48b-43e5-8602-e826f617a4a4', '-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_neutron_trunk #56

2013-07-19 Thread openstack-testing-bot
Title: precise_havana_neutron_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_neutron_trunk/56/Project:precise_havana_neutron_trunkDate of build:Fri, 19 Jul 2013 22:31:15 -0400Build duration:1 min 54 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesAvoid refreshing firewall rules unnecessarily.by carl.baldwineditneutron/tests/unit/test_security_groups_rpc.pyeditneutron/agent/securitygroups_rpc.pyConsole Output[...truncated 1574 lines...]Using the upstream tarball that is present in /tmp/tmp6r9R6Pbzr: ERROR: An error (1) occurred running quilt: Applying patch fix-quantum-configuration.patchpatching file etc/neutron.confHunk #1 FAILED at 330.1 out of 1 hunk FAILED -- rejects in file etc/neutron.confpatching file etc/neutron.conf.origpatching file etc/neutron.conf.rejPatch fix-quantum-configuration.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-99329b69-683e-43a3-955c-7868fb6c84e2', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'precise-amd64-99329b69-683e-43a3-955c-7868fb6c84e2', '-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 sdistbzr branch lp:~ubuntu-server-dev/neutron/havana neutrondch -b -D precise --newversion 1:2013.2+git201307192231~precise-0ubuntu1 Automated Ubuntu testing build:git log -n1 --no-merges --pretty=format:%Hgit log 0f129121a1c8331c702204cf95951444ae53ef9c..HEAD --no-merges --pretty=format:[%h] %sdch -a [ce013f2] Imported Translations from Transifexdch -a [59fe071] Avoid refreshing firewall rules unnecessarily.dch -a [713838e] Fix revision branches appeared after merging recent patchesdch -a [a1e483d] Add support for the agent extension to NVP Plugin.dch -a [c2427c2] Add decorator helping to log method calls.dch -a [375d8be] remove repeated allocation_pools check in unittestdebcommitapt-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-99329b69-683e-43a3-955c-7868fb6c84e2', '-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-99329b69-683e-43a3-955c-7868fb6c84e2', '-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_neutron_trunk #56

2013-07-19 Thread openstack-testing-bot
Title: saucy_havana_neutron_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_neutron_trunk/56/Project:saucy_havana_neutron_trunkDate of build:Fri, 19 Jul 2013 22:31:15 -0400Build duration:2 min 15 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesAvoid refreshing firewall rules unnecessarily.by carl.baldwineditneutron/tests/unit/test_security_groups_rpc.pyeditneutron/agent/securitygroups_rpc.pyConsole Output[...truncated 2253 lines...]Using the upstream tarball that is present in /tmp/tmpsJOqNAbzr: ERROR: An error (1) occurred running quilt: NoneApplying patch fix-quantum-configuration.patchpatching file etc/neutron.confHunk #1 FAILED at 330.1 out of 1 hunk FAILED -- rejects in file etc/neutron.confpatching file etc/neutron.conf.origpatching file etc/neutron.conf.rejPatch fix-quantum-configuration.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-ce2ddfde-d962-460b-bc3c-907bbfb6a371', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-ce2ddfde-d962-460b-bc3c-907bbfb6a371', '-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 sdistbzr branch lp:~ubuntu-server-dev/neutron/havana neutrondch -b -D saucy --newversion 1:2013.2+git201307192231~saucy-0ubuntu1 Automated Ubuntu testing build:git log -n1 --no-merges --pretty=format:%Hgit log 0f129121a1c8331c702204cf95951444ae53ef9c..HEAD --no-merges --pretty=format:[%h] %sdch -a [ce013f2] Imported Translations from Transifexdch -a [59fe071] Avoid refreshing firewall rules unnecessarily.dch -a [713838e] Fix revision branches appeared after merging recent patchesdch -a [a1e483d] Add support for the agent extension to NVP Plugin.dch -a [c2427c2] Add decorator helping to log method calls.dch -a [375d8be] remove repeated allocation_pools check in unittestdebcommitapt-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-ce2ddfde-d962-460b-bc3c-907bbfb6a371', '-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-ce2ddfde-d962-460b-bc3c-907bbfb6a371', '-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