[Openstack] swift-proxy: access log not working

2013-01-18 Thread Robert van Leeuwen
Hi,

I'm trying to get the access log for the swift-proxy-server working.
I'm logging to UDP and the swauth logs are getting there.
However the access logs are not created.
We are running swift 1.7.5 on Scientific Linux

proxy-server.conf
[default]
log_facility = LOG_LOCAL6
log_udp_host = 127.0.0.1

Anything I might be missing?

P.S. I've run tcpdump to capture all the logs swift sends to make sure its not 
a syslog configuration issue.

Thx,
Robert
___
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] Cannot install Cinder doc successfully

2013-01-18 Thread Razique Mahroua
Hi,is python-paramiko installed on your box?
Razique Mahroua-Nuage  Corazique.mahr...@gmail.comTel: +33 9 72 37 94 15

Le 18 janv. 2013 à 08:01, harryxiyou harryxi...@gmail.com a écrit :Hi all,I wanna install Cinder docs for reading but i cannot install them accordingto cinder/doc/README.rst.My PC environment are==$ lsb_release -aDistributor ID:	UbuntuDescription:	Ubuntu 10.04.4 LTSRelease:	10.04Codename:	lucid$ pip --versionpip 0.3.1 from /usr/lib/python2.6/dist-packages (python 2.6)My operation steps1, download cinder branch from https://github.com/openstack/cinder .2, sudo apt-get install python-pip.3, sudo pip install Sphinx4, sudo apt-get install graphviz5, makeAfter step 5, i catch the following errors.$ makesphinx-build -b html -d build/doctrees source build/htmlMaking output directory...Running Sphinx v1.1.3Extension error:Could not import extension ext.cinder_autodoc (exception: No modulenamed paramiko)make: *** [html] error 1Could anyone give me some suggestions? Thanks in advance ;-)-- ThanksHarry Wei___Mailing list: https://launchpad.net/~openstackPost to : openstack@lists.launchpad.netUnsubscribe : https://launchpad.net/~openstackMore 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] Cannot install Cinder doc successfully

2013-01-18 Thread harryxiyou
On Fri, Jan 18, 2013 at 4:37 PM, Razique Mahroua
razique.mahr...@gmail.comwrote:

 Hi,


Hi Razique,

is python-paramiko installed on your box?

After i installed python-paramiko, i get the following errors.

$ make
sphinx-build -b html -d build/doctrees   source build/html
Making output directory...
Running Sphinx v1.1.3

Extension error:
Could not import extension ext.cinder_autodoc (exception: No module named
eventlet)
make: *** [html] error 1

And i tried install python-eventlet. There is no python-eventlet. What
should i do?




-- 
Thanks
Harry Wei
___
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] The server has either erred or is incapable of performing the requested operation

2013-01-18 Thread Sujay M
Hi all,

I have set up a proxy node ubuntu at 10.0.2.15 and 4 storage nodes vm[0-3]
on 10.0.2.16-19

Each storage node has loop as storage partition /mnt/sdb1/ is mounted

When i try to GET an account The server has either erred or is incapable of
performing the requested operation

root@ubuntu:~# curl -k -v -H 'X-Auth-Token:
AUTH_tk2f483541775649e39dd7c20a0e704505' http://10.0.2.15:8080/v1/AUTH_test
* About to connect() to 10.0.2.15 port 8080 (#0)
*   Trying 10.0.2.15... connected
 GET /v1/AUTH_test HTTP/1.1
 User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
 Host: 10.0.2.15:8080
 Accept: */*
 X-Auth-Token: AUTH_tk2f483541775649e39dd7c20a0e704505

 HTTP/1.1 500 Internal Server Error
 Content-Length: 228
 Content-Type: text/html; charset=UTF-8
 Date: Fri, 18 Jan 2013 08:47:56 GMT

html
 head
  title500 Internal Server Error/title
 /head
 body
  h1500 Internal Server Error/h1
  The server has either erred or is incapable of performing the requested
operation.br /br /



 /body
* Connection #0 to host 10.0.2.15 left intact
* Closing connection #0

My storage nodes configuration

root@vm0:~# cat /etc/swift/account-server.conf
[DEFAULT]
devices = /mnt
bind_ip = 10.0.2.16
bind_port = 6002
workers = 2

[pipeline:main]
pipeline = account-server

[app:account-server]
use = egg:swift#account

[account-replicator]

[account-auditor]

[account-reaper]
Similarly other config files are there.

When i examined the storage nodes in tcpdump i got to know that the proxy
server is sending packets to the storage nodes.

I followed
http://docs.openstack.org/developer/swift/howto_installmultinode.html but
using loopback partition on the storage nodes for storage. I have only
installed the packages as shown in the above url and sqlite3 in addition to
them.

Please help me. Thanks
-- 
Best Regards,

Sujay M
Final year B.Tech
Computer Engineering
NITK Surathkal

contact: +918971897571
___
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] Cannot install Cinder doc successfully

2013-01-18 Thread harryxiyou
On Fri, Jan 18, 2013 at 4:54 PM, harryxiyou harryxi...@gmail.com wrote:


 On Fri, Jan 18, 2013 at 4:37 PM, Razique Mahroua razique.mahr...@gmail.com
 wrote:

 Hi,


 Hi Razique,


is python-paramiko installed on your box?

 After i installed python-paramiko, i get the following errors.


 $ make
 sphinx-build -b html -d build/doctrees   source build/html
 Making output directory...
 Running Sphinx v1.1.3

 Extension error:
 Could not import extension ext.cinder_autodoc (exception: No module named
 eventlet)

 make: *** [html] error 1

 And i tried install python-eventlet. There is no python-eventlet. What
 should i do?


I tried '$ sudo pip install eventlet', which has solved this problem.
But when i execute
'make' command, i caught following errors.

$ make
sphinx-build -b html -d build/doctrees   source build/html
Running Sphinx v1.1.3

Extension error:
Could not import extension ext.cinder_autodoc (exception: No module
named webob.exc)

PS: I have tried 'pip install' and 'sudo apt-get install' commands.


-- 
Thanks
Harry Wei

___
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] Cannot install Cinder doc successfully

2013-01-18 Thread Razique Mahroua
Check all the "Requires" there :)http://osdir.com/ml/scm-fedora-commits/2012-09/msg07730.html
Razique Mahroua-Nuage  Corazique.mahr...@gmail.comTel: +33 9 72 37 94 15

Le 18 janv. 2013 à 10:03, harryxiyou harryxi...@gmail.com a écrit :On Fri, Jan 18, 2013 at 4:54 PM, harryxiyou harryxi...@gmail.com wrote:On Fri, Jan 18, 2013 at 4:37 PM, Razique Mahroua razique.mahr...@gmail.comwrote:Hi,Hi Razique,is python-paramiko installed on your box?After i installed python-paramiko, i get the following errors.$ makesphinx-build -b html -d build/doctrees source build/htmlMaking output directory...Running Sphinx v1.1.3Extension error:Could not import extension ext.cinder_autodoc (exception: No module namedeventlet)make: *** [html] error 1And i tried install python-eventlet. There is no python-eventlet. Whatshould i do?I tried '$ sudo pip install eventlet', which has solved this problem.But when i execute'make' command, i caught following errors.$ makesphinx-build -b html -d build/doctrees source build/htmlRunning Sphinx v1.1.3Extension error:Could not import extension ext.cinder_autodoc (exception: No modulenamed webob.exc)PS: I have tried 'pip install' and 'sudo apt-get install' commands.-- ThanksHarry Wei___
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-proxy: access log not working

2013-01-18 Thread Leandro Reox
Yep, you have to configure the proxy logging middleware like this, and if
youre logging local you dont need to use the udp logging, you can log
locally like this

[DEFAULT] section should look like this :

log_name = swift-proxy-server
log_facility = LOG_LOCAL0
log_level = DEBUG

You need to add the proxy-logging filtering to the main pipeline

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

Then you need to activate the filter , adding this section at the end of
the config

[filter:proxy-logging]
use = egg:swift#proxy_logging

That should be enough, of course you need to configure your syslog to route
your logs wherever you want, for example in out /etc/rsyslog.d/ , we create
an 10-swift.conf , with this content :)

local0.*;local0.!notice /var/log/swift/proxy.log
local0.notice   /var/log/swift/proxy.error
local0.*


Best

Lean
Mercadolibre Cloudbuilders


On Fri, Jan 18, 2013 at 5:35 AM, Robert van Leeuwen 
robert.vanleeu...@spilgames.com wrote:

 Hi,

 I'm trying to get the access log for the swift-proxy-server working.
 I'm logging to UDP and the swauth logs are getting there.
 However the access logs are not created.
 We are running swift 1.7.5 on Scientific Linux

 proxy-server.conf
 [default]
 log_facility = LOG_LOCAL6
 log_udp_host = 127.0.0.1

 Anything I might be missing?

 P.S. I've run tcpdump to capture all the logs swift sends to make sure its
 not a syslog configuration issue.

 Thx,
 Robert
 ___
 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] Openstack - cinder - volume driver NFS

2013-01-18 Thread Benoit ML
Hello,


Thank you for your answers, it's work pretty well :)
I can create/delete volume and attach them to a vm.  Next time i will
look for the format of the file (qcow2 prefered to raw)

Plz can you tell me/us when your patch will be release for snapshot ?
you base it on qcow2 file ?

I can move to the next step :)

Regards,

2013/1/16 Ray Sun qsun01...@cienet.com.cn:
 Sorry for the late reply, I just saw your email, but I'm a little busy now,
 I will response you later.

 - Ray
 Yours faithfully, Kind regards.

 CIeNET Technologies (Beijing) Co., Ltd
 Email: qsun01...@cienet.com.cn
 Office Phone: +86-01081470088-7079
 Mobile Phone: +86-13581988291


 On Tue, Jan 15, 2013 at 6:38 PM, Benoit ML ben4...@gmail.com wrote:

 Hello,

 I'm sorry because I probabably misunderstand something.
 I have :
 - configured cinder like the file you show (thank you again)
 - mounted the nfs share in /var/lib/cinder/volumes
 - echo '/etc/cinder/volumes'  /var/lib/cinder/nfsshare  chown
 cinder /var/lib/cinder/nfsshare

 And when I try to create a volume, it doesn't work. The volume is in
 error state and in the log  (with debug/verbose activated) :
 - cinder try to create a lv  : why create a lv ? not create a file on the
 nfs ?
 - cinder try to stat a directory inside the nfs_share but failed
 because it doesn't existe (of course does not create it before)

 ==
 2013-01-15 11:32:08 29896 DEBUG cinder.openstack.common.rpc.amqp [-]
 received {u'_context_roles': [u'KeystoneAdmin', u'admin',
 u'KeystoneServiceAdmin'], u'_context_request_id':
 u'req-0ed3bc1e-d5a1-43c6-8b88-3401734695ca', u'_context_quota_class':
 None, u'args': {u'image_id': None, u'snapshot_id': None, u'volume_id':
 u'014cd61e-14a2-4aa5-b9f6-a3d80c44f302'}, u'_context_auth_token':
 'SANITIZED', u'_context_is_admin': True, u'_context_project_id':
 u'295b7cf015664e02ab54eb56eb95ee0c', u'_context_timestamp':
 u'2013-01-15T10:32:08.523949', u'_context_read_deleted': u'no',
 u'_context_user_id': u'108305fe03e24aa98626344b0f47e3a3', u'method':
 u'create_volume', u'_context_remote_address': u'192.168.11.101'}
 _safe_log
 /usr/lib/python2.6/site-packages/cinder/openstack/common/rpc/common.py:195
 2013-01-15 11:32:08 29896 DEBUG cinder.openstack.common.rpc.amqp [-]
 unpacked context: {'user_id': u'108305fe03e24aa98626344b0f47e3a3',
 'roles': [u'KeystoneAdmin', u'admin', u'KeystoneServiceAdmin'],
 'timestamp': u'2013-01-15T10:32:08.523949', 'auth_token':
 'SANITIZED', 'remote_address': u'192.168.11.101', 'quota_class':
 None, 'is_admin': True, 'request_id':
 u'req-0ed3bc1e-d5a1-43c6-8b88-3401734695ca', 'project_id':
 u'295b7cf015664e02ab54eb56eb95ee0c', 'read_deleted': u'no'} _safe_log
 /usr/lib/python2.6/site-packages/cinder/openstack/common/rpc/common.py:195
 2013-01-15 11:32:08 INFO cinder.volume.manager
 [req-0ed3bc1e-d5a1-43c6-8b88-3401734695ca
 108305fe03e24aa98626344b0f47e3a3 295b7cf015664e02ab54eb56eb95ee0c]
 volume volume-014cd61e-14a2-4aa5-b9f6-a3d80c44f302: creating
 2013-01-15 11:32:08 DEBUG cinder.volume.manager
 [req-0ed3bc1e-d5a1-43c6-8b88-3401734695ca
 108305fe03e24aa98626344b0f47e3a3 295b7cf015664e02ab54eb56eb95ee0c]
 volume volume-014cd61e-14a2-4aa5-b9f6-a3d80c44f302: creating lv of
 size 10G create_volume
 /usr/lib/python2.6/site-packages/cinder/volume/manager.py:133
 2013-01-15 11:32:08 DEBUG cinder.utils
 [req-0ed3bc1e-d5a1-43c6-8b88-3401734695ca
 108305fe03e24aa98626344b0f47e3a3 295b7cf015664e02ab54eb56eb95ee0c]
 Running cmd (subprocess): sudo cinder-rootwrap
 /etc/cinder/rootwrap.conf stat /etc/cinder/volumes/6614325979630346338
 execute /usr/lib/python2.6/site-packages/cinder/utils.py:163
 2013-01-15 11:32:08 DEBUG cinder.utils
 [req-0ed3bc1e-d5a1-43c6-8b88-3401734695ca
 108305fe03e24aa98626344b0f47e3a3 295b7cf015664e02ab54eb56eb95ee0c]
 Result was 1 execute
 /usr/lib/python2.6/site-packages/cinder/utils.py:180
 2013-01-15 11:32:08 WARNING cinder.volume.driver
 [req-0ed3bc1e-d5a1-43c6-8b88-3401734695ca
 108305fe03e24aa98626344b0f47e3a3 295b7cf015664e02ab54eb56eb95ee0c]
 Exception during mounting Unexpected error while running command.
 Command: sudo cinder-rootwrap /etc/cinder/rootwrap.conf stat
 /etc/cinder/volumes/6614325979630346338
 Exit code: 1
 Stdout: ''
 Stderr: /usr/bin/stat: impossible d'\xc3\xa9valuer
 \xc2\xab\xc2\xa0/etc/cinder/volumes/6614325979630346338\xc2\xa0\xc2\xbb:
 Aucun fichier ou dossier de ce type\n
 2013-01-15 11:32:08 DEBUG cinder.volume.driver
 [req-0ed3bc1e-d5a1-43c6-8b88-3401734695ca
 108305fe03e24aa98626344b0f47e3a3 295b7cf015664e02ab54eb56eb95ee0c]
 Available shares [] _ensure_shares_mounted
 /usr/lib/python2.6/site-packages/cinder/volume/nfs.py:200
 2013-01-15 11:32:09 29896 ERROR cinder.openstack.common.rpc.amqp [-]
 Exception during message handling
 2013-01-15 11:32:09 29896 TRACE cinder.openstack.common.rpc.amqp
 Traceback (most recent call last):
 2013-01-15 11:32:09 29896 TRACE cinder.openstack.common.rpc.amqp
 File
 

Re: [Openstack] Volume driver in Cinder by ISCSI way

2013-01-18 Thread yang, xing
Hi Harry,

If you have questions about EMC volume driver, you can email me.

Thanks,
Xing


On Jan 18, 2013, at 1:29 AM, harryxiyou harryxi...@gmail.com wrote:

 Hi all,
 
 I find they, emc volumes, lvm, Netapp, IBM Svc and Zadara Virtual
 Private Storage Array,  are all use ISCSI to be the bridge to make
 drivers to let Openstack support them. You can see their driver files here:
 https://github.com/openstack/cinder/tree/master/cinder/volume/drivers
 
 If i wanna discuss questions about their ISCSI driver ways, i should go
 to which mailing lists or ask anybody?  it seems they are all not open
 source projects, which belong to companies.
 
 
 -- 
 Thanks
 Harry Wei
 
 ___
 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-proxy: access log not working

2013-01-18 Thread Robert van Leeuwen
 You need to add the proxy-logging filtering to the main pipeline

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

Thx,

That was it. 
Pipeline was missing and I totally looked over it.
Seems that putting this is in the pipeline was added in Swift 1.5 and we still 
had pre - 1.5 configs.

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


Re: [Openstack] [OpenStack][Swift] The server has either erred or is incapable of performing the requested operation

2013-01-18 Thread Kuo Hugo
Ohla Sujay ,

Would you please add more information with following items?
1. Dump the ring information
2. The mount point permission
3. execute swift-init all status on all storage node
4. [Question] Why do you use -k option in curl request ? for SSL ? but
the endpoint seems without it
5. Does there any error log in storage node of swift ?


Cheers

Hugo


2013/1/18 Sujay M sujay@gmail.com

 Hi all,

 I have set up a proxy node ubuntu at 10.0.2.15 and 4 storage nodes vm[0-3]
 on 10.0.2.16-19

 Each storage node has loop as storage partition /mnt/sdb1/ is mounted

 When i try to GET an account The server has either erred or is incapable
 of performing the requested operation

 root@ubuntu:~# curl -k -v -H 'X-Auth-Token:
 AUTH_tk2f483541775649e39dd7c20a0e704505'
 http://10.0.2.15:8080/v1/AUTH_test
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /v1/AUTH_test HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Auth-Token: AUTH_tk2f483541775649e39dd7c20a0e704505
 
  HTTP/1.1 500 Internal Server Error
  Content-Length: 228
  Content-Type: text/html; charset=UTF-8
  Date: Fri, 18 Jan 2013 08:47:56 GMT
 
 html
  head
   title500 Internal Server Error/title
  /head
  body
   h1500 Internal Server Error/h1
   The server has either erred or is incapable of performing the requested
 operation.br /br /



  /body
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0

 My storage nodes configuration

 root@vm0:~# cat /etc/swift/account-server.conf
 [DEFAULT]
 devices = /mnt
 bind_ip = 10.0.2.16
 bind_port = 6002
 workers = 2

 [pipeline:main]
 pipeline = account-server

 [app:account-server]
 use = egg:swift#account

 [account-replicator]

 [account-auditor]

 [account-reaper]
 Similarly other config files are there.

 When i examined the storage nodes in tcpdump i got to know that the proxy
 server is sending packets to the storage nodes.

 I followed
 http://docs.openstack.org/developer/swift/howto_installmultinode.html but
 using loopback partition on the storage nodes for storage. I have only
 installed the packages as shown in the above url and sqlite3 in addition to
 them.

 Please help me. Thanks
 --
 Best Regards,

 Sujay M
 Final year B.Tech
 Computer Engineering
 NITK Surathkal

 contact: +918971897571

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




-- 
+Hugo Kuo+
tonyt...@gmail.com
+ tonyt...@gmail.com886 935004793
___
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 + LDAP username only with numbers

2013-01-18 Thread Marcelo Mariano Miziara

 Hello to everyone. First of all sorry for my bad english.Second, i'm implementing openstack here in my company, and we pretend to use it with ldap integration. I detected a problem when the username is only numbers (in our case we use our ID number to log in):TypeError at /nova/   sequence item 1: expected string or Unicode, int foundRequest Method:   GET Request URL:   100.10.10.51/horizon/nova/  Django Version:   1.4.1  Exception Type:   TypeError   Exception Value:   sequence item 1: expected string or Unicode, int found   Exception Location:   /usr/lib/python2.7/dist-packages/novaclient/client.py in authenticate, line 316  Python Executable:   /usr/bin/python Python Version:   2.7.3 Python Path:   ['/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../..',  '/usr/lib/python2.7',  '/usr/lib/python2.7/plat-linux2',  '/usr/lib/python2.7/lib-tk',  '/usr/lib/python2.7/lib-old',  '/usr/lib/python2.7/lib-dynload',  '/usr/local/lib/python2.7/dist-packages',  '/usr/lib/python2.7/dist-packages',  '/usr/share/openstack-dashboard/',  '/usr/share/openstack-dashboard/openstack_dashboard'] Server time:   Qui, 17 Jan 2013 12:37:11 +Then I created another user with letters in the user name and this error doesn't appear...but then I got another type of error that I'll discuss later...someone experienced this error, or am I doing something wrong?Thanks in advance,Marcelo M. Miziara Serviço Federal de Processamento de Dados - SERPRO CDEBW/CDTEC/SUPCD  55 (41) 3593 8277 marcelo.mizi...@serpro.gov.br 



-


Esta mensagem do SERVIO FEDERAL DE PROCESSAMENTO DE DADOS (SERPRO), empresa pblica federal regida pelo disposto na Lei Federal n 5.615,  enviada exclusivamente a seu destinatrio e pode conter informaes confidenciais, protegidas por sigilo profissional. Sua utilizao desautorizada  ilegal e sujeita o infrator s penas da lei. Se voc a recebeu indevidamente, queira, por gentileza, reenvi-la ao emitente, esclarecendo o equvoco.

This message from SERVIO FEDERAL DE PROCESSAMENTO DE DADOS (SERPRO) -- a government company established under Brazilian law (5.615/70) -- is directed exclusively to its addressee and may contain confidential data, protected under professional secrecy rules. Its unauthorized use is illegal and may subject the transgressor to the laws penalties. If youre not the addressee, please send it back, elucidating the failure.




___
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] Volume driver in Cinder by ISCSI way

2013-01-18 Thread harryxiyou
On Fri, Jan 18, 2013 at 8:35 PM, yang, xing xing.y...@emc.com wrote:
 Hi Harry,

 If you have questions about EMC volume driver, you can email me.


Thanks for your help, that's very kind of you ;-)

EMC is not open-source code project, right? And Openstack support EMC
by iSCSI way. That is to say, iSCSI is the bridge to connect Openstack and
EMC, right? Could you please give me the docs of
https://github.com/openstack/cinder/blob/master/cinder/volume/drivers/emc.py
I wanna understand how to realize EMC's iSCSI driver.

By the way, if i wanna add a driver(a block storage system by iSCSI way) for
Openstack Cinder, i should just add my driver file under the dir,
https://github.com/openstack/cinder/blob/master/cinder/volume/drivers
like emc.py, right?




-- 
Thanks
Harry Wei

___
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] Volume driver in Cinder by ISCSI way

2013-01-18 Thread Huang Zhiteng
For development efforts, it is better to use openstack-dev list instead of
this general openstack list.  You can also join #openstack-cinder IRC
channel in freenode for online discussion with cinder developers.
On Jan 18, 2013 9:27 PM, harryxiyou harryxi...@gmail.com wrote:

 On Fri, Jan 18, 2013 at 8:35 PM, yang, xing xing.y...@emc.com wrote:
  Hi Harry,
 
  If you have questions about EMC volume driver, you can email me.
 

 Thanks for your help, that's very kind of you ;-)

 EMC is not open-source code project, right? And Openstack support EMC
 by iSCSI way. That is to say, iSCSI is the bridge to connect Openstack and
 EMC, right? Could you please give me the docs of

 https://github.com/openstack/cinder/blob/master/cinder/volume/drivers/emc.py
 I wanna understand how to realize EMC's iSCSI driver.

 By the way, if i wanna add a driver(a block storage system by iSCSI way)
 for
 Openstack Cinder, i should just add my driver file under the dir,
 https://github.com/openstack/cinder/blob/master/cinder/volume/drivers
 like emc.py, right?




 --
 Thanks
 Harry Wei

 ___
 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] Volume driver in Cinder by ISCSI way

2013-01-18 Thread yang, xing
Harry,

EMC's volume driver (implemented in emc.py) is open source but EMC storage is 
not.  EMC volume driver allows users to provision EMC storage in OpenStack.  
This is the same case with many other vendor provided drivers.  The EMC volume 
driver that is available currently supports iSCSI protocol on VNX and 
VMAX/VMAXe arrays.

I have a README for how to use this driver in Folsom.  See the following link:

https://github.com/xing-yang/emc-openstack-cinder

We are still doing development for Grizzly, so I don't have a README yet.  You 
can take a look of the Folsom doc to get started.  Let me know if you have any 
questions.

To add another driver, you can just add it under cinder/volume/drivers like 
emc.py.

Thanks,
Xing


From: Huang Zhiteng [mailto:winsto...@gmail.com]
Sent: Friday, January 18, 2013 8:40 AM
To: harryxiyou
Cc: openstack@lists.launchpad.net, (openstack@lists.launchpad.net); yang, xing
Subject: Re: [Openstack] Volume driver in Cinder by ISCSI way


For development efforts, it is better to use openstack-dev list instead of this 
general openstack list.  You can also join #openstack-cinder IRC channel in 
freenode for online discussion with cinder developers.
On Jan 18, 2013 9:27 PM, harryxiyou 
harryxi...@gmail.commailto:harryxi...@gmail.com wrote:
On Fri, Jan 18, 2013 at 8:35 PM, yang, xing 
xing.y...@emc.commailto:xing.y...@emc.com wrote:
 Hi Harry,

 If you have questions about EMC volume driver, you can email me.


Thanks for your help, that's very kind of you ;-)

EMC is not open-source code project, right? And Openstack support EMC
by iSCSI way. That is to say, iSCSI is the bridge to connect Openstack and
EMC, right? Could you please give me the docs of
https://github.com/openstack/cinder/blob/master/cinder/volume/drivers/emc.py
I wanna understand how to realize EMC's iSCSI driver.

By the way, if i wanna add a driver(a block storage system by iSCSI way) for
Openstack Cinder, i should just add my driver file under the dir,
https://github.com/openstack/cinder/blob/master/cinder/volume/drivers
like emc.py, right?




--
Thanks
Harry Wei

___
Mailing list: https://launchpad.net/~openstack
Post to : 
openstack@lists.launchpad.netmailto: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] Configure option to block traffic from vm instances to the host network

2013-01-18 Thread Wenhao Xu
Hi,

I am wondering is there a configuration option in nova.conf to block the
traffic from VM instances to the host network? It seems risky to allow VMs
communicating with the host. What I am currently doing is manually
inserting a rule in the host's INPUT chain to drop the traffic. Any advice?

Thanks,
Wenhao

~_~
___
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] Volume driver in Cinder by ISCSI way

2013-01-18 Thread harryxiyou
On Fri, Jan 18, 2013 at 9:40 PM, Huang Zhiteng winsto...@gmail.com wrote:
 For development efforts, it is better to use openstack-dev list instead of
 this general openstack list.  You can also join #openstack-cinder IRC
 channel in freenode for online discussion with cinder developers.


Okay, i will. Thanks for your suggestions.



-- 
Thanks
Harry Wei

___
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] Volume driver in Cinder by ISCSI way

2013-01-18 Thread harryxiyou
On Fri, Jan 18, 2013 at 10:13 PM, yang, xing xing.y...@emc.com wrote:
 Harry,

Hi Xing,

 EMC’s volume driver (implemented in emc.py) is open source but EMC storage
 is not.  EMC volume driver allows users to provision EMC storage in
 OpenStack.  This is the same case with many other vendor provided drivers.
 The EMC volume driver that is available currently supports iSCSI protocol on
 VNX and VMAX/VMAXe arrays.

 I have a README for how to use this driver in Folsom.  See the following
 link:
 https://github.com/xing-yang/emc-openstack-cinder


 We are still doing development for Grizzly, so I don’t have a README yet.
 You can take a look of the Folsom doc to get started.  Let me know if you
 have any questions.

 To add another driver, you can just add it under cinder/volume/drivers like
 emc.py.


Thanks for your help ;-)
Actually i wanna let Openstack support HLFS, which is a sub-project of Cloudxy.
Our project web is: http://code.google.com/p/cloudxy/
HLFS's doc is: http://code.google.com/p/cloudxy/wiki/HlfsDesign .

And we will first realize Openstack support driver by QEMU/Libvirt way like
Sheepdog. Then we will also realize Openstack support driver by iSCSI. At
that time, if i happen to some questions, i will suerly ask you, would
you? ;-)
Do you understand sheepdog's driver by QEMU/Libvirt in details? If i add a
QEMU/Libvirt driver to let Openstack support HLFS, I should change following
stuffs, right?

1, add driver file to the dir (the same as sheepdog),
  https://github.com/openstack/cinder/blob/master/cinder/volume/drivers
2, change the file (Let libvirt attach HLFS volumes to QEMU, the same
as sheepdog),
  https://github.com/openstack/nova/blob/master/nova/virt/libvirt/driver.py

Do you have any other suggestions?

-- 
Thanks
Harry Wei

___
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-dev][Sheepdog]Add a new driver for Openstack Cinder like Sheepdog volumes

2013-01-18 Thread harryxiyou
Hi Morita and other developers,

If i add a QEMU/Libvirt driver(the same as Sheepdog volumes driver in
Openstack Cinder branch) to let Openstack Cinder support a new block-level
storage system, I should change following stuffs, right?

1, Add a driver file to the dir in Openstack Cinder branch(the same as
sheepdog.py),
  https://github.com/openstack/cinder/blob/master/cinder/volume/drivers
2, Change the file in Openstack Nova branch(Let libvirt attach HLFS volumes
to QEMU, the same as sheepdog),
  https://github.com/openstack/nova/blob/master/nova/virt/libvirt/driver.py

Do I should change/add any other files for Openstack? Cloud anyone give me
some suggestions?Thanks in advance ;-)

-- 
Thanks
Harry Wei

___
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 + LDAP username only with numbers

2013-01-18 Thread Adam Young

On 01/18/2013 08:18 AM, Marcelo Mariano Miziara wrote:

Hello to everyone. First of all sorry for my bad english.

Second, i'm implementing openstack here in my company, and we pretend 
to use it with ldap integration. I detected a problem when the 
username is only numbers (in our case we use our ID number to log in):


PLease enter it as a bug.  It looks like the HTML to Python parsing is 
breaking down.




  TypeError at /nova/

sequence item 1: expected string or Unicode, int found
Request Method: GET
Request URL: 	100.10.10.51/horizon/nova/ 
http://100.10.10.51/horizon/nova/

Django Version: 1.4.1
Exception Type: TypeError
Exception Value:
sequence item 1: expected string or Unicode, int found
Exception Location: 
/usr/lib/python2.7/dist-packages/novaclient/client.py in authenticate, 
line 316

Python Executable:  /usr/bin/python
Python Version: 2.7.3
Python Path:
['/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../..',  
'/usr/lib/python2.7',  '/usr/lib/python2.7/plat-linux2',  
'/usr/lib/python2.7/lib-tk',  '/usr/lib/python2.7/lib-old',  
'/usr/lib/python2.7/lib-dynload',  '/usr/local/lib/python2.7/dist-packages',  
'/usr/lib/python2.7/dist-packages',  '/usr/share/openstack-dashboard/',  
'/usr/share/openstack-dashboard/openstack_dashboard']
Server time:Qui, 17 Jan 2013 12:37:11 +


Then I created another user with letters in the user name and this 
error doesn't appear...but then I got another type of error that I'll 
discuss later...someone experienced this error, or am I doing 
something wrong?


Thanks in advance,
Marcelo M. Miziara
Serviço Federal de Processamento de Dados - SERPRO
CDEBW/CDTEC/SUPCD
55 (41) 3593 8277
marcelo.mizi...@serpro.gov.br 
http://mailto:marcelo.mizi...@serpro.gov.br

-


Esta mensagem do SERVIÇO FEDERAL DE PROCESSAMENTO DE DADOS (SERPRO), 
empresa pública federal regida pelo disposto na Lei Federal nº 5.615, 
é enviada exclusivamente a seu destinatário e pode conter informações 
confidenciais, protegidas por sigilo profissional. Sua utilização 
desautorizada é ilegal e sujeita o infrator às penas da lei. Se você a 
recebeu indevidamente, queira, por gentileza, reenviá-la ao emitente, 
esclarecendo o equívoco.


This message from SERVIÇO FEDERAL DE PROCESSAMENTO DE DADOS (SERPRO) 
-- a government company established under Brazilian law (5.615/70) -- 
is directed exclusively to its addressee and may contain confidential 
data, protected under professional secrecy rules. Its unauthorized use 
is illegal and may subject the transgressor to the law's penalties. If 
you're not the addressee, please send it back, elucidating the failure.



___
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 Community Weekly Newsletter (Jan 11 – 18)

2013-01-18 Thread Stefano Maffulli


   Highlights of the week


 My first week at OpenStack
 http://vmartinezdelacruz.com/my-first-week-at-openstack/

Victoria Martínez de la Cruz http://vmartinezdelacruz.com/ is one of 
the three interns working on OpenStack under the Outreach Program for 
Women (OPW –Anne Gentle shared some details about the program before.) 
She will be working on Tenant Deletion Workflow 
https://blueprints.launchpad.net/horizon/+spec/tenant-deletion in the 
next months. This first blog post about OpenStack contains lots of good 
advice for any developer joining the community: a must read, for 
experienced developers, hiring managers and newcomers to this great 
community.



 Ceilometer Grizzly 2 Milestone Available
 
http://blog.doughellmann.com/2013/01/ceilometer-grizzly-2-milestone-available.html

The Ceilometer team is proud to announce the first synchronous milestone 
delivery with the OpenStack http://openstack.org/ project. Grizzly-2 
https://launchpad.net/ceilometer/+milestone/grizzly-2 is also the last 
Folsom compatible version of Ceilometer 
https://launchpad.net/ceilometer as we are planning to introduce some 
breaking changes very soon in our trunk to enable a totally new set of 
features bringing Ceilometer beyond basic metering into monitoring and 
alerting.



 How many people does one need to build a multi-region cloud?
 
http://freedomhui.com/2013/01/stacklabhow-many-people-it-needs-to-build-a-multi-regions-cloud/

Hui Cheng describes in details the StackLab project. Spearheaded by 
Sina, Intel, Gamewave, Xi’an Jiaotong University, South China University 
of Technology and others, it’s a non profit platform to try and test 
OpenStack. Sina’s OpenStack development team was responsible for the 
development, operations, and go online initially. More volunteers have 
joined the effort and are actively being recruited to get involved to 
this great career, which will accelerate OpenStack popularizing in China.



 An Image Transfers Service For OpenStack
 
https://tropicaldevel.wordpress.com/2013/01/11/an-image-transfers-service-for-openstack/

John Bresnahan https://tropicaldevel.wordpress.com/ makes the case for 
a new transfer service component in OpenStack. IaaS clouds must transfer 
VM images from the repositories in which they reside to compute nodes 
where they are booted. In the current state of OpenStack images download 
via HTTP to a nova-compute client speaking to the Glance image service. 
In the future proposed by John a transfers service would provide more 
predictable quality of service with horizontal scalability. Check his idea.



 Ceilomenter is looking for volunteers to take on unassigned
 blueprints http://lists.openstack/

The team is about to start implementing the blueprints for the g3 
milestone, there are few blueprints which still don’t have anyone 
assigned to them. If you are looking for something useful to code, head 
over to see the list of things that you could be working on. Remember 
that contributions during the Grizzly lifecycle will get you a free 
ticket to the OpenStack Summit.



   Tips and tricks

 * By Patrick McGarry http://ceph.com/author/scuttlemonkey/: Building
   a Public AMI with Ceph and OpenStack
   http://ceph.com/howto/building-a-public-ami-with-ceph-and-openstack/
 * By Davide Guerry: Using JuJu on OpenStack-based UniCloud
   http://youtu.be/K5-iJ37q23k
 * By John Bresnaha https://tropicaldevel.wordpress.com/: How to
   configure OpenStack Glance And Nova Backed By Red Hat Storage
   
https://tropicaldevel.wordpress.com/2013/01/16/openstack-glance-and-nova-backed-by-red-hat-storage/
 * By Loïc Dachary http://dachary.org/: Installing OpenStack Folsom
   on Debian GNU/Linux wheezy http://dachary.org/?p=1791
 * By Robert Collins http://rbtcollins.wordpress.com/: Multi-machine
   parallel testing of nova with testrepository
   
http://rbtcollins.wordpress.com/2013/01/14/multi-machine-parallel-testing-of-nova-with-testrepository/
 * By Kyle Mestery http://www.siliconloons.com/: Multi-node OpenStack
   Folsom devstack http://www.siliconloons.com/?p=395


   Upcoming Events

 * OpenStack Users January 2013 meetup
   http://www.meetup.com/Indian-OpenStack-User-Group/events/93144352/
   Jan 19, 2013 – Bangalore, India Details
   http://www.meetup.com/Indian-OpenStack-User-Group/events/93144352/
 * Openstack Developers Meetup
   http://wiki.openstack.org/DeveloperMeetupRaanana Jan 20, 2013 –
   Raanana, Israel Details
   http://wiki.openstack.org/DeveloperMeetupRaanana
 * Chef for OpenStack Hack Day
   http://www.eventbrite.com/event/4395344594 Jan 22, 2013 – Boston,
   MA Details http://www.eventbrite.com/event/4395344594
 * oVirt Workshop http://www.ovirt.org/NetApp_Workshop_January_2013
   Jan 22 – 24, 2013 – Sunnyvale, CA Details
   http://www.ovirt.org/NetApp_Workshop_January_2013
 * OpenStack Mini-Conf at Linux Conf Australia
   https://lca2013.linux.org.au/wiki/Miniconfs/OpenStackJan 29, 2013
   – Canberra, 

Re: [Openstack] Cannot install Cinder doc successfully

2013-01-18 Thread Clark Boylan
On Fri, Jan 18, 2013 at 1:39 AM, Razique Mahroua
razique.mahr...@gmail.comwrote:

 Check all the Requires there :)
 http://osdir.com/ml/scm-fedora-commits/2012-09/msg07730.html

 *Razique Mahroua** - **Nuage  Co*
 razique.mahr...@gmail.com
 Tel : +33 9 72 37 94 15


 Le 18 janv. 2013 à 10:03, harryxiyou harryxi...@gmail.com a écrit :

 On Fri, Jan 18, 2013 at 4:54 PM, harryxiyou harryxi...@gmail.com wrote:



 On Fri, Jan 18, 2013 at 4:37 PM, Razique Mahroua 
 razique.mahr...@gmail.com
 wrote:


 Hi,



 Hi Razique,


 is python-paramiko installed on your box?


 After i installed python-paramiko, i get the following errors.


 $ make
 sphinx-build -b html -d build/doctrees   source build/html
 Making output directory...
 Running Sphinx v1.1.3

 Extension error:
 Could not import extension ext.cinder_autodoc (exception: No module named
 eventlet)

 make: *** [html] error 1

 And i tried install python-eventlet. There is no python-eventlet. What
 should i do?


 I tried '$ sudo pip install eventlet', which has solved this problem.
 But when i execute
 'make' command, i caught following errors.

 $ make
 sphinx-build -b html -d build/doctrees   source build/html
 Running Sphinx v1.1.3

 Extension error:
 Could not import extension ext.cinder_autodoc (exception: No module
 named webob.exc)

 PS: I have tried 'pip install' and 'sudo apt-get install' commands.


 --
 Thanks
 Harry Wei



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


The easiest way to build the docs is going to be with tox, `tox -evenv --
python setup.py build_sphinx`. This will install all of the dependencies
for Cinder in a virtualenv then build the documentation in that env (the
dependencies are necessary because Cinder uses autodoc).

Clark
___
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] Progress on wiki migration to Mediawiki

2013-01-18 Thread Anne Gentle
Hi all,
We did not flip the switch to Mediawiki 12/21 so we could take more time to
get the landing page right and improve the macros. As it turns out, there
are some CLA infrastructure updates that will correspond nicely with a new
timeline. There are three tasks outstanding with assignees:
- Make an OpenStack skin to match other openstack.org sites (Matthew
Wagoner, olaph) This is not optimized for mobile but we'll prioritize that
task later.
- Make the landing page mo' better. (Thierry Carrez, ttx) While we won't be
able to have the migration make the columns on all the pages lovely, he can
make the first page beautious again.
- Handle redirects gracefully. (Ryan_Lane)

Once these three tasks are done and the CLA infrastructure work is
complete, we'll revise the timeline. MoinMoin has been updated to take care
of a security vulnerability, so we are still safely wiki-ing.

At next week's CI meeting, we'll schedule a cutover date and pick a date
for a cleanup sprint. No macro changes at this point for various good
reasons -- just manual cleanup.

Greetings from wikistan,
Anne, Ryan, Thierry, and the CI team
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Quantum duplicate subnet creation

2013-01-18 Thread Caitlin Bestler


Aaron Rosen wrote: 

 Nova (network) does not support overlapping ip addresses so if you use nova 
 security groups directly this won't work.
 This should be fixed in G3 using nova security groups with a nova to quantum 
 security group proxy. Until recently nova
 meta data did not work with overlapping ips but that works now if you use the 
 quantum-meta data agent. If you want
 to use security groups with overlapping ips you can use quantum security 
 groups directly, though this only works with
 the linux bridge plugin currently (soon the ovs and nvp plugin will support 
 this once some patches merge upstream).

Am I understanding the above correctly if I rephrase it as follows:

  The current code indexes subnets solely based on ip address. Overlapping 
subnet masks actually means that one
   index will eclipse the other.

   With the addition of security groups, the security group becomes the most 
significant portion of a composite key,
   Thereby eliminating any ambiguity in keying or finding the correct subnet.



___
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] [Swift] Candidate Swift 1.7.6 cut

2013-01-18 Thread John Dickinson
We've cut he milestone-proposed branch for Swift 1.7.6. It's scheduled to be 
released next Thursday January 24. Please take a look and let us know of any 
issues you find ASAP.

Candidate tarball: 
http://tarballs.openstack.org/swift/swift-milestone-proposed.tar.gz

The full proposed changelog for this release is available at 
https://github.com/openstack/swift/blob/master/CHANGELOG.

--John





smime.p7s
Description: S/MIME cryptographic 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


[Openstack] Do not Repeat Yourself, Try fib!

2013-01-18 Thread Hengqing Hu

Dear list,

We all know fibonacci numbers, by adding up 0 and 1 again and again, we 
finally get

a huge number exponential to size of serials of numbers added.

Also, we have both seem some kind of code duplication around in some of the
openstack projects. The projects might become better, if duplication 
could be easily
found and then the most concerned ones could be fixed. So I write a 
little tool to
simplify this kind of finding, an named it fib. If it's possible, I'd 
like to ask you to try

to use this tool as a compensation for pep or lint or pyflakes.

A change has already been in openstack-infra as a initial try to embed 
it into openstack:

https://review.openstack.org/#/c/2/

The latest code could be found here:
https://github.com/hudayou/fib

In order to use this tool, you need to install guile package on a rpm 
based system and

at least guile-1.8 package on a deb based system.

As a demo output, you can find it here:
http://paste.openstack.org/show/29635/

The command used for config project in openstack-infra  is:
fedora-18 config]$ time ~/fib/fib -f .  config-dups

real0m43.800s
user0m40.535s
sys0m2.768s


Looking forward to hear your feedback about this tool and hopefully we 
can move forward.


If you met any problems, you mind add a issue on github.
Pull requests are also quite appreciate.
If you find it useful and want to package it for some os distribution, 
feel free to do it.


Best Regards, Hengqing Hu

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


Re: [Openstack] [Openstack-dev][Sheepdog]Add a new driver for OpenstackCinder like Sheepdog volumes

2013-01-18 Thread harryxiyou
On Sat, Jan 19, 2013 at 10:57 AM, 张家龙 zhan...@awcloud.com wrote:
 Maybe,you need to modify the nova/virt/libvirt.xml.template.In our tesing of
 nova and sheepdog,

Hi Zhang jia long,

What are the functions of libvirt.xml.template? Currently, we just
wanna to add a new
block driver(a new one as the same as sheepdog driver) to Openstack Cinder ;-)
The performances will be enhenced later.


[...]
 Hi Morita and other developers,

 If i add a QEMU/Libvirt driver(the same as Sheepdog volumes driver in
 Openstack Cinder branch) to let Openstack Cinder support a new block-level
 storage system, I should change following stuffs, right?

 1, Add a driver file to the dir in Openstack Cinder branch(the same as
 sheepdog.py),
   https://github.com/openstack/cinder/blob/master/cinder/volume/drivers
 2, Change the file in Openstack Nova branch(Let libvirt attach HLFS volumes
 to QEMU, the same as sheepdog),

 https://github.com/openstack/nova/blob/master/nova/virt/libvirt/driver.py

 Do I should change/add any other files for Openstack? Cloud anyone give me
 some suggestions?Thanks in advance ;-)


Hi Openstack developers and Sheepdog developers,

I also have following questions, please give me some suggestions.
Thanks in advance ;-)

1, The libvirt codes in Nova branch are just interfaces which call the
standard Libvirt library, right?
(Or the libvirt codes in Nova branch are the standard Libvirt library.)

2, If i add a new block storage driver for Openstack by QEMU/Libvirt
way, should i also modify standard libvirt library and QEMU source
codes to let them support this new driver so that i can use this new
driver to let libvirt attach the new driver volumes to QEMU in Openstack?

3, Certainly, i should also do following stuffs.

 a, Add a driver file to the dir in Openstack Cinder branch(the same as
 sheepdog.py),
https://github.com/openstack/cinder/blob/master/cinder/volume/drivers
 b, Change the file in Openstack Nova branch(Let libvirt attach
the new driver
 volumes to QEMU, the same as sheepdog),

https://github.com/openstack/nova/blob/master/nova/virt/libvirt/driver.py

4, Should i have to do any other stuffs?



-- 
Thanks
Harry Wei

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


Re: [Openstack] [Openstack-dev][Sheepdog]Add a new driver for Openstack Cinder like Sheepdog volumes

2013-01-18 Thread MORITA Kazutaka
At Fri, 18 Jan 2013 22:56:38 +0800,
harryxiyou wrote:
 
 Hi Morita and other developers,
 
 If i add a QEMU/Libvirt driver(the same as Sheepdog volumes driver in
 Openstack Cinder branch) to let Openstack Cinder support a new block-level
 storage system, I should change following stuffs, right?
 
 1, Add a driver file to the dir in Openstack Cinder branch(the same as
 sheepdog.py),
   https://github.com/openstack/cinder/blob/master/cinder/volume/drivers
 2, Change the file in Openstack Nova branch(Let libvirt attach HLFS volumes
 to QEMU, the same as sheepdog),
   
 https://github.com/openstack/nova/blob/master/nova/virt/libvirt/driver.py
 
 Do I should change/add any other files for Openstack? Cloud anyone give me
 some suggestions?Thanks in advance ;-)

The answer depends on the protocol between QEMU and HLFS.  What is
used for accessing HLFS volumes from QEMU?  Is it iSCSI, NFS, or
something else?

Thanks,

Kazutaka

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


Re: [Openstack] [Openstack-dev][Sheepdog]Add a new driver for Openstack Cinder like Sheepdog volumes

2013-01-18 Thread harryxiyou
On Sat, Jan 19, 2013 at 12:24 PM, MORITA Kazutaka
morita.kazut...@gmail.com wrote:
 At Fri, 18 Jan 2013 22:56:38 +0800,
[...]

 The answer depends on the protocol between QEMU and HLFS.  What is
 used for accessing HLFS volumes from QEMU?  Is it iSCSI, NFS, or
 something else?


Actually, we just realize the block driver interfaces QEMU provided.
You can see our
patch from
http://code.google.com/p/cloudxy/source/browse/trunk/hlfs/patches/hlfs_driver_for_qemu.patch

And what about Sheepdog? What is used for accessing Sheepdog volumes from QEMU?
Is it iSCSI, NFS, or something else?

-- 
Thanks
Harry Wei

___
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] QUANTUM: DHCP issue with dnsmasq starting on network node under Folsom release on Ubuntu 12.04-1

2013-01-18 Thread Ivan
Hi all,
 I've hit a brick wall trying to get the dnsmasq process to bind
correctly and get itself ready to answer bootp/dhcp broadcasts.

Any ideas appreciated, please note this is Ubuntu 12.04-1(LTS) not 12.10.


*NICS*
1: lo: LOOPBACK,UP,LOWER_UP mtu 16436 qdisc noqueue state UNKNOWN 
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 http://127.0.0.1/8 scope host lo
inet6 ::1/128 scope host 
   valid_lft forever preferred_lft forever
2: eth0: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc mq state
UNKNOWN qlen 1000
link/ether 00:0c:29:77:74:5f brd ff:ff:ff:ff:ff:ff
inet 192.168.3.10/20 http://192.168.3.10/20 brd 192.168.15.255
scope global eth0
inet6 fe80::20c:29ff:fe77:745f/64 scope link 
   valid_lft forever preferred_lft forever
3: eth1: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc mq state
UNKNOWN qlen 1000
link/ether 00:0c:29:77:74:69 brd ff:ff:ff:ff:ff:ff
inet 10.10.10.10/32 http://10.10.10.10/32 scope global eth1
inet6 fe80::20c:29ff:fe77:7469/64 scope link 
   valid_lft forever preferred_lft forever
4: eth2: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc mq state
UNKNOWN qlen 1000
link/ether 00:0c:29:77:74:73 brd ff:ff:ff:ff:ff:ff
inet6 fe80::20c:29ff:fe77:7473/64 scope link 
   valid_lft forever preferred_lft forever
6: br-int: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc noqueue
state UNKNOWN 
link/ether 62:66:0f:50:4b:4f brd ff:ff:ff:ff:ff:ff
inet6 fe80::6066:fff:fe50:4b4f/64 scope link 
   valid_lft forever preferred_lft forever
7: br-ex: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc noqueue state
UNKNOWN 
link/ether 00:0c:29:77:74:73 brd ff:ff:ff:ff:ff:ff
inet6 fe80::20c:29ff:fe77:7473/64 scope link 
   valid_lft forever preferred_lft forever
8: tapc0732abd-3b: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc
noqueue state UNKNOWN 
link/ether fe:29:1c:e6:18:41 brd ff:ff:ff:ff:ff:ff
inet 172.16.11.3/24 http://172.16.11.3/24 brd 172.16.11.255 scope
global tapc0732abd-3b
inet6 fe80::fc29:1cff:fee6:1841/64 scope link 
   valid_lft forever preferred_lft forever
9: br-tun: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc noqueue
state UNKNOWN 
link/ether b2:62:b5:4e:ea:4a brd ff:ff:ff:ff:ff:ff
inet6 fe80::b062:b5ff:fe4e:ea4a/64 scope link 
   valid_lft forever preferred_lft forever


*
*
*dnsmasq version*
root@quantum:/var/log/quantum# dnsmasq -version
Dnsmasq version 2.59  Copyright (c) 2000-2011 Simon Kelley
Compile time options IPv6 GNU-getopt DBus i18n DHCP TFTP conntrack IDN

*In dhcp-agent.log *
2013-01-18 21:56:49DEBUG [quantum.agent.dhcp_agent] Reusing existing
device: tapc0732abd-3b.
2013-01-18 21:56:49DEBUG [quantum.agent.linux.utils] Running
command: ip addr show tapc0732abd-3b permanent scope global
2013-01-18 21:56:49DEBUG [quantum.agent.linux.utils]
Command: ['ip', 'addr', 'show', 'tapc0732abd-3b', 'permanent', 'scope',
'global']
Exit code: 0
Stdout: '16: tapc0732abd-3b: BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP
mtu 1500 qdisc noqueue state UNKNOWN \nlink/ether fa:16:3e:f8:76:94
brd ff:ff:ff:ff:ff:ff\ninet 172.16.11.3/24 http://172.16.11.3/24
brd 172.16.11.255 scope global tapc0732abd-3b\n'
Stderr: ''
2013-01-18 21:56:49DEBUG [quantum.agent.linux.dhcp] Unable to access
/var/lib/quantum/dhcp/682d81ca-5ab9-490f-9397-ab28d9f3c850/pid
2013-01-18 21:56:49DEBUG [quantum.agent.linux.utils] Running
command: sudo /usr/bin/quantum-rootwrap /etc/quantum/rootwrap.conf
QUANTUM_RELAY_SOCKET_PATH=/var/lib/quantum/dhcp/lease_relay
QUANTUM_NETWORK_ID=682d81ca-5ab9-490f-9397-ab28d9f3c850 dnsmasq
--no-hosts --no-resolv --strict-order --bind-interfaces
--interface=tapc0732abd-3b --except-interface=lo --domain=openstacklocal
--pid-file=/var/lib/quantum/dhcp/682d81ca-5ab9-490f-9397-ab28d9f3c850/pid 
--dhcp-hostsfile=/var/lib/quantum/dhcp/682d81ca-5ab9-490f-9397-ab28d9f3c850/host
--dhcp-optsfile=/var/lib/quantum/dhcp/682d81ca-5ab9-490f-9397-ab28d9f3c850/opts
--dhcp-script=/usr/bin/quantum-dhcp-agent-dnsmasq-lease-update
--leasefile-ro --dhcp-range=set:tag0,172.16.11.0,static,120s
2013-01-18 21:56:49DEBUG [quantum.agent.linux.utils]

Command: ['sudo', '/usr/bin/quantum-rootwrap',
'/etc/quantum/rootwrap.conf',
'QUANTUM_RELAY_SOCKET_PATH=/var/lib/quantum/dhcp/lease_relay',
'QUANTUM_NETWORK_ID=682d81ca-5ab9-490f-9397-ab28d9f3c850', 'dnsmasq',
'--no-hosts', '--no-resolv', '--strict-order', '--bind-interfaces',
'--interface=tapc0732abd-3b', '--except-interface=lo',
'--domain=openstacklocal',
'--pid-file=/var/lib/quantum/dhcp/682d81ca-5ab9-490f-9397-ab28d9f3c850/pid',
'--dhcp-hostsfile=/var/lib/quantum/dhcp/682d81ca-5ab9-490f-9397-ab28d9f3c850/host',
'--dhcp-optsfile=/var/lib/quantum/dhcp/682d81ca-5ab9-490f-9397-ab28d9f3c850/opts',
'--dhcp-script=/usr/bin/quantum-dhcp-agent-dnsmasq-lease-update',
'--leasefile-ro', '--dhcp-range=set:tag0,172.16.11.0,static,120s']
Exit code: 2
Stdout: ''

Stderr: '\ndnsmasq: failed to create listening socket for 

[Openstack] Network setup - Swift / keystone location and configuraton?

2013-01-18 Thread Brian Ipsen
Hi

I am trying to figure out how to build a swift setup with Keystone identity 
management - and have the environment secured by a firewall.

I expect, that a number of proxy nodes are accessible through the firewall 
(traffic will be NAT'ed). The proxy nodes are connected to a private storage 
network (not accessible from the outside) on a second network interface. Will 
the keystone have to be on the public side of the proxy nodes - or can it be 
on the private side (see 
http://docs.openstack.org/trunk/openstack-object-storage/admin/content/example-object-storage-installation-architecture.html
 - here it is on the public side)

But I am not quite sure about the configuration of the different service when 
it comes to specifying the different URL's...
For example, for the Keystone service:

Assuming, that storage/swift nodes are located in the range 
172.21.100.20-172.21.100.80, the keystone server on 172.21.100.10 - and the 
proxies on 172.21.100.100-172.21.100.120 (and external 
10.32.30.10-10.32.30.30). What would be the correct IP's to use on this command 
?
keystone service-create --name keystone --type=identity --description Keystone 
Identity Service
keystone endpoint-create --region RegionOne --service-id $KEYSVC_ID --publicurl 
'http://x.x.x.x5000/v2.0' --adminurl 'http://x.x.x.x:35357/v2.0' --internalurl 
'http://x.x.x.x:5000/v2.0'

And for swift:
keystone service-create --name keystone --type=identity --description Swift 
Storage Service
keystone endpoint-create --service-id $SWIFTSVC_ID --publicurl 
'http://x.x.x.x:8080/v1/AUTH_\$(tenant_id)s' --adminurl ' 
http://x.x.x.x:8080/v1/AUTH_\$(tenant_id)s ' --internalurl ' 
http://x.x.x.x:8080/v1/AUTH_\$(tenant_id)s '

Regards
Brian

___
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 Fixed: precise_grizzly_ceilometer_trunk #52

2013-01-18 Thread openstack-testing-bot
Title: precise_grizzly_ceilometer_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_ceilometer_trunk/52/Project:precise_grizzly_ceilometer_trunkDate of build:Fri, 18 Jan 2013 05:31:09 -0500Build duration:3 min 21 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesUpdate v2 API for WSME code reorgby doug.hellmanneditceilometer/api/controllers/v2.pyeditdoc/source/conf.pyConsole Output[...truncated 4921 lines...]Checking signature on .changesGood signature on /tmp/tmpJrqxPF/ceilometer_2013.1+git201301180531~precise-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmpJrqxPF/ceilometer_2013.1+git201301180531~precise-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading ceilometer_2013.1+git201301180531~precise-0ubuntu1.dsc: done.  Uploading ceilometer_2013.1+git201301180531~precise.orig.tar.gz: done.  Uploading ceilometer_2013.1+git201301180531~precise-0ubuntu1.debian.tar.gz: done.  Uploading ceilometer_2013.1+git201301180531~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-grizzly', 'ceilometer_2013.1+git201301180531~precise-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/c/ceilometer/ceilometer-agent-central_2013.1+git201301161107~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-agent-compute_2013.1+git201301161107~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-api_2013.1+git201301161107~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-collector_2013.1+git201301161107~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-common_2013.1+git201301161107~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/python-ceilometer_2013.1+git201301161107~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/ceilometer/precise-grizzly']Pushed up to revision 12.INFO:root:Storing current commit for next build: 1a28437725a01058cbe26f921e3695a7c03d0eceINFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/ceilometer/grizzly /tmp/tmpJrqxPF/ceilometermk-build-deps -i -r -t apt-get -y /tmp/tmpJrqxPF/ceilometer/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 49c4fb39f81c173f3a28c47cbb1415792ad4d4bb..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/ceilometer/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201301180531~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [1a28437] Update v2 API for WSME code reorgdch -a [c5658f6] Fixes a minor documentation typodch -a [4aa5dfd] Peg the version of Ming used in testsdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC ceilometer_2013.1+git201301180531~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A ceilometer_2013.1+git201301180531~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing ceilometer_2013.1+git201301180531~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-grizzly ceilometer_2013.1+git201301180531~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/ceilometer/precise-grizzlyEmail 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: raring_grizzly_ceilometer_trunk #51

2013-01-18 Thread openstack-testing-bot
Title: raring_grizzly_ceilometer_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_ceilometer_trunk/51/Project:raring_grizzly_ceilometer_trunkDate of build:Fri, 18 Jan 2013 05:31:09 -0500Build duration:5 min 34 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesUpdate v2 API for WSME code reorgby doug.hellmanneditdoc/source/conf.pyeditceilometer/api/controllers/v2.pyConsole Output[...truncated 6256 lines...]Checking signature on .changesGood signature on /tmp/tmpc282H6/ceilometer_2013.1+git201301180531~raring-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmpc282H6/ceilometer_2013.1+git201301180531~raring-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading ceilometer_2013.1+git201301180531~raring-0ubuntu1.dsc: done.  Uploading ceilometer_2013.1+git201301180531~raring.orig.tar.gz: done.  Uploading ceilometer_2013.1+git201301180531~raring-0ubuntu1.debian.tar.gz: done.  Uploading ceilometer_2013.1+git201301180531~raring-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', 'raring-grizzly', 'ceilometer_2013.1+git201301180531~raring-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/c/ceilometer/ceilometer-agent-central_2013.1+git201301161115~raring-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-agent-compute_2013.1+git201301161115~raring-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-api_2013.1+git201301161115~raring-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-collector_2013.1+git201301161115~raring-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-common_2013.1+git201301161115~raring-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/python-ceilometer_2013.1+git201301161115~raring-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/ceilometer/raring-grizzly']Pushed up to revision 12.INFO:root:Storing current commit for next build: 1a28437725a01058cbe26f921e3695a7c03d0eceINFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/ceilometer/grizzly /tmp/tmpc282H6/ceilometermk-build-deps -i -r -t apt-get -y /tmp/tmpc282H6/ceilometer/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 49c4fb39f81c173f3a28c47cbb1415792ad4d4bb..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/ceilometer/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201301180531~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [1a28437] Update v2 API for WSME code reorgdch -a [c5658f6] Fixes a minor documentation typodch -a [4aa5dfd] Peg the version of Ming used in testsdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC ceilometer_2013.1+git201301180531~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A ceilometer_2013.1+git201301180531~raring-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing ceilometer_2013.1+git201301180531~raring-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include raring-grizzly ceilometer_2013.1+git201301180531~raring-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/ceilometer/raring-grizzlyEmail 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_grizzly_quantum_trunk #209

2013-01-18 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/209/Project:precise_grizzly_quantum_trunkDate of build:Fri, 18 Jan 2013 08:32:18 -0500Build duration:1 min 51 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd a common test case for Port Binding Extensionby motokieditquantum/plugins/openvswitch/ovs_quantum_plugin.pyaddquantum/tests/unit/_test_extension_portbindings.pyeditquantum/tests/unit/openvswitch/test_openvswitch_plugin.pyeditquantum/tests/unit/linuxbridge/test_linuxbridge_plugin.pyConsole Output[...truncated 2963 lines...]dch -a [c58bdd3] Refactor hyperv plugin and agent.dch -a [3964475] Update Oslo rpc moduledch -a [8adb519] Provide atomic database access nvp plugindch -a [26332dc] _validate_security_groups_on_port was not validating external_idsdch -a [cb3384f] Update WebOb version to >=1.2dch -a [dfebeb7] Ensure that agents also set control_exchangedch -a [1a76d75] Add a common test case for Port Binding Extensiondch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [4970636] Fix ATTR_NOT_SPECIFIED comparison errorsdch -a [2d4431d] Add migration for network bindings in NVP plugindch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-aa0ea354-cfb4-4ec2-92a7-1710e75d8d00', '-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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-aa0ea354-cfb4-4ec2-92a7-1710e75d8d00', '-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: raring_grizzly_quantum_trunk #214

2013-01-18 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/214/Project:raring_grizzly_quantum_trunkDate of build:Fri, 18 Jan 2013 08:34:10 -0500Build duration:3 min 30 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd a common test case for Port Binding Extensionby motokieditquantum/tests/unit/openvswitch/test_openvswitch_plugin.pyaddquantum/tests/unit/_test_extension_portbindings.pyeditquantum/plugins/openvswitch/ovs_quantum_plugin.pyeditquantum/tests/unit/linuxbridge/test_linuxbridge_plugin.pyConsole Output[...truncated 3592 lines...]dch -a [8adb519] Provide atomic database access nvp plugindch -a [26332dc] _validate_security_groups_on_port was not validating external_idsdch -a [cb3384f] Update WebOb version to >=1.2dch -a [dfebeb7] Ensure that agents also set control_exchangedch -a [1a76d75] Add a common test case for Port Binding Extensiondch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [4970636] Fix ATTR_NOT_SPECIFIED comparison errorsdch -a [2d4431d] Add migration for network bindings in NVP plugindch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [faa1733] Use default_notification_level when notificationdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedch -a [cfcbc7a] Port to argparse based cfgdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-6b4153ea-5ada-4232-a9cb-67d0f9274852', '-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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-6b4153ea-5ada-4232-a9cb-67d0f9274852', '-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: raring_grizzly_keystone_trunk #91

2013-01-18 Thread openstack-testing-bot
Title: raring_grizzly_keystone_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_keystone_trunk/91/Project:raring_grizzly_keystone_trunkDate of build:Fri, 18 Jan 2013 08:29:22 -0500Build duration:8 min 48 secBuild cause:Started by user anonymousBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesNo ChangesConsole Output[...truncated 5735 lines...]Version: 2013.1+git201301180829~raring-0ubuntu1Finished at 20130118-0838Build needed 00:05:45, 12948k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'keystone_2013.1+git201301180829~raring-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'keystone_2013.1+git201301180829~raring-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/keystone/grizzly /tmp/tmpMPDNO5/keystonemk-build-deps -i -r -t apt-get -y /tmp/tmpMPDNO5/keystone/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 42bd9c7740808bef57d22e950ff8aae326a2212e..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/keystone/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201301180829~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [ed252e0] Allow running of sql against the live DB.dch -a [f6b133d] Test that you can undo & re-apply all migrationsdch -a [acc810d] downgrade user and tenant normalized tables downgraded such that sqlite is supported, toodch -a [52da32c] Auto-detect max SQL migrationdch -a [6c6915b] Safer data migrationsdch -a [36c3b2e] Sync base identity Driver defs with SQL driverdch -a [f237a67] Fix i18n of string templates.dch -a [7a4e373] Enhance wsgi to listen on ipv6 addressdch -a [9c2c4ec] add database string field length checkdch -a [57f1e30] Autoload schema before creating FK's (bug 1098174)dch -a [9089d8e] reorder tables for deletedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC keystone_2013.1+git201301180829~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A keystone_2013.1+git201301180829~raring-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'keystone_2013.1+git201301180829~raring-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 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'keystone_2013.1+git201301180829~raring-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_grizzly_nova_trunk #491

2013-01-18 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/491/Project:precise_grizzly_nova_trunkDate of build:Fri, 18 Jan 2013 13:01:14 -0500Build duration:5 min 0 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0Changesdont allow crs in the codeby sdagueedittools/hacking.pyeditHACKING.rstConsole Output[...truncated 5893 lines...]dch -a [f0539d4] Reduce number of iptable-save restore loopsdch -a [1c7d4fb] Clean up get_instance_id_by_floating_addressdch -a [7855afe] Move migration_get_..._by_host_and_node to conductordch -a [41e0b40] Make resource tracker use conductor for migration updatesdch -a [a0ae2e2] minor improvements to nova/tests/test_metadata.pydch -a [4b9bd91] Cells: Add some cells support to admin_actions extensiondch -a [fc42f76] Populate service list with availability zone and correct unit testdch -a [fa96bbf] Add 'devname' to nova.network.model.VIF classdch -a [a0c3e67] Use testrepository setuptools support.dch -a [12e38d9] Cleaning up exception handlingdch -a [6b4ad2d] Cells: Add cells API extensiondch -a [f6c205f] More HostAPI() cleanup for cells.dch -a [3824352] Renames the new os-networks extensiondch -a [6130aac] enables admin to view instance fault "details"dch -a [327989e] Fix problem with ipv6 link-local address(es)dch -a [313279f] enable hacking.py self testsdch -a [71fecfa] Correct docstring on sizelimit middleware.dch -a [b71a459] sync latest log and lockutils from oslodch -a [1e1a454] Fix nova.availability_zones docstringdch -a [1dacde8] use postgresql INET datatype for storing IPsdch -a [e0ac5be] Cells: Commit resize quota reservations immediatelydch -a [0668194] Move network call from compute API to the managerdch -a [bc7dc55] Make sure reboot_instance uses updated instancedch -a [f51a285] Implements getPasswordData for ec2dch -a [3b5679e] Validated device_name value in block device mapdch -a [733712b] Expand quota loggingdch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-d731c46c-0c29-413f-9f30-029e10b47e9a', '-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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-d731c46c-0c29-413f-9f30-029e10b47e9a', '-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: raring_grizzly_nova_trunk #499

2013-01-18 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/499/Project:raring_grizzly_nova_trunkDate of build:Fri, 18 Jan 2013 13:02:15 -0500Build duration:5 min 33 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0Changesdont allow crs in the codeby sdagueeditHACKING.rstedittools/hacking.pyConsole Output[...truncated 4470 lines...]dch -a [39f80b8] Adding configdrive to xenapi.dch -a [3b5679e] Validated device_name value in block device mapdch -a [038ca9b] Fix libvirt resume function call to get_domain_xmldch -a [96c04dd] Make it clearer that network.api.API is nova-network specific.dch -a [97f0ec7] Access instance as dict, not object in xenapidch -a [733712b] Expand quota loggingdch -a [745335b] Move logic from os-api-host into computedch -a [7a77dd7] Create a directory for servicegroup drivers.dch -a [5731852] Move update_instance_info_cache to conductor.dch -a [bda08f6] Change ComputerDriver.legacy_nwinfo to raise by default.dch -a [3934fa5] Cleanup pyflakes in nova-managedch -a [ce098cc] Add user/tenant shim to RequestContextdch -a [3a0eb6d] Add host name to log message for _local_deletedch -a [4babf7d] Make Quantum plugin fill in the 'bridge' namedch -a [f863697] Make nova network manager fill in vif_typedch -a [67cd497] Add some constants to the network model for drivers to usedch -a [bcb9983] Move libvirt VIF XML config into designer.pydch -a [567bbd1] Remove bogus 'unplug' calls from libvirt VIF testdch -a [abc9a0d] Update instance's cell_name in API cell.dch -a [f362b36] Fix test cases in integrated.test_multiprocess_apidch -a [35328dd] Added sample tests to FlavorSwap API.dch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [73cb9f6] Fix pyflakes issues in integrated testsdch -a [477722a] Fix lintstack check for multi-patch reviewsdch -a [680a3ce] xenapi: Remove dead code, moves, testsdch -a [4ff4edd] Upgrade WebOb to 1.2.3dch -a [e87c241] Allow pinging own float when using fixed gatewaydch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-e323623d-ad4b-4528-8cbb-250ba373e49a', '-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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-e323623d-ad4b-4528-8cbb-250ba373e49a', '-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_grizzly_nova_trunk #492

2013-01-18 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/492/Project:precise_grizzly_nova_trunkDate of build:Fri, 18 Jan 2013 13:31:11 -0500Build duration:3 min 57 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesMakes sure compute doesnt crash on failed resume.by vishvanandaeditnova/tests/compute/test_compute.pyeditnova/compute/manager.pyCells: Fix for relaying instance info_cache updatesby cbehrenseditnova/db/api.pyConsole Output[...truncated 5899 lines...]dch -a [f0539d4] Reduce number of iptable-save restore loopsdch -a [1c7d4fb] Clean up get_instance_id_by_floating_addressdch -a [7855afe] Move migration_get_..._by_host_and_node to conductordch -a [41e0b40] Make resource tracker use conductor for migration updatesdch -a [a0ae2e2] minor improvements to nova/tests/test_metadata.pydch -a [4b9bd91] Cells: Add some cells support to admin_actions extensiondch -a [fc42f76] Populate service list with availability zone and correct unit testdch -a [fa96bbf] Add 'devname' to nova.network.model.VIF classdch -a [a0c3e67] Use testrepository setuptools support.dch -a [12e38d9] Cleaning up exception handlingdch -a [6b4ad2d] Cells: Add cells API extensiondch -a [f6c205f] More HostAPI() cleanup for cells.dch -a [3824352] Renames the new os-networks extensiondch -a [6130aac] enables admin to view instance fault "details"dch -a [327989e] Fix problem with ipv6 link-local address(es)dch -a [313279f] enable hacking.py self testsdch -a [71fecfa] Correct docstring on sizelimit middleware.dch -a [b71a459] sync latest log and lockutils from oslodch -a [1e1a454] Fix nova.availability_zones docstringdch -a [1dacde8] use postgresql INET datatype for storing IPsdch -a [e0ac5be] Cells: Commit resize quota reservations immediatelydch -a [0668194] Move network call from compute API to the managerdch -a [bc7dc55] Make sure reboot_instance uses updated instancedch -a [f51a285] Implements getPasswordData for ec2dch -a [3b5679e] Validated device_name value in block device mapdch -a [733712b] Expand quota loggingdch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-5ff2a741-cd22-456a-916a-2150d32a5cd5', '-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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-5ff2a741-cd22-456a-916a-2150d32a5cd5', '-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_grizzly_quantum_trunk #210

2013-01-18 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/210/Project:precise_grizzly_quantum_trunkDate of build:Fri, 18 Jan 2013 14:01:10 -0500Build duration:1 min 48 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd help strings to config file options in Quantum code.by kmesteryeditquantum/common/config.pyeditquantum/debug/debug_agent.pyeditquantum/agent/metadata/agent.pyeditquantum/plugins/metaplugin/common/config.pyeditquantum/agent/dhcp_agent.pyConsole Output[...truncated 2966 lines...]dch -a [c58bdd3] Refactor hyperv plugin and agent.dch -a [3964475] Update Oslo rpc moduledch -a [8adb519] Provide atomic database access nvp plugindch -a [26332dc] _validate_security_groups_on_port was not validating external_idsdch -a [cb3384f] Update WebOb version to >=1.2dch -a [dfebeb7] Ensure that agents also set control_exchangedch -a [1a76d75] Add a common test case for Port Binding Extensiondch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [4970636] Fix ATTR_NOT_SPECIFIED comparison errorsdch -a [2d4431d] Add migration for network bindings in NVP plugindch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-59e0cb54-c444-4853-a6b9-f2213df251c8', '-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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-59e0cb54-c444-4853-a6b9-f2213df251c8', '-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_grizzly_nova_trunk #493

2013-01-18 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/493/Project:precise_grizzly_nova_trunkDate of build:Fri, 18 Jan 2013 15:01:11 -0500Build duration:3 min 23 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesSave password set through xen agent.by vishvanandaeditnova/virt/xenapi/agent.pyConsole Output[...truncated 5902 lines...]dch -a [f0539d4] Reduce number of iptable-save restore loopsdch -a [1c7d4fb] Clean up get_instance_id_by_floating_addressdch -a [7855afe] Move migration_get_..._by_host_and_node to conductordch -a [41e0b40] Make resource tracker use conductor for migration updatesdch -a [a0ae2e2] minor improvements to nova/tests/test_metadata.pydch -a [4b9bd91] Cells: Add some cells support to admin_actions extensiondch -a [fc42f76] Populate service list with availability zone and correct unit testdch -a [fa96bbf] Add 'devname' to nova.network.model.VIF classdch -a [a0c3e67] Use testrepository setuptools support.dch -a [12e38d9] Cleaning up exception handlingdch -a [6b4ad2d] Cells: Add cells API extensiondch -a [f6c205f] More HostAPI() cleanup for cells.dch -a [3824352] Renames the new os-networks extensiondch -a [6130aac] enables admin to view instance fault "details"dch -a [327989e] Fix problem with ipv6 link-local address(es)dch -a [313279f] enable hacking.py self testsdch -a [71fecfa] Correct docstring on sizelimit middleware.dch -a [b71a459] sync latest log and lockutils from oslodch -a [1e1a454] Fix nova.availability_zones docstringdch -a [1dacde8] use postgresql INET datatype for storing IPsdch -a [e0ac5be] Cells: Commit resize quota reservations immediatelydch -a [0668194] Move network call from compute API to the managerdch -a [bc7dc55] Make sure reboot_instance uses updated instancedch -a [f51a285] Implements getPasswordData for ec2dch -a [3b5679e] Validated device_name value in block device mapdch -a [733712b] Expand quota loggingdch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-41534ed1-45a8-4851-93a2-b12a8ee633f4', '-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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-41534ed1-45a8-4851-93a2-b12a8ee633f4', '-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: raring_grizzly_nova_trunk #501

2013-01-18 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/501/Project:raring_grizzly_nova_trunkDate of build:Fri, 18 Jan 2013 15:01:13 -0500Build duration:5 min 33 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesSave password set through xen agent.by vishvanandaeditnova/virt/xenapi/agent.pyConsole Output[...truncated 4479 lines...]dch -a [39f80b8] Adding configdrive to xenapi.dch -a [3b5679e] Validated device_name value in block device mapdch -a [038ca9b] Fix libvirt resume function call to get_domain_xmldch -a [96c04dd] Make it clearer that network.api.API is nova-network specific.dch -a [97f0ec7] Access instance as dict, not object in xenapidch -a [733712b] Expand quota loggingdch -a [745335b] Move logic from os-api-host into computedch -a [7a77dd7] Create a directory for servicegroup drivers.dch -a [5731852] Move update_instance_info_cache to conductor.dch -a [bda08f6] Change ComputerDriver.legacy_nwinfo to raise by default.dch -a [3934fa5] Cleanup pyflakes in nova-managedch -a [ce098cc] Add user/tenant shim to RequestContextdch -a [3a0eb6d] Add host name to log message for _local_deletedch -a [4babf7d] Make Quantum plugin fill in the 'bridge' namedch -a [f863697] Make nova network manager fill in vif_typedch -a [67cd497] Add some constants to the network model for drivers to usedch -a [bcb9983] Move libvirt VIF XML config into designer.pydch -a [567bbd1] Remove bogus 'unplug' calls from libvirt VIF testdch -a [abc9a0d] Update instance's cell_name in API cell.dch -a [f362b36] Fix test cases in integrated.test_multiprocess_apidch -a [35328dd] Added sample tests to FlavorSwap API.dch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [73cb9f6] Fix pyflakes issues in integrated testsdch -a [477722a] Fix lintstack check for multi-patch reviewsdch -a [680a3ce] xenapi: Remove dead code, moves, testsdch -a [4ff4edd] Upgrade WebOb to 1.2.3dch -a [e87c241] Allow pinging own float when using fixed gatewaydch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-526914ab-45e0-40f1-8570-33352ce42264', '-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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-526914ab-45e0-40f1-8570-33352ce42264', '-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: raring_grizzly_nova_trunk #502

2013-01-18 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/502/Project:raring_grizzly_nova_trunkDate of build:Fri, 18 Jan 2013 18:31:11 -0500Build duration:4 min 18 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesRemove some db calls from db servicegroup driver.by rbryanteditnova/servicegroup/drivers/db.pyeditnova/service.pyeditnova/db/sqlalchemy/api.pyAdd service_update to conductor.by rbryanteditnova/tests/conductor/test_conductor.pyeditnova/conductor/api.pyeditnova/conductor/rpcapi.pyeditnova/conductor/manager.pyUse conductor in the servicegroup db driver.by rbryanteditnova/service.pyeditnova/servicegroup/drivers/db.pyeditnova/servicegroup/api.pyConsole Output[...truncated 4488 lines...]dch -a [39f80b8] Adding configdrive to xenapi.dch -a [3b5679e] Validated device_name value in block device mapdch -a [038ca9b] Fix libvirt resume function call to get_domain_xmldch -a [96c04dd] Make it clearer that network.api.API is nova-network specific.dch -a [97f0ec7] Access instance as dict, not object in xenapidch -a [733712b] Expand quota loggingdch -a [745335b] Move logic from os-api-host into computedch -a [7a77dd7] Create a directory for servicegroup drivers.dch -a [5731852] Move update_instance_info_cache to conductor.dch -a [bda08f6] Change ComputerDriver.legacy_nwinfo to raise by default.dch -a [3934fa5] Cleanup pyflakes in nova-managedch -a [ce098cc] Add user/tenant shim to RequestContextdch -a [3a0eb6d] Add host name to log message for _local_deletedch -a [4babf7d] Make Quantum plugin fill in the 'bridge' namedch -a [f863697] Make nova network manager fill in vif_typedch -a [67cd497] Add some constants to the network model for drivers to usedch -a [bcb9983] Move libvirt VIF XML config into designer.pydch -a [567bbd1] Remove bogus 'unplug' calls from libvirt VIF testdch -a [abc9a0d] Update instance's cell_name in API cell.dch -a [f362b36] Fix test cases in integrated.test_multiprocess_apidch -a [35328dd] Added sample tests to FlavorSwap API.dch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [73cb9f6] Fix pyflakes issues in integrated testsdch -a [477722a] Fix lintstack check for multi-patch reviewsdch -a [680a3ce] xenapi: Remove dead code, moves, testsdch -a [4ff4edd] Upgrade WebOb to 1.2.3dch -a [e87c241] Allow pinging own float when using fixed gatewaydch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-56d75bfa-f9c9-44bc-9534-e4caba8314f9', '-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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-56d75bfa-f9c9-44bc-9534-e4caba8314f9', '-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