*** lujinluo has joined #openstack-neutron | 00:00 | |
*** sdague has quit IRC | 00:02 | |
*** david-lyle has joined #openstack-neutron | 00:02 | |
*** claudiub has quit IRC | 00:02 | |
*** Swami has quit IRC | 00:02 | |
*** ijw has joined #openstack-neutron | 00:04 | |
*** edmondsw has quit IRC | 00:06 | |
*** shashank has joined #openstack-neutron | 00:07 | |
*** shashank has left #openstack-neutron | 00:08 | |
*** irenab has quit IRC | 00:13 | |
*** sindhude has quit IRC | 00:15 | |
*** jamielennox is now known as jamielennox|away | 00:16 | |
*** david-lyle has quit IRC | 00:18 | |
*** wolverineav has quit IRC | 00:21 | |
openstackgerrit | Terry Wilson proposed openstack/neutron: WIP: Wait for vswitchd to add interfaces in native ovsdb https://review.openstack.org/344859 | 00:31 |
---|---|---|
*** wolverineav has joined #openstack-neutron | 00:33 | |
*** banix has joined #openstack-neutron | 00:36 | |
*** jerrygb has joined #openstack-neutron | 00:36 | |
*** sindhude has joined #openstack-neutron | 00:39 | |
*** jerrygb has quit IRC | 00:41 | |
*** shivrao has quit IRC | 00:41 | |
*** hoangcx has joined #openstack-neutron | 00:42 | |
*** svenkat has joined #openstack-neutron | 00:42 | |
abhiraut | ping armax | 00:43 |
*** wolverineav has quit IRC | 00:43 | |
armax | abhiraut: pong | 00:43 |
abhiraut | what should the body for subport add req look like? | 00:43 |
abhiraut | http://specs.openstack.org/openstack/neutron-specs/specs/mitaka/vlan-aware-vms.html | 00:44 |
abhiraut | is this spec up to date wrt to the REST API impact | 00:44 |
armax | yes, but hang on | 00:44 |
armax | abhiraut: let me give you the authoritive and final guide | 00:44 |
abhiraut | ok | 00:44 |
armax | https://github.com/openstack/neutron/blob/master/neutron/tests/tempest/api/test_trunk.py#L118 | 00:45 |
armax | and the API tests in genreal | 00:45 |
abhiraut | with a body like that .. i hit Invalid data format | 00:45 |
abhiraut | https://github.com/openstack/neutron/blob/master/neutron/extensions/trunk.py#L35 | 00:45 |
armax | genral | 00:45 |
abhiraut | looking | 00:45 |
armax | what’s the body like? | 00:45 |
armax | another frame of reference | 00:45 |
armax | https://github.com/openstack/neutron-lib/blob/master/neutron_lib/tests/unit/api/test_validators.py#L871 | 00:46 |
abhiraut | i was sending {'subports': [{'segmentation_id': '100', 'port_id': u'd5433bac-e5e9-435d-ae6f-777bd52ee06b', 'segmentation_type': 'vlan'}]}) | 00:46 |
*** wolverineav has joined #openstack-neutron | 00:46 | |
* armax parses | 00:47 | |
armax | abhiraut: it needs to be a plain [{"port_id": "4902522e-5dcc-4086-8493-dcfa982c9fde", "segmentation_type": "vlan", "segmentation_id": 2}] | 00:47 |
abhiraut | okay.. does neutronclient serialize list as a body param.. while making a PUT call? | 00:47 |
armax | abhiraut: hang on | 00:48 |
armax | let me check something | 00:48 |
*** kevo has quit IRC | 00:49 | |
*** beagles_l8r is now known as beagles | 00:49 | |
armax | abhiraut: bear with me | 00:50 |
abhiraut | armax: https://github.com/openstack/python-neutronclient/blob/master/neutronclient/v2_0/client.py#L300 | 00:50 |
*** wolverineav has quit IRC | 00:51 | |
openstackgerrit | Dongcan Ye proposed openstack/neutron-vpnaas: Install Libreswan for CentOS7 https://review.openstack.org/344723 | 00:52 |
abhiraut | so when i pass body as list, it fails in serialization and when i push it as a dict, it fails on neutron with invalid type.. making sense? | 00:52 |
armax | you’re saying on add_subport, rather than create right? | 00:52 |
abhiraut | yes on add_subport | 00:52 |
armax | abhiraut: let me double check | 00:53 |
abhiraut | ok | 00:53 |
armax | abhiraut: I have done this a few times with curl | 00:53 |
armax | I just need to find the history | 00:53 |
*** svenkat has quit IRC | 00:54 | |
abhiraut | curl will work if body is list.. neutronclient on the other hand making the request will fail to serialize the list | 00:54 |
*** stanzgy has joined #openstack-neutron | 00:55 | |
armax | abhiraut: ah | 00:55 |
armax | that I haven’t tried | 00:55 |
armax | that’s odd | 00:55 |
abhiraut | i tried | 00:56 |
abhiraut | https://github.com/openstack/python-neutronclient/blob/master/neutronclient/v2_0/client.py#L300 | 00:56 |
abhiraut | ^^ | 00:56 |
*** gongysh has joined #openstack-neutron | 00:56 | |
armax | how are you testing this with the neutronclient? | 00:56 |
abhiraut | wrote the subport.py file and trying out the commands | 00:56 |
*** shashank_hegde has quit IRC | 00:57 | |
armax | using the neutron CLI? | 00:57 |
abhiraut | hooked into osc plugin .. so osc cli | 00:57 |
*** ijw has quit IRC | 00:57 | |
armax | what’s the CLI format you adopted? | 00:57 |
abhiraut | so i added a new command.. openstack network trunk subport add —subport <> <trunk> | 00:58 |
armax | syntax | 00:58 |
armax | I mean | 00:58 |
*** gouthamr_ has joined #openstack-neutron | 00:58 | |
*** ijw has joined #openstack-neutron | 00:58 | |
abhiraut | openstack network trunk subport add --sub-port port=s-port,seg-type=vlan,seg-id=100 trunky | 00:58 |
*** zhhuabj has quit IRC | 00:59 | |
*** eilert has quit IRC | 00:59 | |
armax | that’s what the port-create command adds fixed ips | 00:59 |
armax | so it looks okay to me | 00:59 |
openstackgerrit | qinchunhua proposed openstack/neutron: Recover one file permission https://review.openstack.org/345114 | 00:59 |
armax | it would be good to compare what the two bodies look like | 01:00 |
armax | before they get serialized | 01:00 |
abhiraut | looking | 01:00 |
openstackgerrit | qinchunhua proposed openstack/neutron: Recover one file permission https://review.openstack.org/345114 | 01:00 |
*** gouthamr has quit IRC | 01:01 | |
abhiraut | looks like a dict to me.. i found something like this-> body['fixed_ips'] = [ips] | 01:02 |
*** mfuruta has joined #openstack-neutron | 01:03 | |
*** ijw has quit IRC | 01:03 | |
armax | abhiraut: so what’s the stuff before the serialization? | 01:05 |
abhiraut | armax: for ports? | 01:05 |
armax | when you hit https://github.com/openstack/python-neutronclient/blob/master/neutronclient/v2_0/client.py#L292 | 01:06 |
armax | what’s data like? | 01:06 |
*** trananhkma has joined #openstack-neutron | 01:06 | |
abhiraut | for ports its a list | 01:06 |
abhiraut | oops | 01:06 |
abhiraut | a dict | 01:06 |
abhiraut | https://github.com/openstack/python-neutronclient/blob/master/neutronclient/neutron/v2_0/port.py#L89 | 01:07 |
*** mfuruta has quit IRC | 01:07 | |
*** mfuruta has joined #openstack-neutron | 01:07 | |
abhiraut | ^^ it forms the body which is fed into serialize | 01:07 |
armax | but that shouldn’t be needed | 01:08 |
armax | that’s perhaps it’s on create | 01:09 |
abhiraut | yes .. on create.. lemme check update | 01:09 |
armax | on PUT a body like a list of dicts would suffice | 01:09 |
armax | abhiraut: a good reference command would be router-interface-add | 01:10 |
armax | abhiraut: which is similar to what you need here | 01:10 |
abhiraut | ok .. ill check on it and get back to you | 01:10 |
armax | with the difference that you’re specifying the sub-port with UUID, segId and segType | 01:10 |
armax | ok | 01:10 |
*** banix has quit IRC | 01:11 | |
*** zhhuabj has joined #openstack-neutron | 01:11 | |
*** zhhuabj_ has joined #openstack-neutron | 01:14 | |
*** sindhude has quit IRC | 01:14 | |
*** gongysh has quit IRC | 01:14 | |
abhiraut | armax: https://github.com/openstack/python-neutronclient/blob/master/neutronclient/tests/unit/test_cli20_router.py#L288 | 01:15 |
abhiraut | tests are creating a dict | 01:15 |
armax | abhiraut: that’s because the command only accepts a single entry | 01:16 |
armax | ie. either the port or the subnet | 01:16 |
armax | abhiraut: is it possible we found an inconsistency somewhere? | 01:16 |
abhiraut | none the less.. wont all neutron commands go via def do_request | 01:17 |
armax | abhiraut: it’s possible that neutronclient always expects the format {‘key’: [{}]} | 01:18 |
abhiraut | armax: in which case the body will be validated during serialize | 01:18 |
*** zhhuabj has quit IRC | 01:18 | |
armax | is there a stacktrace you can share with me? | 01:18 |
abhiraut | armax: yes that is my finding .. ill double check them though | 01:18 |
*** sindhude has joined #openstack-neutron | 01:19 | |
abhiraut | not really… i can put in some print commands for you to see :) or i can push this patch i have and you could download and try? | 01:19 |
armax | abhiraut: that’s another way to go | 01:20 |
abhiraut | lemme remove some useless prints and push it | 01:20 |
armax | abhiraut: ok | 01:22 |
*** yb has joined #openstack-neutron | 01:23 | |
*** sindhude has quit IRC | 01:24 | |
*** xagent has quit IRC | 01:27 | |
*** Sukhdev has quit IRC | 01:30 | |
*** fnaval has quit IRC | 01:30 | |
*** sindhude has joined #openstack-neutron | 01:31 | |
*** s3wong has quit IRC | 01:32 | |
openstackgerrit | Abhishek Raut proposed openstack/python-neutronclient: Add trunk commands to neutronclient https://review.openstack.org/340624 | 01:35 |
*** abhiraut has quit IRC | 01:35 | |
*** harlowja has joined #openstack-neutron | 01:35 | |
*** harlowja has quit IRC | 01:35 | |
*** abhiraut has joined #openstack-neutron | 01:35 | |
abhiraut | armax: pushed a patch | 01:36 |
*** harlowja has joined #openstack-neutron | 01:36 | |
*** shivrao has joined #openstack-neutron | 01:37 | |
*** jerrygb has joined #openstack-neutron | 01:37 | |
*** fnaval has joined #openstack-neutron | 01:37 | |
*** maishsk has joined #openstack-neutron | 01:38 | |
armax | abhiraut: ack | 01:41 |
*** jerrygb has quit IRC | 01:42 | |
openstackgerrit | Abhishek Raut proposed openstack/python-neutronclient: Add trunk commands to openstackclient https://review.openstack.org/340624 | 01:42 |
*** bochi has joined #openstack-neutron | 01:43 | |
*** tbachman_ has joined #openstack-neutron | 01:44 | |
*** abhiraut1 has joined #openstack-neutron | 01:44 | |
*** abhiraut has quit IRC | 01:44 | |
*** tbachman has quit IRC | 01:46 | |
*** tbachman_ is now known as tbachman | 01:46 | |
*** sindhude has quit IRC | 01:47 | |
openstackgerrit | Abhishek Raut proposed openstack/python-neutronclient: Add trunk commands to openstackclient https://review.openstack.org/340624 | 01:47 |
*** abhiraut has joined #openstack-neutron | 01:48 | |
*** abhiraut1 has quit IRC | 01:48 | |
*** marun has joined #openstack-neutron | 01:51 | |
*** abhiraut has quit IRC | 01:56 | |
*** st8less has quit IRC | 01:56 | |
*** namnh has joined #openstack-neutron | 01:59 | |
*** maishsk_ has joined #openstack-neutron | 02:01 | |
*** salv-orl_ has joined #openstack-neutron | 02:02 | |
*** salv-orl_ has quit IRC | 02:02 | |
*** salv-orl_ has joined #openstack-neutron | 02:03 | |
*** maishsk has quit IRC | 02:03 | |
*** maishsk_ is now known as maishsk | 02:03 | |
openstackgerrit | Lujin Luo proposed openstack/neutron: Add a unique key to port_id in routerports table https://review.openstack.org/285048 | 02:04 |
*** salv-orlando has quit IRC | 02:05 | |
*** salv-orl_ has quit IRC | 02:11 | |
*** jerrygb has joined #openstack-neutron | 02:21 | |
*** shivrao has quit IRC | 02:22 | |
*** david-lyle has joined #openstack-neutron | 02:24 | |
*** ranjithd has joined #openstack-neutron | 02:24 | |
*** EinstCra_ has joined #openstack-neutron | 02:25 | |
*** marun has quit IRC | 02:29 | |
*** EinstCrazy has quit IRC | 02:29 | |
*** david-lyle has quit IRC | 02:29 | |
*** gvrangan has quit IRC | 02:31 | |
*** jhershbe__ has joined #openstack-neutron | 02:32 | |
*** shashank_hegde has joined #openstack-neutron | 02:38 | |
*** hoonetorg has quit IRC | 02:40 | |
*** gouthamr has joined #openstack-neutron | 02:42 | |
*** gouthamr_ has quit IRC | 02:42 | |
*** yamahata has quit IRC | 02:44 | |
*** iyamahat has quit IRC | 02:45 | |
*** yamamoto_ has joined #openstack-neutron | 02:46 | |
*** harlowja has quit IRC | 02:46 | |
*** yuanying has quit IRC | 02:46 | |
*** hoonetorg has joined #openstack-neutron | 02:53 | |
*** gongysh has joined #openstack-neutron | 02:57 | |
*** shashank_hegde has quit IRC | 03:06 | |
*** maishsk_ has joined #openstack-neutron | 03:07 | |
*** maishsk has quit IRC | 03:07 | |
*** maishsk_ is now known as maishsk | 03:07 | |
*** amotoki has quit IRC | 03:08 | |
*** shashank_hegde has joined #openstack-neutron | 03:09 | |
*** salv-orlando has joined #openstack-neutron | 03:09 | |
*** zhhuabj_ has quit IRC | 03:14 | |
*** maishsk has quit IRC | 03:14 | |
*** shashank_hegde has quit IRC | 03:15 | |
*** maishsk has joined #openstack-neutron | 03:16 | |
*** shashank_hegde has joined #openstack-neutron | 03:16 | |
*** EinstCra_ has quit IRC | 03:18 | |
*** salv-orlando has quit IRC | 03:19 | |
*** maishsk has quit IRC | 03:20 | |
*** amotoki has joined #openstack-neutron | 03:22 | |
*** itisha has joined #openstack-neutron | 03:24 | |
*** EinstCrazy has joined #openstack-neutron | 03:24 | |
*** lujinluo has quit IRC | 03:25 | |
*** tflynn has joined #openstack-neutron | 03:25 | |
*** tflynn_ has joined #openstack-neutron | 03:26 | |
*** gabriel-bezerra has quit IRC | 03:27 | |
*** dave-mccowan has quit IRC | 03:27 | |
*** clenimar has quit IRC | 03:28 | |
*** tflynn has quit IRC | 03:30 | |
*** gabriel-bezerra has joined #openstack-neutron | 03:30 | |
*** amotoki has quit IRC | 03:30 | |
*** yamamoto_ has quit IRC | 03:31 | |
*** zhhuabj_ has joined #openstack-neutron | 03:31 | |
*** julim has quit IRC | 03:31 | |
*** clenimar has joined #openstack-neutron | 03:32 | |
*** gouthamr has quit IRC | 03:33 | |
*** amotoki has joined #openstack-neutron | 03:35 | |
*** wu_ng has joined #openstack-neutron | 03:36 | |
*** gongysh has quit IRC | 03:37 | |
*** ijw has joined #openstack-neutron | 03:37 | |
*** wu_ng has quit IRC | 03:37 | |
*** sindhude has joined #openstack-neutron | 03:39 | |
*** maishsk has joined #openstack-neutron | 03:40 | |
*** Alex_Stef has joined #openstack-neutron | 03:41 | |
*** sterdnotshaken has joined #openstack-neutron | 03:41 | |
*** ijw has quit IRC | 03:41 | |
*** julim has joined #openstack-neutron | 03:44 | |
*** sterdnotshaken has quit IRC | 03:46 | |
openstackgerrit | Hong Hui Xiao proposed openstack/neutron: Enable create and delete segments in ML2 https://review.openstack.org/317358 | 03:46 |
*** ijw has joined #openstack-neutron | 03:46 | |
*** tflynn_ has quit IRC | 03:47 | |
*** yuanying has joined #openstack-neutron | 03:48 | |
*** ijw_ has joined #openstack-neutron | 03:48 | |
*** ijw has quit IRC | 03:52 | |
*** djan has quit IRC | 03:57 | |
*** lujinluo has joined #openstack-neutron | 03:58 | |
*** mkolesni has joined #openstack-neutron | 03:58 | |
*** mickeys has quit IRC | 04:00 | |
*** mickeys has joined #openstack-neutron | 04:00 | |
*** jamespage has quit IRC | 04:01 | |
*** jamespage has joined #openstack-neutron | 04:01 | |
*** garyk1 has joined #openstack-neutron | 04:03 | |
*** yuanying_ has joined #openstack-neutron | 04:03 | |
*** diga has joined #openstack-neutron | 04:04 | |
*** gabriel-bezerra has quit IRC | 04:04 | |
*** clenimar has quit IRC | 04:04 | |
*** diga has quit IRC | 04:05 | |
*** mickeys has quit IRC | 04:05 | |
*** julim has quit IRC | 04:05 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements https://review.openstack.org/343371 | 04:06 |
*** diga has joined #openstack-neutron | 04:06 | |
*** yuanying has quit IRC | 04:06 | |
*** gabriel-bezerra has joined #openstack-neutron | 04:09 | |
*** clenimar has joined #openstack-neutron | 04:10 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-neutronclient: Updated from global requirements https://review.openstack.org/340055 | 04:10 |
*** shashank_hegde has quit IRC | 04:11 | |
*** sterdnotshaken has joined #openstack-neutron | 04:13 | |
*** jhershbe__ has quit IRC | 04:13 | |
*** sindhude has quit IRC | 04:13 | |
*** shashank_hegde has joined #openstack-neutron | 04:14 | |
*** sterdnotshaken has quit IRC | 04:17 | |
*** sdague has joined #openstack-neutron | 04:17 | |
*** salv-orlando has joined #openstack-neutron | 04:18 | |
*** amotoki has quit IRC | 04:18 | |
*** shashank_hegde has quit IRC | 04:18 | |
*** yfried has joined #openstack-neutron | 04:20 | |
*** wolverineav has joined #openstack-neutron | 04:24 | |
*** wolverineav has quit IRC | 04:28 | |
*** salv-orlando has quit IRC | 04:28 | |
*** yamamoto_ has joined #openstack-neutron | 04:29 | |
*** diga has quit IRC | 04:29 | |
*** wolverineav has joined #openstack-neutron | 04:30 | |
*** liusheng has quit IRC | 04:33 | |
*** liusheng has joined #openstack-neutron | 04:34 | |
*** wolverineav has quit IRC | 04:34 | |
*** amotoki has joined #openstack-neutron | 04:35 | |
*** amotoki_ has joined #openstack-neutron | 04:36 | |
*** vishwanathj is now known as vishwanathj_zzz | 04:39 | |
*** shashank_hegde has joined #openstack-neutron | 04:39 | |
*** amotoki has quit IRC | 04:40 | |
*** emagana has joined #openstack-neutron | 04:41 | |
*** gvrangan has joined #openstack-neutron | 04:42 | |
*** ranjithd has quit IRC | 04:46 | |
*** thorst_ has joined #openstack-neutron | 04:47 | |
*** Sukhdev has joined #openstack-neutron | 04:47 | |
openstackgerrit | tonytan4ever proposed openstack/neutron: Add subresources support for PECAN https://review.openstack.org/336188 | 04:47 |
*** jhershbe__ has joined #openstack-neutron | 04:48 | |
*** yfried has quit IRC | 04:50 | |
*** sdague has quit IRC | 04:51 | |
*** yfried has joined #openstack-neutron | 04:53 | |
*** aranjan has joined #openstack-neutron | 04:53 | |
*** pbandark has joined #openstack-neutron | 04:54 | |
*** yamahata has joined #openstack-neutron | 04:57 | |
*** salv-orlando has joined #openstack-neutron | 04:59 | |
*** gvrangan has quit IRC | 05:03 | |
*** yuanying has joined #openstack-neutron | 05:03 | |
*** emagana has quit IRC | 05:05 | |
*** sputnik13 has joined #openstack-neutron | 05:06 | |
*** yuanying_ has quit IRC | 05:06 | |
*** kfox1111 has quit IRC | 05:06 | |
*** hynekm has joined #openstack-neutron | 05:07 | |
*** thorst_ has quit IRC | 05:07 | |
*** ekuris has joined #openstack-neutron | 05:07 | |
*** thorst_ has joined #openstack-neutron | 05:08 | |
*** shivrao has joined #openstack-neutron | 05:09 | |
*** jerrygb has quit IRC | 05:09 | |
*** shivrao_ has joined #openstack-neutron | 05:11 | |
*** vikram has joined #openstack-neutron | 05:12 | |
*** shivrao has quit IRC | 05:14 | |
*** shivrao_ is now known as shivrao | 05:14 | |
*** wolverineav has joined #openstack-neutron | 05:14 | |
*** hynekm has quit IRC | 05:14 | |
*** kfox1111 has joined #openstack-neutron | 05:15 | |
*** pgadiya has joined #openstack-neutron | 05:16 | |
*** yfried has quit IRC | 05:17 | |
*** yb has quit IRC | 05:19 | |
*** wolverineav has quit IRC | 05:19 | |
*** buttercup has joined #openstack-neutron | 05:21 | |
*** jprovazn has joined #openstack-neutron | 05:22 | |
*** thorst_ has quit IRC | 05:25 | |
*** prateek has joined #openstack-neutron | 05:26 | |
*** ratailor has joined #openstack-neutron | 05:29 | |
*** yfried has joined #openstack-neutron | 05:31 | |
*** afazekas|dentist is now known as afazekas | 05:32 | |
openstackgerrit | tonytan4ever proposed openstack/neutron: Refactoring Agent DB model https://review.openstack.org/330870 | 05:33 |
*** buttercup has quit IRC | 05:37 | |
*** mohankumar has joined #openstack-neutron | 05:38 | |
*** buttercup has joined #openstack-neutron | 05:38 | |
*** harlowja has joined #openstack-neutron | 05:39 | |
*** thorst_ has joined #openstack-neutron | 05:41 | |
*** iyamahat has joined #openstack-neutron | 05:42 | |
*** EinstCrazy has quit IRC | 05:43 | |
*** bks has joined #openstack-neutron | 05:45 | |
*** thorst_ has quit IRC | 05:46 | |
*** oshvartz has joined #openstack-neutron | 05:51 | |
*** Sukhdev has quit IRC | 05:52 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Improve the segmentation ID validation logic https://review.openstack.org/345173 | 05:53 |
*** mosulica has joined #openstack-neutron | 05:53 | |
*** sridharg has joined #openstack-neutron | 05:53 | |
*** gvrangan has joined #openstack-neutron | 05:54 | |
*** moshele has joined #openstack-neutron | 05:55 | |
*** wolverineav has joined #openstack-neutron | 05:58 | |
*** yb has joined #openstack-neutron | 06:02 | |
*** ijw_ has quit IRC | 06:03 | |
*** kobis has joined #openstack-neutron | 06:04 | |
*** harlowja has quit IRC | 06:04 | |
*** Murali_ has joined #openstack-neutron | 06:05 | |
*** Murali has quit IRC | 06:05 | |
*** Murali_ is now known as Murali | 06:05 | |
*** honghuixiao_ has quit IRC | 06:07 | |
*** javeriak has joined #openstack-neutron | 06:09 | |
*** claudiub has joined #openstack-neutron | 06:09 | |
*** yfried has quit IRC | 06:14 | |
*** aranjan has quit IRC | 06:15 | |
*** nherciu__ has joined #openstack-neutron | 06:15 | |
*** Murali_ has joined #openstack-neutron | 06:18 | |
*** anilvenkata has joined #openstack-neutron | 06:19 | |
*** Murali has quit IRC | 06:19 | |
*** Murali_ is now known as Murali | 06:20 | |
*** namnh has quit IRC | 06:20 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Revisit (add|remove)_subports request body https://review.openstack.org/345185 | 06:20 |
*** edand has joined #openstack-neutron | 06:23 | |
*** kawa2014 has joined #openstack-neutron | 06:24 | |
*** kobis has quit IRC | 06:26 | |
*** iyamahat has quit IRC | 06:28 | |
*** devvesa has joined #openstack-neutron | 06:30 | |
*** Dinesh_Bhor has joined #openstack-neutron | 06:32 | |
*** rubasov has joined #openstack-neutron | 06:34 | |
*** eric_lopez has joined #openstack-neutron | 06:35 | |
Dinesh_Bhor | armax, garyk1: Thanks, It was pending from last 4 months https://review.openstack.org/#/c/295651/ | 06:36 |
armax | Dinesh_Bhor: that’s because it’s a useless change | 06:36 |
armax | typos are a way of life | 06:36 |
armax | can’t fix them all | 06:36 |
*** fifieldt has joined #openstack-neutron | 06:37 | |
*** elo has quit IRC | 06:39 | |
*** andreas_s has joined #openstack-neutron | 06:39 | |
*** tesseract- has joined #openstack-neutron | 06:39 | |
garyk1 | Dinesh_Bhor: armax thinks that changes like this are awesome :) | 06:40 |
*** armax has quit IRC | 06:41 | |
Dinesh_Bhor | garyk1: :) | 06:42 |
*** ijw has joined #openstack-neutron | 06:44 | |
*** iyamahat has joined #openstack-neutron | 06:45 | |
*** ijw_ has joined #openstack-neutron | 06:45 | |
*** hynekm has joined #openstack-neutron | 06:46 | |
*** edand has quit IRC | 06:46 | |
*** edand has joined #openstack-neutron | 06:47 | |
*** namnh has joined #openstack-neutron | 06:48 | |
*** ijw has quit IRC | 06:49 | |
*** salv-orlando has quit IRC | 06:52 | |
*** itzikb has joined #openstack-neutron | 06:53 | |
*** iranzo has joined #openstack-neutron | 06:53 | |
*** claudiub has quit IRC | 06:53 | |
*** iranzo has quit IRC | 06:53 | |
*** iranzo has joined #openstack-neutron | 06:53 | |
*** shivrao has quit IRC | 06:54 | |
*** Alex_Stef has quit IRC | 06:56 | |
openstackgerrit | tonytan4ever proposed openstack/neutron: Refactoring Agent DB model https://review.openstack.org/330870 | 06:57 |
*** karthiks has quit IRC | 06:57 | |
*** javeriak has quit IRC | 06:57 | |
*** hoangcx_ has joined #openstack-neutron | 06:58 | |
*** nyechiel has joined #openstack-neutron | 06:59 | |
*** hoangcx has quit IRC | 06:59 | |
*** marun_ has joined #openstack-neutron | 07:02 | |
*** iranzo has quit IRC | 07:02 | |
*** mickeys has joined #openstack-neutron | 07:03 | |
*** pcaruana has joined #openstack-neutron | 07:03 | |
*** iranzo has joined #openstack-neutron | 07:03 | |
*** iranzo has joined #openstack-neutron | 07:03 | |
*** javeriak has joined #openstack-neutron | 07:04 | |
*** sleviim has joined #openstack-neutron | 07:06 | |
*** namnh has quit IRC | 07:06 | |
openstackgerrit | Swapnil Kulkarni (coolsvap) proposed openstack/neutron: [WIP] Testing latest u-c https://review.openstack.org/303346 | 07:06 |
*** nmagnezi has joined #openstack-neutron | 07:06 | |
*** rcernin has joined #openstack-neutron | 07:07 | |
*** mickeys has quit IRC | 07:08 | |
*** obondarev has joined #openstack-neutron | 07:09 | |
*** rcernin has quit IRC | 07:10 | |
*** karthiks has joined #openstack-neutron | 07:10 | |
*** rcernin has joined #openstack-neutron | 07:10 | |
*** Alex_Stef has joined #openstack-neutron | 07:11 | |
*** maishsk has quit IRC | 07:12 | |
*** fzdarsky has joined #openstack-neutron | 07:12 | |
*** maishsk has joined #openstack-neutron | 07:13 | |
*** maishsk has joined #openstack-neutron | 07:14 | |
*** emagana has joined #openstack-neutron | 07:17 | |
*** nherciu_ has joined #openstack-neutron | 07:18 | |
*** kobis has joined #openstack-neutron | 07:19 | |
*** iyamahat has quit IRC | 07:20 | |
openstackgerrit | Swapnil Kulkarni (coolsvap) proposed openstack/os-vif: Remove discover from test-requirements https://review.openstack.org/345199 | 07:22 |
*** nherciu__ has quit IRC | 07:22 | |
*** emagana has quit IRC | 07:22 | |
*** jhershbe__ has quit IRC | 07:22 | |
*** fzdarsky has quit IRC | 07:22 | |
*** jlanoux has joined #openstack-neutron | 07:24 | |
*** rkukura_ has joined #openstack-neutron | 07:29 | |
*** Alex_Stef has quit IRC | 07:29 | |
*** rkukura has quit IRC | 07:29 | |
*** rkukura_ is now known as rkukura | 07:29 | |
openstackgerrit | Merged openstack/neutron: Updated from global requirements https://review.openstack.org/343371 | 07:30 |
openstackgerrit | Hirofumi Ichihara proposed openstack/python-neutronclient: Don't load non json body https://review.openstack.org/345204 | 07:31 |
*** bailin has joined #openstack-neutron | 07:32 | |
*** emagana has joined #openstack-neutron | 07:33 | |
*** fzdarsky has joined #openstack-neutron | 07:36 | |
*** emagana has quit IRC | 07:37 | |
openstackgerrit | Vasyl Saienko proposed openstack/neutron: WIP: Add Ironic notifications https://review.openstack.org/345211 | 07:38 |
openstackgerrit | Hirofumi Ichihara proposed openstack/neutron: Fix serializer with None https://review.openstack.org/291545 | 07:39 |
*** Alex_Stef has joined #openstack-neutron | 07:40 | |
*** p01nt3r75 has joined #openstack-neutron | 07:42 | |
*** akamyshnikova__ has quit IRC | 07:45 | |
*** wolverineav has quit IRC | 07:46 | |
*** yfried has joined #openstack-neutron | 07:48 | |
*** vsaienk0 has joined #openstack-neutron | 07:50 | |
vsaienk0 | Morning Neutron team, could you please review https://review.openstack.org/#/c/339129/ | 07:50 |
*** saggi has joined #openstack-neutron | 07:50 | |
*** salv-orlando has joined #openstack-neutron | 07:53 | |
*** sofie has quit IRC | 07:53 | |
*** wolverineav has joined #openstack-neutron | 07:53 | |
*** ygbo has joined #openstack-neutron | 07:53 | |
*** moshele has quit IRC | 07:55 | |
*** moshele has joined #openstack-neutron | 07:55 | |
*** fzdarsky has quit IRC | 07:57 | |
*** wolverineav has quit IRC | 07:57 | |
*** zzzeek has quit IRC | 08:00 | |
*** zzzeek has joined #openstack-neutron | 08:00 | |
*** mvk has quit IRC | 08:02 | |
*** karthiks has quit IRC | 08:04 | |
*** salv-orlando has quit IRC | 08:05 | |
openstackgerrit | Reedip proposed openstack/neutron: Add name and desc to networksegments table https://review.openstack.org/293305 | 08:06 |
*** bfernando has joined #openstack-neutron | 08:08 | |
*** ushkalim has joined #openstack-neutron | 08:09 | |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/neutron: [WIP] Testing latest u-c https://review.openstack.org/303346 | 08:10 |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/neutron: [WIP] Testing latest u-c https://review.openstack.org/303346 | 08:10 |
*** shashank_hegde has quit IRC | 08:12 | |
*** tyrola has joined #openstack-neutron | 08:12 | |
*** ijw_ has quit IRC | 08:14 | |
*** ijw has joined #openstack-neutron | 08:15 | |
*** thorst_ has joined #openstack-neutron | 08:17 | |
*** karthiks has joined #openstack-neutron | 08:17 | |
*** buttercup has quit IRC | 08:19 | |
*** sputnik13 has quit IRC | 08:19 | |
*** ijw has quit IRC | 08:20 | |
*** jlibosva has joined #openstack-neutron | 08:20 | |
openstackgerrit | Pablo Iranzo Gómez proposed openstack/neutron-lib: Add validator to test integers https://review.openstack.org/337237 | 08:20 |
*** rdo has quit IRC | 08:21 | |
*** thorst_ has quit IRC | 08:21 | |
*** mickeys has joined #openstack-neutron | 08:24 | |
*** rdo has joined #openstack-neutron | 08:24 | |
*** eezhova has joined #openstack-neutron | 08:26 | |
openstackgerrit | Merged openstack/neutron: Release note: fix a typo in add-time-stamp-fields https://review.openstack.org/336897 | 08:26 |
*** mickeys has quit IRC | 08:27 | |
*** zhhuabj_ has quit IRC | 08:27 | |
*** tflynn has joined #openstack-neutron | 08:27 | |
*** mickeys has joined #openstack-neutron | 08:27 | |
*** rdo has quit IRC | 08:28 | |
*** vikram has quit IRC | 08:29 | |
openstackgerrit | edan david proposed openstack/neutron: Validate device to mac instead of port id to mac https://review.openstack.org/345247 | 08:29 |
openstackgerrit | Merged openstack/neutron: Add information about contract creation exceptions in devref https://review.openstack.org/338197 | 08:29 |
*** rdo has joined #openstack-neutron | 08:30 | |
*** mhickey has joined #openstack-neutron | 08:30 | |
*** buttercup has joined #openstack-neutron | 08:31 | |
*** mickeys has quit IRC | 08:31 | |
*** rdo has quit IRC | 08:34 | |
*** rdo has joined #openstack-neutron | 08:35 | |
*** zhhuabj_ has joined #openstack-neutron | 08:39 | |
*** hoangcx_ has quit IRC | 08:39 | |
*** davidsha has joined #openstack-neutron | 08:39 | |
*** ociuhandu has joined #openstack-neutron | 08:39 | |
*** namnh has joined #openstack-neutron | 08:40 | |
*** trananhkma has quit IRC | 08:41 | |
*** irenab has joined #openstack-neutron | 08:41 | |
openstackgerrit | ChangBo Guo(gcb) proposed openstack/neutron: Use is_valid_port from oslo.utils https://review.openstack.org/326863 | 08:42 |
*** buttercup has quit IRC | 08:42 | |
*** hoangcx has joined #openstack-neutron | 08:43 | |
openstackgerrit | ChangBo Guo(gcb) proposed openstack/neutron: Deprecate method get_ipv6_addr_by_EUI64 https://review.openstack.org/328976 | 08:43 |
*** wolverineav has joined #openstack-neutron | 08:44 | |
lujinluo | Hi Neutron developers, anyone interested in reviewing two simple patches related to database? check here https://review.openstack.org/#/c/276018/ https://review.openstack.org/#/c/285048/ thanks in advance | 08:45 |
openstackgerrit | Kevin Benton proposed openstack/neutron: Don't interrupt device loop for missing device https://review.openstack.org/345253 | 08:45 |
*** manikanta_tadi has joined #openstack-neutron | 08:47 | |
*** amotoki has joined #openstack-neutron | 08:47 | |
*** bvandewa has quit IRC | 08:48 | |
*** wolverineav has quit IRC | 08:49 | |
*** fzdarsky has joined #openstack-neutron | 08:51 | |
namnh | kevinbenton: Hello Mr.Kevin. Are you free? Could you give me 5 minutes to discuss my bug (overlap CIDR) with you, I would like to report a new information to you? | 08:51 |
kevinbenton | namnh: sure | 08:52 |
namnh | kevinbenton: Thanks! First, please open your patch: https://review.openstack.org/#/c/303966/ . If I add this line of code: revises_on_change = ('network_id', ) in Subnet class, like this: http://paste.openstack.org/show/538925/ | 08:53 |
namnh | The result of this is that my bus can be fixed. Essentially, Two requests to create subnet are concurrent request. At the time neutron-server detect this case base on the value revision_number of network so one of two request have to retry request. | 08:53 |
*** wolverineav has joined #openstack-neutron | 08:53 | |
namnh | kevinbenton: How do you think about this idea? | 08:53 |
*** marun_ has quit IRC | 08:54 | |
kevinbenton | namnh: right, that is a possible fix | 08:54 |
kevinbenton | namnh: the only issue is that it won't generate a network update notification (e.g. in ML2 or to the agents) | 08:54 |
kevinbenton | namnh: even though the revision has changed | 08:54 |
*** bvandewa has joined #openstack-neutron | 08:54 | |
kevinbenton | namnh: backends that keep track of revisions may think there was a lost update somewhere | 08:55 |
*** xiaohhui has joined #openstack-neutron | 08:55 | |
*** tflynn has quit IRC | 08:56 | |
*** amotoki__ has joined #openstack-neutron | 08:56 | |
namnh | kevinbenton: Oh, I see. So we should not use this solution to fix my bug? | 08:56 |
namnh | kevinbenton: right? | 08:56 |
kevinbenton | namnh: well we can consider it | 08:56 |
kevinbenton | namnh: is the stored procedure not working out? | 08:56 |
*** amotoki__ has quit IRC | 08:57 | |
*** buttercup has joined #openstack-neutron | 08:58 | |
*** jhershbe__ has joined #openstack-neutron | 08:58 | |
*** amotoki_ has quit IRC | 08:59 | |
namnh | kevinbenton: No, I don't. Currently, I am working my patch: https://review.openstack.org/#/c/314054/ . I just found this solution so I would like to ask about that. | 08:59 |
kevinbenton | namnh: it does make things quite a bit simpler | 08:59 |
kevinbenton | namnh: the revises_on_change approach | 08:59 |
*** vikram has joined #openstack-neutron | 09:00 | |
namnh | kevinbenton: I think so too. should i push new patch set about this solution. How do you think? | 09:01 |
*** shangxdy has joined #openstack-neutron | 09:01 | |
*** wolverineav has quit IRC | 09:02 | |
*** tmorin has joined #openstack-neutron | 09:02 | |
*** mvk has joined #openstack-neutron | 09:02 | |
namnh | kevinbenton: For stored procedure. i am still working hard on it. It got a lot of attention from core-reviews. If you have time, please help me to take a look on it too. | 09:02 |
openstackgerrit | Nir Magnezi proposed openstack/neutron: Adds a custom reload command to ProcessManager https://review.openstack.org/345263 | 09:03 |
*** lixiaoy1_ has joined #openstack-neutron | 09:03 | |
*** salv-orlando has joined #openstack-neutron | 09:03 | |
*** thorst_ has joined #openstack-neutron | 09:04 | |
kevinbenton | namnh: the other issue is that it will make subnet creation more contentious | 09:04 |
kevinbenton | namnh: any two concurrent updates would end up issuing retry requests | 09:04 |
kevinbenton | namnh: even if they don't overlap | 09:04 |
kevinbenton | namnh: i think we should plan for the stored procedure for now | 09:04 |
kevinbenton | namnh: if that doesn't look like it will make it in time for newton we can switch to revises_on_update | 09:05 |
*** clsacramento has quit IRC | 09:05 | |
*** lujinluo has quit IRC | 09:06 | |
*** wolverineav has joined #openstack-neutron | 09:06 | |
*** isq has quit IRC | 09:07 | |
namnh | kevinbenton: Yes, I got it. I will continue with the stored procedure solution and report to you about this before end of newton. | 09:07 |
*** korzen_ has quit IRC | 09:08 | |
*** isq has joined #openstack-neutron | 09:08 | |
*** korzen_ has joined #openstack-neutron | 09:08 | |
*** thorst_ has quit IRC | 09:08 | |
namnh | kevinbenton: Absolutely ping you about it again. :-) | 09:09 |
kevinbenton | namnh: sounds good | 09:10 |
namnh | kevinbenton: Thanks for your support. | 09:11 |
kevinbenton | namnh: no prob | 09:12 |
*** jerrygb has joined #openstack-neutron | 09:13 | |
*** salv-orlando has quit IRC | 09:13 | |
*** wolverineav has quit IRC | 09:14 | |
openstackgerrit | bin proposed openstack/neutron: Remove test case that exist in Tempest repo https://review.openstack.org/345271 | 09:16 |
*** xiaohhui has quit IRC | 09:16 | |
*** xiaohhui has joined #openstack-neutron | 09:17 | |
*** jerrygb has quit IRC | 09:18 | |
*** buttercup has quit IRC | 09:18 | |
*** ijw has joined #openstack-neutron | 09:19 | |
*** shangxdy has quit IRC | 09:20 | |
*** sean-k-m1 has joined #openstack-neutron | 09:20 | |
*** xiaohhui has quit IRC | 09:21 | |
*** xiaohhui has joined #openstack-neutron | 09:21 | |
*** sean-k-mooney has quit IRC | 09:22 | |
*** mfuruta has quit IRC | 09:24 | |
*** wolverineav has joined #openstack-neutron | 09:27 | |
*** emagana has joined #openstack-neutron | 09:27 | |
*** buttercup has joined #openstack-neutron | 09:27 | |
*** javeriak has quit IRC | 09:29 | |
*** fzdarsky has quit IRC | 09:30 | |
*** tyrola has quit IRC | 09:31 | |
*** tyrola has joined #openstack-neutron | 09:31 | |
*** emagana has quit IRC | 09:31 | |
*** wolverineav has quit IRC | 09:31 | |
*** xiaohhui has quit IRC | 09:32 | |
*** xiaohhui has joined #openstack-neutron | 09:32 | |
*** ygbo has quit IRC | 09:33 | |
*** xiaohhui has quit IRC | 09:34 | |
*** xiaohhui has joined #openstack-neutron | 09:35 | |
*** yb has quit IRC | 09:36 | |
*** bailin has quit IRC | 09:36 | |
*** javeriak has joined #openstack-neutron | 09:38 | |
*** daemontool has joined #openstack-neutron | 09:41 | |
*** salv-orlando has joined #openstack-neutron | 09:43 | |
*** fzdarsky has joined #openstack-neutron | 09:44 | |
*** daemontool_ has joined #openstack-neutron | 09:44 | |
*** daemontool has quit IRC | 09:47 | |
*** ygbo has joined #openstack-neutron | 09:47 | |
*** javeriak_ has joined #openstack-neutron | 09:48 | |
*** javeriak has quit IRC | 09:48 | |
*** sbalukoff has quit IRC | 09:49 | |
*** pbandark has quit IRC | 09:50 | |
*** pbandark has joined #openstack-neutron | 09:50 | |
*** sbalukoff has joined #openstack-neutron | 09:51 | |
*** edand has quit IRC | 09:52 | |
*** namnh has quit IRC | 09:54 | |
*** obondarev has quit IRC | 09:56 | |
*** salv-orl_ has joined #openstack-neutron | 09:56 | |
*** obondarev has joined #openstack-neutron | 09:56 | |
openstackgerrit | Artur Korzeniewski proposed openstack/neutron: objects: Add update_fields method in base class. https://review.openstack.org/337539 | 09:58 |
*** lezbar has quit IRC | 09:59 | |
openstackgerrit | Sana Khan proposed openstack/neutron: OVSLibTestCase.test_db_find_column_type_list invalid match value for db_find https://review.openstack.org/345296 | 09:59 |
daemontool_ | hi Team, does anyone knows if SR-IOV is used for communications between 2 VMs in the same subnet, in the same compute node? | 09:59 |
*** salv-orlando has quit IRC | 10:00 | |
*** john-davidge has joined #openstack-neutron | 10:00 | |
*** iyamahat has joined #openstack-neutron | 10:01 | |
*** john-dav_ has joined #openstack-neutron | 10:02 | |
*** wolverineav has joined #openstack-neutron | 10:02 | |
*** xiaohhui has quit IRC | 10:02 | |
*** xiaohhui has joined #openstack-neutron | 10:03 | |
*** john-dav_ is now known as john-davidge_ | 10:03 | |
*** ygbo has quit IRC | 10:04 | |
*** salv-orlando has joined #openstack-neutron | 10:04 | |
*** john-davidge has quit IRC | 10:05 | |
*** gouthamr has joined #openstack-neutron | 10:06 | |
*** lezbar has joined #openstack-neutron | 10:06 | |
*** iyamahat has quit IRC | 10:06 | |
*** yamahata has quit IRC | 10:06 | |
*** amotoki has quit IRC | 10:07 | |
*** salv-orl_ has quit IRC | 10:08 | |
*** salv-orlando has quit IRC | 10:08 | |
*** xiaohhui has quit IRC | 10:09 | |
*** obondarev has quit IRC | 10:09 | |
*** wolverineav has quit IRC | 10:09 | |
*** tmorin has quit IRC | 10:10 | |
*** obondarev has joined #openstack-neutron | 10:11 | |
*** shangxdy has joined #openstack-neutron | 10:13 | |
*** jerrygb has joined #openstack-neutron | 10:14 | |
*** amotoki has joined #openstack-neutron | 10:15 | |
*** wolverineav has joined #openstack-neutron | 10:15 | |
*** ihrachys has joined #openstack-neutron | 10:15 | |
*** amotoki has quit IRC | 10:16 | |
openstackgerrit | Nguyen Phuong An proposed openstack/neutron-specs: (Operator-only) Logging API for security groups https://review.openstack.org/203509 | 10:19 |
*** wolverineav has quit IRC | 10:19 | |
*** obondarev has quit IRC | 10:20 | |
*** jerrygb has quit IRC | 10:20 | |
*** obondarev has joined #openstack-neutron | 10:20 | |
*** hoangcx has quit IRC | 10:22 | |
*** ygbo has joined #openstack-neutron | 10:22 | |
*** xiaohhui has joined #openstack-neutron | 10:23 | |
*** amotoki has joined #openstack-neutron | 10:24 | |
*** shangxdy has quit IRC | 10:24 | |
*** boden has joined #openstack-neutron | 10:27 | |
*** xiaohhui has quit IRC | 10:28 | |
*** xiaohhui has joined #openstack-neutron | 10:29 | |
*** itisha has quit IRC | 10:30 | |
*** shangxdy has joined #openstack-neutron | 10:32 | |
*** irenab has quit IRC | 10:32 | |
*** wolverineav has joined #openstack-neutron | 10:32 | |
*** xiaohhui has quit IRC | 10:34 | |
*** ihrachys has quit IRC | 10:36 | |
*** jlibosva has quit IRC | 10:36 | |
*** ihrachys has joined #openstack-neutron | 10:37 | |
*** wolverineav has quit IRC | 10:37 | |
*** jlibosva has joined #openstack-neutron | 10:38 | |
*** xiaohhui has joined #openstack-neutron | 10:40 | |
*** wolverineav has joined #openstack-neutron | 10:41 | |
*** rodrigods has quit IRC | 10:43 | |
*** rodrigods has joined #openstack-neutron | 10:44 | |
*** bvandewa has quit IRC | 10:44 | |
*** javeriak_ has quit IRC | 10:44 | |
*** xiaohhui has quit IRC | 10:44 | |
openstackgerrit | Reedip proposed openstack/neutron: L2-Adjacency support https://review.openstack.org/304647 | 10:46 |
*** bvandewa has joined #openstack-neutron | 10:47 | |
*** amotoki has quit IRC | 10:49 | |
*** manikanta_tadi has quit IRC | 10:49 | |
*** javeriak has joined #openstack-neutron | 10:50 | |
openstackgerrit | boden proposed openstack/neutron-lib: devref for public API docstring https://review.openstack.org/340580 | 10:51 |
*** buttercup has quit IRC | 10:52 | |
*** wolverineav has quit IRC | 10:53 | |
*** manikanta_tadi has joined #openstack-neutron | 10:55 | |
*** bvandewa has quit IRC | 10:55 | |
*** irenab has joined #openstack-neutron | 10:57 | |
*** irenab has quit IRC | 10:57 | |
*** wolverineav has joined #openstack-neutron | 10:58 | |
*** eezhova has quit IRC | 10:59 | |
ihrachys | kevinbenton: looks like grafana finally shows multinode grenade on par with dvr flavour of it and other multinode tempest jobs. | 11:00 |
kevinbenton | ihrachys: hooray! | 11:00 |
ihrachys | kevinbenton: I guess now we should land your patch and try to disable PUBLIC_BRIDGE_MTU on devstack-gate. | 11:00 |
ihrachys | then MTU refragmentation path will be triggered. | 11:01 |
*** wolverineav has quit IRC | 11:02 | |
kevinbenton | ihrachys: yeah | 11:03 |
kevinbenton | ihrachys: or if DF bit is set then ICMP responses | 11:03 |
ihrachys | kevinbenton: also of interest, I don't see failures for grenade in mitaka. not sure what's going on there :) | 11:04 |
ihrachys | but somehow it passes | 11:04 |
*** obondarev has quit IRC | 11:04 | |
openstackgerrit | Vasyl Saienko proposed openstack/neutron: Add BaremetalMechanismDriver driver. https://review.openstack.org/339129 | 11:05 |
*** nirmoy has joined #openstack-neutron | 11:07 | |
*** javeriak has quit IRC | 11:09 | |
*** gvrangan has quit IRC | 11:09 | |
*** wolverineav has joined #openstack-neutron | 11:11 | |
daemontool_ | just re asking again in case more engineers are online: does anyone knows if SR-IOV is used for communications between 2 VMs in the same subnet, in the same compute node? both VMs are set with SRIOV | 11:12 |
*** nirmoy has quit IRC | 11:14 | |
*** nirmoy has joined #openstack-neutron | 11:14 | |
*** maishsk has quit IRC | 11:15 | |
*** jerrygb has joined #openstack-neutron | 11:16 | |
*** rtheis has joined #openstack-neutron | 11:16 | |
openstackgerrit | Hirofumi Ichihara proposed openstack/python-neutronclient: Don't decode empty response body https://review.openstack.org/345204 | 11:17 |
*** yamamoto_ has quit IRC | 11:17 | |
*** abregman has joined #openstack-neutron | 11:19 | |
*** maishsk has joined #openstack-neutron | 11:20 | |
*** jerrygb has quit IRC | 11:21 | |
*** abregman has quit IRC | 11:21 | |
*** wolverineav has quit IRC | 11:22 | |
*** dave-mccowan has joined #openstack-neutron | 11:23 | |
*** maishsk_ has joined #openstack-neutron | 11:23 | |
*** maishsk has quit IRC | 11:25 | |
*** maishsk_ is now known as maishsk | 11:25 | |
*** ranjithd has joined #openstack-neutron | 11:25 | |
*** eezhova has joined #openstack-neutron | 11:29 | |
*** thorst_ has joined #openstack-neutron | 11:32 | |
*** xiaohhui has joined #openstack-neutron | 11:33 | |
*** zhhuabj_ has quit IRC | 11:33 | |
*** cbouch has joined #openstack-neutron | 11:33 | |
*** gouthamr has quit IRC | 11:35 | |
*** daemontool_ has quit IRC | 11:35 | |
*** ranjithd has quit IRC | 11:36 | |
*** thorst_ has quit IRC | 11:36 | |
*** wolverineav has joined #openstack-neutron | 11:37 | |
*** zhhuabj_ has joined #openstack-neutron | 11:37 | |
*** daemontool_ has joined #openstack-neutron | 11:38 | |
*** lucasagomes is now known as lucas-hungry | 11:42 | |
*** wolverineav has quit IRC | 11:42 | |
*** wolverineav has joined #openstack-neutron | 11:43 | |
*** obondarev has joined #openstack-neutron | 11:45 | |
*** tbachman_ has joined #openstack-neutron | 11:47 | |
*** wolverineav has quit IRC | 11:48 | |
*** obondarev has quit IRC | 11:48 | |
*** gouthamr has joined #openstack-neutron | 11:48 | |
*** tbachman has quit IRC | 11:50 | |
*** tbachman_ is now known as tbachman | 11:50 | |
*** xiaohhui has quit IRC | 11:50 | |
*** tmorin has joined #openstack-neutron | 11:50 | |
*** zhhuabj_ has quit IRC | 11:51 | |
*** wolverineav has joined #openstack-neutron | 11:53 | |
openstackgerrit | Carlos Goncalves proposed openstack/neutron: Fix module import path in RPC callback example https://review.openstack.org/344891 | 11:53 |
*** tmorin has quit IRC | 11:53 | |
*** tmorin has joined #openstack-neutron | 11:54 | |
*** yamamoto has joined #openstack-neutron | 11:54 | |
*** ociuhandu has quit IRC | 11:55 | |
*** javeriak has joined #openstack-neutron | 11:55 | |
*** jckasper has quit IRC | 11:56 | |
*** wolverineav has quit IRC | 11:57 | |
*** amuller has joined #openstack-neutron | 12:02 | |
*** yamamoto has quit IRC | 12:03 | |
*** yamamoto has joined #openstack-neutron | 12:03 | |
*** jckasper has joined #openstack-neutron | 12:03 | |
*** sdague has joined #openstack-neutron | 12:03 | |
*** john-davidge_ is now known as john-davidge | 12:04 | |
*** zhhuabj_ has joined #openstack-neutron | 12:04 | |
*** wolverineav has joined #openstack-neutron | 12:05 | |
*** daemontool__ has joined #openstack-neutron | 12:06 | |
*** yamamoto has quit IRC | 12:08 | |
*** yamamoto has joined #openstack-neutron | 12:09 | |
*** daemontool_ has quit IRC | 12:09 | |
*** wolverineav has quit IRC | 12:10 | |
openstackgerrit | Hirofumi Ichihara proposed openstack/neutron: Fix serializer with None https://review.openstack.org/291545 | 12:12 |
openstackgerrit | boden proposed openstack/neutron-lib: Update contributing doc https://review.openstack.org/331338 | 12:14 |
*** jerrygb has joined #openstack-neutron | 12:17 | |
*** garyk1 has quit IRC | 12:17 | |
*** jckasper has quit IRC | 12:19 | |
*** maishsk has quit IRC | 12:19 | |
*** shangxdy has quit IRC | 12:20 | |
*** jckasper has joined #openstack-neutron | 12:20 | |
*** jerrygb has quit IRC | 12:21 | |
*** mkolesni has quit IRC | 12:22 | |
*** eric_lopez has quit IRC | 12:24 | |
*** jckasper has quit IRC | 12:24 | |
*** eric_lopez has joined #openstack-neutron | 12:24 | |
*** edmondsw has joined #openstack-neutron | 12:28 | |
*** banix has joined #openstack-neutron | 12:28 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron-lib: Deprecate N523 check that forbids oslo.* imports https://review.openstack.org/345026 | 12:31 |
*** Alex_Stef has quit IRC | 12:32 | |
*** banix has quit IRC | 12:33 | |
*** banix has joined #openstack-neutron | 12:34 | |
*** techcet has joined #openstack-neutron | 12:34 | |
*** banix has quit IRC | 12:37 | |
*** stanzgy has quit IRC | 12:39 | |
*** sdague has quit IRC | 12:39 | |
*** maishsk has joined #openstack-neutron | 12:40 | |
openstackgerrit | Nir Magnezi proposed openstack/neutron: Adds a custom reload command to ProcessManager https://review.openstack.org/345263 | 12:41 |
*** javeriak has quit IRC | 12:43 | |
openstackgerrit | Nir Magnezi proposed openstack/neutron: Adds a custom reload callback to ProcessManager https://review.openstack.org/345263 | 12:44 |
*** edmondsw has quit IRC | 12:44 | |
*** edmondsw has joined #openstack-neutron | 12:45 | |
*** salv-orlando has joined #openstack-neutron | 12:45 | |
*** trevormc has joined #openstack-neutron | 12:45 | |
*** sindhude has joined #openstack-neutron | 12:46 | |
*** kbringard has joined #openstack-neutron | 12:47 | |
*** lucas-hungry is now known as lucasagomes | 12:49 | |
*** nirmoy has quit IRC | 12:49 | |
*** tpsilva has joined #openstack-neutron | 12:50 | |
*** salv-orlando has quit IRC | 12:51 | |
*** ratailor has quit IRC | 12:51 | |
*** brad_behle has quit IRC | 12:51 | |
*** nicolasbock has quit IRC | 12:52 | |
openstackgerrit | Artur Korzeniewski proposed openstack/neutron: objects: loading synthetic fields from defined ORM relationships. https://review.openstack.org/334380 | 12:52 |
*** obondarev has joined #openstack-neutron | 12:52 | |
*** nicolasbock has joined #openstack-neutron | 12:52 | |
*** nirmoy has joined #openstack-neutron | 12:53 | |
jlibosva | nmagnezi: ouch, I'm slow :) left comments in PS2 | 12:53 |
* nmagnezi looks | 12:53 | |
nmagnezi | jlibosva, you had a lot to say about the tests :D | 12:55 |
jlibosva | nmagnezi: not really, the general comment would probably be sufficient. The inline comments are just reasoning | 12:55 |
jlibosva | :) | 12:55 |
*** prateek has quit IRC | 12:56 | |
*** nirmoy has quit IRC | 13:00 | |
*** nirmoy has joined #openstack-neutron | 13:00 | |
*** julim has joined #openstack-neutron | 13:01 | |
*** manikanta_tadi has quit IRC | 13:02 | |
*** zkassab has joined #openstack-neutron | 13:03 | |
*** harbor has joined #openstack-neutron | 13:03 | |
*** harbor is now known as portdirect | 13:03 | |
*** jckasper has joined #openstack-neutron | 13:04 | |
nmagnezi | jlibosva, all done aside from your comment about testing the relation between enable and reload_cfg. the purpose of this was to test that the custom callback is being passed to reload_cfg. say I remove this test, what should be tested instead? (the reload_cfg tests remain and changed as you commented) | 13:05 |
jlibosva | nmagnezi: yeah, I don't think we should be testing that object was passed to some other method unless there is a benefit in it | 13:07 |
nmagnezi | jlibosva, , so I'll just remove test_enable_reload_cfg_and_custom_reload_command | 13:08 |
ihrachys | kevinbenton: I think we need your patch to switch to flat for external network to fix linuxbridge grenade multinode | 13:08 |
jlibosva | nmagnezi: such interaction is better to test on higher level - e.g. in functional test where you really use the custom_reload_callback | 13:08 |
ihrachys | kevinbenton: see http://logs.openstack.org/03/341103/2/experimental/gate-grenade-dsvm-neutron-linuxbridge-multinode-nv/d653e08/logs/worlddump-2016-07-21-114526.txt.gz, we have qg of 1400 because the network is vxlan. | 13:08 |
*** tbachman_ has joined #openstack-neutron | 13:08 | |
jlibosva | nmagnezi: yep, that is what I was suggesting | 13:08 |
ihrachys | kevinbenton: and since we set br-ex to 1450, and ssh from there, it does not get thru into the router | 13:08 |
*** tbachman has quit IRC | 13:09 | |
*** tbachman_ is now known as tbachman | 13:09 | |
jlibosva | nmagnezi: otherwise you end up testing 'how is it implemented' instead of its functionality | 13:09 |
ihrachys | kevinbenton: the job fails on 3 tests that trigger ssh into FIP | 13:09 |
kevinbenton | ihrachys: yeah, IIRC linux bridge jobs already use external_network_bridge='' | 13:09 |
ihrachys | kevinbenton: indeed | 13:09 |
kevinbenton | ihrachys: well that wouldn't matter either way with linuxbridge :) | 13:10 |
kevinbenton | ihrachys: both plug into the external network bridge | 13:10 |
kevinbenton | ihrachys: but yeah, external network needs correct encap type | 13:10 |
*** claudiub has joined #openstack-neutron | 13:11 | |
ihrachys | kevinbenton: I could also just set Q_ASSIGN_GATEWAY_TO_PUBLIC_BRIDGE in devstack-gate right? | 13:11 |
ihrachys | kevinbenton: /me thinks about the fact that devstack-gate is unbranched | 13:11 |
ihrachys | because otherwise we need to backport your patch too | 13:12 |
openstackgerrit | Nir Magnezi proposed openstack/neutron: Adds a custom reload callback to ProcessManager https://review.openstack.org/345263 | 13:12 |
*** thorst_ has joined #openstack-neutron | 13:12 | |
nmagnezi | jlibosva, all done :) | 13:12 |
*** anilvenkata has quit IRC | 13:13 | |
nmagnezi | jlibosva, oops o have a mistake.. sec | 13:13 |
nmagnezi | i | 13:13 |
kevinbenton | ihrachys: what's the order of operations for setting mtu on veth now? | 13:13 |
ihrachys | kevinbenton: ? you mean in relation to moving into a namespace? it's after it's moved | 13:14 |
nmagnezi | jlibosva, nop. it's good. I looked at the wrong patchset | 13:14 |
*** cleong has joined #openstack-neutron | 13:14 | |
*** eeiden has left #openstack-neutron | 13:15 | |
*** stackempty has joined #openstack-neutron | 13:16 | |
*** smatov has quit IRC | 13:16 | |
*** thorst_ has quit IRC | 13:17 | |
*** aqkhan has joined #openstack-neutron | 13:17 | |
kevinbenton | ihrachys: i was thinking the tap plugging into the bridge when it had a smaller mtu should have made the bridge downgrade its MTU | 13:18 |
*** jerrygb has joined #openstack-neutron | 13:18 | |
kevinbenton | ihrachys: but apparently the tap MTU just increased instead | 13:18 |
kevinbenton | ihrachys: http://logs.openstack.org/03/341103/2/experimental/gate-grenade-dsvm-neutron-linuxbridge-multinode-nv/d653e08/logs/old/screen-q-l3.txt.gz | 13:18 |
*** stackempty has quit IRC | 13:18 | |
daemontool__ | Hi Team, does anyone knows if SR-IOV is used for communications between 2 VMs in the same subnet, in the same compute node? both VMs are set with SRIOV | 13:19 |
*** rmart04 has joined #openstack-neutron | 13:20 | |
ihrachys | kevinbenton: ovs bridges are known to forget about ports out of root ns | 13:20 |
kevinbenton | ihrachys: this is linuxbridge though | 13:20 |
*** akshai has joined #openstack-neutron | 13:20 | |
kevinbenton | ihrachys: regular veth pair | 13:20 |
openstackgerrit | Sana Khan proposed openstack/neutron: OVSLibTestCase.test_db_find_column_type_list invalid match value for db_find https://review.openstack.org/345296 | 13:21 |
kevinbenton | ihrachys: ooooh | 13:21 |
kevinbenton | ihrachys: the l2 agent went and undid our nice work :) | 13:21 |
*** ociuhandu has joined #openstack-neutron | 13:22 | |
*** jerrygb has quit IRC | 13:22 | |
kevinbenton | ihrachys: https://github.com/openstack/neutron/blob/master/neutron/plugins/ml2/drivers/linuxbridge/agent/linuxbridge_neutron_agent.py#L503-L506 | 13:22 |
*** akshai_ has joined #openstack-neutron | 13:22 | |
kevinbenton | ihrachys: right before it actually plugged it in | 13:23 |
kevinbenton | ihrachys: http://logs.openstack.org/03/341103/2/experimental/gate-grenade-dsvm-neutron-linuxbridge-multinode-nv/d653e08/logs/old/screen-q-agt.txt.gz#_2016-07-21_11_27_58_849 | 13:23 |
kevinbenton | ihrachys: evil thing trying to be helpful! | 13:23 |
*** rawlin has quit IRC | 13:25 | |
*** wolverineav has joined #openstack-neutron | 13:25 | |
*** yamamoto has quit IRC | 13:25 | |
*** akshai has quit IRC | 13:26 | |
*** mohankumar has quit IRC | 13:27 | |
jlibosva | nmagnezi: I missed one thing | 13:27 |
ihrachys | kevinbenton: not sure I follow. so lb agent sets tap device MTU to bridge MTU? | 13:27 |
kevinbenton | ihrachys: yeah | 13:27 |
kevinbenton | ihrachys: before plugging it in | 13:27 |
kevinbenton | ihrachys: i was wondering why the external bridge wasn't downgraded to 1400 | 13:28 |
kevinbenton | ihrachys: that explains why | 13:28 |
nmagnezi | jlibosva, me listens | 13:29 |
ihrachys | kevinbenton: https://bugs.launchpad.net/neutron/+bug/1443607 | 13:29 |
openstack | Launchpad bug 1443607 in networking-cisco "Linux Bridge: can't change the VM's bridge and tap interface MTU at Compute node." [Undecided,New] | 13:29 |
*** aqkhan_ has joined #openstack-neutron | 13:30 | |
ihrachys | seems like a liberty time hack for jumbo? | 13:30 |
ihrachys | in that way, they basically propagate mtu from physical devices that they manage externally into tap devices. | 13:30 |
*** techcet has quit IRC | 13:31 | |
*** edmondsw has quit IRC | 13:31 | |
kevinbenton | ihrachys: yeah, even back then i'm not sure this was the right fix | 13:31 |
kevinbenton | ihrachys: it sounds like they just forget to set network_device_mtu in nova? | 13:32 |
ihrachys | not at all. they just hacked it around, made neutron to mimic whatever is configured externally | 13:32 |
jlibosva | nmagnezi: commented on review | 13:32 |
*** sdague has joined #openstack-neutron | 13:32 | |
ihrachys | kevinbenton: yeah, that should have given them the MTU | 13:32 |
*** wolverineav has quit IRC | 13:32 | |
*** aqkhan__ has joined #openstack-neutron | 13:33 | |
*** aqkhan_ has quit IRC | 13:33 | |
kevinbenton | ihrachys: well either way, this is only an issue because we have an incorrect network type | 13:33 |
jschwarz | liuyulong, ping | 13:33 |
*** aqkhan has quit IRC | 13:34 | |
*** aqkhan__ is now known as aqkhan | 13:34 | |
*** Dinesh_Bhor has left #openstack-neutron | 13:34 | |
*** jerrygb has joined #openstack-neutron | 13:34 | |
kevinbenton | ihrachys: how does a revert immediately go into merge conflict? :) | 13:34 |
ihrachys | kevinbenton: I am surprised too. before, gerrit was just disallowing | 13:35 |
ihrachys | now it produces a revert from that HEAD you revert | 13:35 |
ihrachys | so it's always successfull | 13:35 |
jschwarz | akamyshnikova_, evening? :) | 13:35 |
jschwarz | what time zone are you? | 13:35 |
kevinbenton | ihrachys: ah, successful but useless :) | 13:35 |
ihrachys | right. probably still useful if you want to tag it a | 13:35 |
ihrachys | *for later rebase | 13:35 |
ihrachys | but will probably be easier to clean up from scratch | 13:36 |
ihrachys | there are even no such files anymore ;) | 13:36 |
akamyshnikova_ | jschwarz, UTC + 3, still day :) | 13:37 |
jschwarz | akamyshnikova_, ahh | 13:37 |
jschwarz | akamyshnikova_, it' | 13:37 |
*** wolverineav has joined #openstack-neutron | 13:37 | |
jschwarz | it's rare to find someone in the same timezone as me | 13:37 |
jschwarz | where are you from? | 13:37 |
*** john-davidge has quit IRC | 13:38 | |
akamyshnikova_ | jschwarz, Russia | 13:38 |
kevinbenton | ihrachys: actually now i'm confused | 13:38 |
jschwarz | akamyshnikova_, the west side I figure? | 13:38 |
*** john-davidge has joined #openstack-neutron | 13:38 | |
kevinbenton | ihrachys: if linux bridge job isn't using external_network_bridge already, the encap type must be right | 13:38 |
akamyshnikova_ | jschwarz, center | 13:38 |
*** pgadiya has quit IRC | 13:39 | |
jschwarz | akamyshnikova_, huh | 13:39 |
akamyshnikova_ | jschwarz, it depends :D | 13:39 |
jschwarz | akamyshnikova_, on what? :P | 13:39 |
ihrachys | kevinbenton: checking | 13:39 |
akamyshnikova_ | jschwarz, how to look :D because to west from what? | 13:39 |
jschwarz | akamyshnikova_, from the middle east :P | 13:40 |
jschwarz | akamyshnikova_, Israel is also UTC+3 | 13:40 |
kevinbenton | ihrachys: is this because devstack went in and messed up the MTU on the bridge itself? | 13:40 |
jschwarz | so sorry, the west side of Russia from the center side of Russia? | 13:40 |
jschwarz | does that make sense? :P | 13:40 |
ihrachys | kevinbenton: it does not explain why qg is LESS by 50 than br-ex | 13:40 |
jschwarz | akamyshnikova_, anyway I'm starting to look into those races I mentioned the other day | 13:41 |
jschwarz | akamyshnikova_, I'm trying to find the bug report that mentioned the traces for the problems that we fixed but I'm having a bit of a trouble | 13:41 |
jschwarz | because there are so many :< | 13:41 |
ihrachys | kevinbenton: seems like lib/neutron_plugins/linuxbridge_agent empties external_network_bridge irrelevant of other variables | 13:41 |
akamyshnikova_ | jschwarz, a lot are tracked by https://bugs.launchpad.net/neutron/+bug/1499647 | 13:42 |
openstack | Launchpad bug 1499647 in neutron "test_ha_router fails intermittently" [Medium,In progress] - Assigned to John Schwarz (jschwarz) | 13:42 |
akamyshnikova_ | jschwarz, and I now even don't know what is this bug is about | 13:42 |
jschwarz | akamyshnikova_, so it's time we open a new bug, then | 13:43 |
jschwarz | akamyshnikova_, I'll open a couple, hang on | 13:43 |
akamyshnikova_ | jschwarz, I guess all races that that affect this test | 13:43 |
akamyshnikova_ | jschwarz, also there is bunch of bug that lui filed | 13:43 |
*** yamamoto has joined #openstack-neutron | 13:43 | |
*** yamamoto has quit IRC | 13:43 | |
kevinbenton | ihrachys: http://logs.openstack.org/03/341103/2/experimental/gate-grenade-dsvm-neutron-linuxbridge-multinode-nv/d653e08/logs/old/screen-q-svc.txt.gz#_2016-07-21_11_27_49_957 | 13:44 |
*** sleviim has quit IRC | 13:44 | |
kevinbenton | ihrachys: creating network without right type | 13:44 |
jschwarz | akamyshnikova_, yeah those I saw, but I couldn't find the exact errors | 13:44 |
openstackgerrit | Artur Korzeniewski proposed openstack/neutron: devref: docs about how to use NeutronDbObject. https://review.openstack.org/336518 | 13:44 |
*** yamamoto has joined #openstack-neutron | 13:44 | |
*** wolverineav has quit IRC | 13:45 | |
kevinbenton | ihrachys: so that must mean that devstack is attaching directly to the bridge for that network | 13:45 |
kevinbenton | ihrachys: not relying on it wiring up a veth pair to an 'external' network like it would do for flat | 13:45 |
jschwarz | akamyshnikova_, brb | 13:45 |
akamyshnikova_ | jschwarz, this one https://bugs.launchpad.net/neutron/+bug/1533441 is about the races we also saw last time during rally run | 13:45 |
openstack | Launchpad bug 1533441 in neutron "HA router can not be deleted in L3 agent after race between HA router creating and deleting" [Medium,In progress] - Assigned to LIU Yulong (dragon889) | 13:45 |
*** sindhude has quit IRC | 13:46 | |
*** BigWillie has joined #openstack-neutron | 13:47 | |
*** ametts has joined #openstack-neutron | 13:47 | |
kevinbenton | ihrachys: yeah, so my patch should straighten that out i think | 13:48 |
kevinbenton | ihrachys: i just wonder if it actually being wired like a flat network will mess up linux bridge jobs | 13:48 |
*** dosaboy has quit IRC | 13:48 | |
*** ranjithd has joined #openstack-neutron | 13:48 | |
*** krotscheck_dcm is now known as krotscheck | 13:50 | |
*** ranjithd1 has joined #openstack-neutron | 13:51 | |
*** wolverineav has joined #openstack-neutron | 13:51 | |
*** janzian has joined #openstack-neutron | 13:51 | |
*** dosaboy has joined #openstack-neutron | 13:52 | |
*** ranjithd has quit IRC | 13:53 | |
*** ekuris has quit IRC | 13:55 | |
ihrachys | kevinbenton: another couple of years, and we will be done with silly mtu issues | 13:56 |
*** itisha has joined #openstack-neutron | 13:57 | |
kevinbenton | ihrachys: we're getting close :) | 13:57 |
kevinbenton | ihrachys: i didn't realize linux bridge job only half-way made it to using the 'correct' setup | 13:57 |
ihrachys | kevinbenton: right. anyway it's a corner case advanced feature for a networking project, right? | 13:57 |
*** haplo37_ has joined #openstack-neutron | 13:57 | |
*** EinstCrazy has joined #openstack-neutron | 13:58 | |
kevinbenton | ihrachys: does depends-on work with devstack? | 13:58 |
*** buttercup has joined #openstack-neutron | 13:58 | |
ihrachys | kevinbenton: it does. also for devstack-gate | 13:58 |
ihrachys | kevinbenton: only -config is special I think | 13:58 |
ihrachys | at least in my experience | 13:59 |
*** bks has quit IRC | 13:59 | |
kevinbenton | ihrachys: ok. i'll put up a patch to test lb against my devstack patch | 13:59 |
*** sdague has quit IRC | 13:59 | |
ihrachys | ack. you can check experimental to get grenade multinode too | 13:59 |
*** lintan_ has joined #openstack-neutron | 14:00 | |
*** dasanind has joined #openstack-neutron | 14:01 | |
jschwarz | akamyshnikova_, erm | 14:01 |
*** salv-orlando has joined #openstack-neutron | 14:01 | |
*** a_ta has joined #openstack-neutron | 14:02 | |
jschwarz | akamyshnikova_, I think it's better to open new bugs and treat them with a clean slate | 14:02 |
*** mlavalle has joined #openstack-neutron | 14:02 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Test linuxbridge patch https://review.openstack.org/345449 | 14:02 |
*** a_ta has quit IRC | 14:02 | |
*** salv-orl_ has joined #openstack-neutron | 14:02 | |
kevinbenton | ihrachys: ok. i'm going to bed now | 14:03 |
*** a_ta has joined #openstack-neutron | 14:03 | |
kevinbenton | ihrachys: will sync up with you later | 14:03 |
openstackgerrit | tonytan4ever proposed openstack/neutron: Add subresources support for PECAN https://review.openstack.org/336188 | 14:03 |
openstackgerrit | Nir Magnezi proposed openstack/neutron: Adds a custom reload callback to ProcessManager https://review.openstack.org/345263 | 14:04 |
ihrachys | kevinbenton: enjoy | 14:04 |
*** sindhude has joined #openstack-neutron | 14:04 | |
akamyshnikova_ | jschwarz, OK, I can file a new one, we need revisit all existed as it will be difficult to track progress | 14:04 |
nmagnezi | jlibosva, done | 14:04 |
*** emagana has joined #openstack-neutron | 14:04 | |
*** gvrangan has joined #openstack-neutron | 14:04 | |
jschwarz | akamyshnikova_, agreed | 14:05 |
*** ishant|away has quit IRC | 14:05 | |
*** lazy_prince has quit IRC | 14:05 | |
jschwarz | akamyshnikova_, so we need to do that anyway for the presentation so I'll do it early next week | 14:05 |
*** ushkalim has quit IRC | 14:05 | |
jschwarz | akamyshnikova_, also there's liuyulong's patches that're supposed to fix one of them | 14:05 |
jschwarz | akamyshnikova_, I have traces of 2 recurring races I found so I'll open them soon (next hour) | 14:06 |
jlibosva | nmagnezi++ | 14:06 |
*** tbachman_ has joined #openstack-neutron | 14:06 | |
*** salv-orlando has quit IRC | 14:07 | |
*** a_ta has quit IRC | 14:07 | |
akamyshnikova_ | jschwarz, by the way, I will be on vacation next 2 weeks, but I will be online from time to time and I will read email, may be even do something :D | 14:07 |
akamyshnikova_ | jschwarz, looking for that bugs :) | 14:08 |
jschwarz | akamyshnikova_, have tons of fun! :) | 14:08 |
*** Leo_ has joined #openstack-neutron | 14:08 | |
*** tbachman has quit IRC | 14:08 | |
*** tbachman_ is now known as tbachman | 14:08 | |
*** Leo_ has quit IRC | 14:08 | |
jschwarz | akamyshnikova_, I sent the tooz benchmark to the mailing list an hour ago or so, so you're welcome to look at it | 14:08 |
*** Leo_ has joined #openstack-neutron | 14:08 | |
*** lazy_prince has joined #openstack-neutron | 14:09 | |
jschwarz | akamyshnikova_, and I'm also taking a few PTO days in the first week of August - I'm moving flats so... | 14:09 |
akamyshnikova_ | jschwarz, yep, this is very interesting I will read it carefully later | 14:09 |
*** a_ta has joined #openstack-neutron | 14:09 | |
jschwarz | akamyshnikova_, much appreciated | 14:09 |
*** ishant|away has joined #openstack-neutron | 14:09 | |
*** salv-orlando has joined #openstack-neutron | 14:09 | |
jschwarz | akamyshnikova_, are you coming to the mid-cycle? | 14:09 |
*** ajmiller has joined #openstack-neutron | 14:10 | |
akamyshnikova_ | jschwarz, I just have moved to a new flat last weekend, so you will have a lot fun :) | 14:10 |
akamyshnikova_ | jschwarz, nope, and you? | 14:10 |
*** Leom has joined #openstack-neutron | 14:10 | |
jschwarz | akamyshnikova_, that's the rumor :) | 14:10 |
jschwarz | and yes | 14:11 |
*** pbandark has quit IRC | 14:11 | |
*** tmorin has quit IRC | 14:11 | |
*** jckasper has quit IRC | 14:11 | |
*** jckasper has joined #openstack-neutron | 14:12 | |
*** jckasper has quit IRC | 14:12 | |
*** jckasper has joined #openstack-neutron | 14:12 | |
*** salv-orl_ has quit IRC | 14:14 | |
*** ishant|away has quit IRC | 14:14 | |
*** Leo_ has quit IRC | 14:14 | |
*** baoli has joined #openstack-neutron | 14:14 | |
*** amotoki has joined #openstack-neutron | 14:15 | |
*** techcet has joined #openstack-neutron | 14:16 | |
*** gvrangan has quit IRC | 14:16 | |
*** daemontool__ is now known as daemontool | 14:16 | |
*** wolverineav has quit IRC | 14:16 | |
*** ishant|away has joined #openstack-neutron | 14:17 | |
*** baoli has quit IRC | 14:17 | |
*** baoli has joined #openstack-neutron | 14:19 | |
*** baoli has quit IRC | 14:19 | |
*** vishwanathj_zzz is now known as vishwanathj | 14:19 | |
*** techcet has quit IRC | 14:21 | |
*** wolverineav has joined #openstack-neutron | 14:22 | |
openstackgerrit | Dongcan Ye proposed openstack/neutron-vpnaas: Add default Libreswan installation for CentOS7 https://review.openstack.org/344723 | 14:23 |
*** claudiub has quit IRC | 14:23 | |
*** techcet has joined #openstack-neutron | 14:24 | |
*** numans has joined #openstack-neutron | 14:27 | |
*** nherciu_ has quit IRC | 14:29 | |
*** sputnik13 has joined #openstack-neutron | 14:29 | |
*** jlibosva has quit IRC | 14:29 | |
*** nmagnezi has quit IRC | 14:29 | |
*** jlibosva has joined #openstack-neutron | 14:29 | |
*** maishsk has quit IRC | 14:30 | |
*** EinstCrazy has quit IRC | 14:31 | |
*** maishsk has joined #openstack-neutron | 14:32 | |
*** EinstCrazy has joined #openstack-neutron | 14:32 | |
openstackgerrit | Anindita Das proposed openstack/neutron: [WIP]Refactoring config options for extension opts https://review.openstack.org/345486 | 14:32 |
*** moshele has quit IRC | 14:32 | |
*** itzikb has quit IRC | 14:32 | |
*** edmondsw has joined #openstack-neutron | 14:33 | |
*** wolverineav has quit IRC | 14:33 | |
*** eezhova has quit IRC | 14:33 | |
*** thorst_ has joined #openstack-neutron | 14:36 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: DNM: test linuxbridge multinode grenade fixes https://review.openstack.org/345488 | 14:36 |
*** dane_leblanc has joined #openstack-neutron | 14:38 | |
*** fzdarsky is now known as fzdarsky|afk | 14:38 | |
*** sindhude has quit IRC | 14:38 | |
*** michchap has quit IRC | 14:40 | |
*** wolverineav has joined #openstack-neutron | 14:42 | |
*** fzdarsky|afk has quit IRC | 14:42 | |
*** buttercup has quit IRC | 14:43 | |
*** ishant|away has quit IRC | 14:43 | |
*** lazy_prince has quit IRC | 14:43 | |
*** michchap has joined #openstack-neutron | 14:45 | |
*** ishant|away has joined #openstack-neutron | 14:46 | |
*** wolverineav has quit IRC | 14:47 | |
*** lazy_prince has joined #openstack-neutron | 14:47 | |
*** nirmoy has quit IRC | 14:47 | |
*** obondarev has quit IRC | 14:47 | |
*** pavel_bondar has joined #openstack-neutron | 14:48 | |
*** sindhude has joined #openstack-neutron | 14:48 | |
*** marst has joined #openstack-neutron | 14:50 | |
jschwarz | akamyshnikova_, ah I just now remembered | 14:50 |
jschwarz | akamyshnikova_, regardeing https://bugs.launchpad.net/neutron/+bug/1597461 - did you have any progress with this? | 14:51 |
openstack | Launchpad bug 1597461 in neutron "L3 HA: 2 masters after reboot of controller" [Undecided,Confirmed] - Assigned to Ann Taraday (akamyshnikova) | 14:51 |
*** trevormc has quit IRC | 14:51 | |
jschwarz | akamyshnikova_, if you're going on PTO I might have time to have a look at it next week if you want | 14:51 |
*** anilvenkata has joined #openstack-neutron | 14:51 | |
*** nirmoy has joined #openstack-neutron | 14:52 | |
*** amotoki has quit IRC | 14:52 | |
jschwarz | akamyshnikova_, and I opened: https://bugs.launchpad.net/neutron/+bug/1605285 and https://bugs.launchpad.net/neutron/+bug/1605282 | 14:53 |
openstack | Launchpad bug 1605285 in neutron "StaleDataError on ha_router_agent_port_bindings update" [Undecided,New] | 14:53 |
openstack | Launchpad bug 1605282 in neutron "Transaction rolled back while creating HA router" [Undecided,New] | 14:53 |
*** ishant|away has quit IRC | 14:53 | |
*** amotoki has joined #openstack-neutron | 14:53 | |
*** fnaval has quit IRC | 14:53 | |
openstackgerrit | Henry Gessau proposed openstack/neutron-dynamic-routing: Rename DB columns: tenant -> project https://review.openstack.org/342444 | 14:55 |
*** obondarev has joined #openstack-neutron | 14:55 | |
*** ishant|away has joined #openstack-neutron | 14:56 | |
*** zhhuabj_ has quit IRC | 14:56 | |
*** amotoki has quit IRC | 14:58 | |
openstackgerrit | Henry Gessau proposed openstack/neutron-dynamic-routing: Rename DB columns: tenant -> project https://review.openstack.org/342444 | 14:58 |
*** tidwellr has joined #openstack-neutron | 14:58 | |
openstackgerrit | Henry Gessau proposed openstack/neutron-vpnaas: Rename DB columns: tenant -> project https://review.openstack.org/342335 | 14:58 |
openstackgerrit | Pavel Bondar proposed openstack/neutron: Fix updating allocation_pools on subnet update https://review.openstack.org/345498 | 14:59 |
*** nirmoy has quit IRC | 14:59 | |
*** yfried has quit IRC | 14:59 | |
*** nirmoy has joined #openstack-neutron | 14:59 | |
*** wolverineav has joined #openstack-neutron | 15:00 | |
*** pece has joined #openstack-neutron | 15:01 | |
*** johnbelamaric has joined #openstack-neutron | 15:01 | |
*** haplo37_ has quit IRC | 15:02 | |
*** pcaruana has quit IRC | 15:02 | |
*** crose has joined #openstack-neutron | 15:03 | |
*** maishsk has quit IRC | 15:03 | |
*** mickeys has joined #openstack-neutron | 15:03 | |
*** garyk has quit IRC | 15:03 | |
*** lintan_ has left #openstack-neutron | 15:04 | |
*** iyamahat has joined #openstack-neutron | 15:04 | |
*** david-lyle has joined #openstack-neutron | 15:04 | |
*** fnaval has joined #openstack-neutron | 15:05 | |
*** hynekm has quit IRC | 15:06 | |
*** maishsk has joined #openstack-neutron | 15:06 | |
*** saggi has quit IRC | 15:07 | |
*** amotoki has joined #openstack-neutron | 15:07 | |
*** thorst_ has quit IRC | 15:09 | |
*** mohankumar has joined #openstack-neutron | 15:11 | |
*** wolverineav has quit IRC | 15:12 | |
mohankumar | rtheis : ping | 15:13 |
*** kbringard has quit IRC | 15:13 | |
*** kbringard has joined #openstack-neutron | 15:13 | |
*** haplo37_ has joined #openstack-neutron | 15:14 | |
*** kobis has quit IRC | 15:15 | |
*** gcb has joined #openstack-neutron | 15:15 | |
*** salv-orlando has quit IRC | 15:16 | |
*** iyamahat has quit IRC | 15:16 | |
gcb | obondarev can you look at https://review.openstack.org/#/c/326863/ again when you'r free ? | 15:17 |
*** jlibosva1 has joined #openstack-neutron | 15:17 | |
openstackgerrit | Nate Johnston proposed openstack/neutron: Implement L3 Agent Extension Manager https://review.openstack.org/339246 | 15:17 |
*** jlibosva has quit IRC | 15:17 | |
obondarev | gcb: done | 15:18 |
*** thorst_ has joined #openstack-neutron | 15:18 | |
gcb | obondarev ,thanks | 15:19 |
*** EinstCrazy has quit IRC | 15:20 | |
rtheis | mohankumar: hi | 15:22 |
*** davidsha has quit IRC | 15:22 | |
openstackgerrit | Pavel Bondar proposed openstack/neutron: Switch to pluggable IPAM implementation https://review.openstack.org/181023 | 15:22 |
*** thorst_ has quit IRC | 15:23 | |
mohankumar | rtheis: hi one qq | 15:23 |
mohankumar | we are using some functions from neutronclient : | 15:23 |
mohankumar | https://github.com/openstack/python-neutronclient/blob/master/neutronclient/v2_0/client.py#L571-L589 | 15:23 |
mohankumar | will the same code rewritten in openstackclient ? since we'll deprecate neutronclient in sometime . | 15:23 |
*** wolverineav has joined #openstack-neutron | 15:24 | |
*** obondarev has quit IRC | 15:24 | |
rtheis | mohankumar: only the CLI is being deprecated, not the python bindings | 15:24 |
*** kbringard has quit IRC | 15:24 | |
*** kbringard has joined #openstack-neutron | 15:25 | |
mohankumar | rtheis: so these python bindings will exists in neutronclient , right ? | 15:25 |
*** baoli has joined #openstack-neutron | 15:25 | |
rtheis | mohankumar: yes | 15:25 |
rtheis | https://github.com/openstack/python-neutronclient/blob/master/neutronclient/osc/plugin.py | 15:25 |
rtheis | neutronclient.v2_0.client.Client is being used | 15:25 |
*** rawlin has joined #openstack-neutron | 15:26 | |
mohankumar | rtheis : yes , got it thanks ! | 15:26 |
rtheis | yw | 15:26 |
*** trevormc has joined #openstack-neutron | 15:26 | |
*** tbachman has quit IRC | 15:27 | |
*** tbachman has joined #openstack-neutron | 15:28 | |
*** wolverineav has quit IRC | 15:30 | |
*** baoli has quit IRC | 15:31 | |
*** wolverineav has joined #openstack-neutron | 15:32 | |
*** andreas_s has quit IRC | 15:32 | |
ihrachys | I become happy when I see review comments to my tests. | 15:34 |
*** bks has joined #openstack-neutron | 15:35 | |
*** mohankumar has quit IRC | 15:35 | |
*** iyamahat has joined #openstack-neutron | 15:36 | |
*** Leom has quit IRC | 15:40 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Revisit (add|remove)_subports request body https://review.openstack.org/345185 | 15:41 |
*** wolverineav has quit IRC | 15:42 | |
*** thorst_ has joined #openstack-neutron | 15:43 | |
*** salv-orlando has joined #openstack-neutron | 15:43 | |
*** slaweq has joined #openstack-neutron | 15:43 | |
*** vikram has quit IRC | 15:44 | |
*** claudiub has joined #openstack-neutron | 15:44 | |
*** fnaval_ has joined #openstack-neutron | 15:45 | |
*** marios has quit IRC | 15:45 | |
*** psanchez has quit IRC | 15:46 | |
*** wolverineav has joined #openstack-neutron | 15:47 | |
*** psanchez has joined #openstack-neutron | 15:47 | |
*** slaweq has quit IRC | 15:48 | |
*** marios has joined #openstack-neutron | 15:48 | |
*** armax has joined #openstack-neutron | 15:48 | |
*** fnaval has quit IRC | 15:48 | |
*** slaweq has joined #openstack-neutron | 15:48 | |
*** rmart04 has quit IRC | 15:49 | |
ihrachys | armax: howdy | 15:51 |
openstackgerrit | Pablo Iranzo Gómez proposed openstack/neutron-lib: Add validator to test integers https://review.openstack.org/337237 | 15:51 |
armax | ihrachys: hi | 15:51 |
ihrachys | armax: seems like we hit some limit in neutron grafana dashboards, grenade-dvr-multinode is not showing up in the dash for gate queue | 15:51 |
ihrachys | armax: it's in JSON though. | 15:51 |
ihrachys | so probably some UI issue | 15:51 |
ihrachys | we may want to clean up the dash | 15:51 |
armax | ihrachys: you sure it’s not a temporary glitch? | 15:52 |
ihrachys | I checked it for several days | 15:52 |
ihrachys | depending what you mean by a glitch. | 15:52 |
armax | ihrachys: I am sure there’s a simple explaination | 15:52 |
*** slaweq has quit IRC | 15:52 | |
ihrachys | armax: I googled a bit, and some email threads were mentioning a limit, though higher than we currently use | 15:53 |
ihrachys | (around 20) | 15:53 |
johnsom | Sam-I-Am dougwig It looks like the networking API guide is broken now for LBaaS. It looks like it merged the LBaaSv1 and LBaaSv2 into the LBaaSv1 section. Is this a known issue? | 15:53 |
*** crose has quit IRC | 15:53 | |
armax | ihrachys: but how can it be? | 15:53 |
johnsom | http://developer.openstack.org/api-ref/networking/v2-ext/index.html#lbaas-1-0-deprecated-lb-vips-health-monitors-pools-members | 15:53 |
armax | the check dashboard is crowded | 15:53 |
*** yamahata has joined #openstack-neutron | 15:53 | |
armax | the gate one is nowhere near being full | 15:53 |
armax | ihrachys: you think in total? | 15:54 |
*** numans has quit IRC | 15:54 | |
*** sridharg has quit IRC | 15:54 | |
ihrachys | armax: in check for dvr, it's 8 (shown) | 15:54 |
ihrachys | no dashs with higher number | 15:54 |
ihrachys | no, I was thinking about per-dash limit. I doubt it's global. | 15:55 |
*** wolverineav has quit IRC | 15:55 | |
*** yamamoto has quit IRC | 15:55 | |
armax | ihrachys: agreed | 15:56 |
openstackgerrit | Merged openstack/neutron-lib: Deprecate N523 check that forbids oslo.* imports https://review.openstack.org/345026 | 15:56 |
ihrachys | armax: to clarify, I talk about http://grafana.openstack.org/dashboard/db/neutron-failure-rate?panelId=5&fullscreen | 15:56 |
openstackgerrit | Merged openstack/neutron-lib: devref for public API docstring https://review.openstack.org/340580 | 15:56 |
*** tmorin has joined #openstack-neutron | 15:56 | |
ihrachys | armax: in another news, mtu seems to be fixed for multinode grenade, we are back to normal failure rate | 15:57 |
*** hynekm has joined #openstack-neutron | 15:57 | |
armax | ihrachys: with your latest fix? | 15:57 |
ihrachys | armax: yes | 15:57 |
armax | ihrachys: the one that set the global mtu? | 15:57 |
ihrachys | armax: kevinbenton and I also work on several patches to fix the job for linuxbridge. we found some hacks in the agent that breaks MTU efforts. | 15:57 |
armax | as for the dashboard it’s best to check with infra | 15:57 |
armax | because I can’t spot anything wrong with it | 15:58 |
ihrachys | armax: the one that switches from network_device_mtu to global_physnet_mtu and effectively enables MTU calculation in ml2 | 15:58 |
armax | ihrachys: I bet you did | 15:58 |
ihrachys | armax: I checked with infra already, but maybe I should ping more folks | 15:58 |
*** wolverineav has joined #openstack-neutron | 15:58 | |
*** akamyshnikova__ has joined #openstack-neutron | 15:58 | |
*** nmagnezi has joined #openstack-neutron | 15:59 | |
armax | ihrachys: ok | 15:59 |
*** jamielennox|away is now known as jamielennox | 15:59 | |
armax | ihrachys: no answer? | 15:59 |
ihrachys | armax: the answer was, all looks fine, JSON is there, so probably some bug in grafana. not sure. | 15:59 |
ihrachys | armax: "pabelanger: if you look at the panel JSON you can see it is added correctly. Looks like grafana might have a limit of 9" | 15:59 |
armax | ihrachys: ok | 16:00 |
*** marun_ has joined #openstack-neutron | 16:00 | |
*** marun_ is now known as marun | 16:00 | |
armax | ihrachys: how on track are we to supplant mutlinode with multinode+dvr | 16:00 |
armax | in that case the limit is moot | 16:01 |
armax | because we’re gonna kill one job anyway | 16:01 |
armax | ihrachys: otherwise we can split the dashboard | 16:01 |
ihrachys | armax: well, I think there are better candidates. | 16:01 |
*** gcb has quit IRC | 16:01 | |
armax | and have gate multi vs gate non-multi | 16:01 |
ihrachys | armax: there are also concerns around dropping the legacy flavour, we should think it thru. | 16:01 |
armax | ihrachys: I am not suggesting to drop the single node | 16:02 |
armax | ihrachys: but either way perhaps the best short term course of action is to split the dashboard | 16:02 |
*** tmorin has quit IRC | 16:02 | |
*** tmorin has joined #openstack-neutron | 16:03 | |
*** cbouch has quit IRC | 16:03 | |
*** dasanind has quit IRC | 16:03 | |
*** liusheng has quit IRC | 16:04 | |
*** liusheng has joined #openstack-neutron | 16:05 | |
*** sdague has joined #openstack-neutron | 16:05 | |
*** jlanoux has quit IRC | 16:05 | |
*** shangxdy has joined #openstack-neutron | 16:06 | |
*** wolverineav has quit IRC | 16:09 | |
*** fzdarsky|afk has joined #openstack-neutron | 16:09 | |
*** kevo has joined #openstack-neutron | 16:09 | |
*** aranjan has joined #openstack-neutron | 16:09 | |
*** sterdnotshaken has joined #openstack-neutron | 16:09 | |
*** shangxdy has quit IRC | 16:11 | |
*** dasanind has joined #openstack-neutron | 16:11 | |
ihrachys | armax: let's look at each job on the board to see if it's really needed. if we can't drop anything, then split. | 16:11 |
*** sdague has quit IRC | 16:11 | |
*** vikram has joined #openstack-neutron | 16:13 | |
*** moshele has joined #openstack-neutron | 16:13 | |
*** sterdnotshaken has quit IRC | 16:14 | |
*** sdague has joined #openstack-neutron | 16:15 | |
*** tesseract- has quit IRC | 16:15 | |
*** shashank_hegde has joined #openstack-neutron | 16:15 | |
*** wolverineav has joined #openstack-neutron | 16:16 | |
*** tflynn has joined #openstack-neutron | 16:16 | |
*** wolverineav has quit IRC | 16:18 | |
*** mkolesni has joined #openstack-neutron | 16:18 | |
*** gvrangan has joined #openstack-neutron | 16:18 | |
*** wolverineav has joined #openstack-neutron | 16:18 | |
*** rcernin has quit IRC | 16:19 | |
vaidy | hi all i am trying to setup neutron with vmware-nsx with dvs | 16:20 |
*** jhershbe__ has quit IRC | 16:20 | |
vaidy | everything seems to be working fine just the dhcp offer doesnt seems to be reaching the vm | 16:20 |
vaidy | vm is unable to get the ip address | 16:20 |
*** dasanind_ has joined #openstack-neutron | 16:21 | |
*** dasanind has quit IRC | 16:21 | |
vaidy | any help? | 16:22 |
*** tmorin has quit IRC | 16:23 | |
*** mkolesni has quit IRC | 16:24 | |
openstackgerrit | John Perkins proposed openstack/neutron: Agent common config https://review.openstack.org/343045 | 16:24 |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: DNM: test linuxbridge multinode grenade fixes https://review.openstack.org/345488 | 16:25 |
*** emagana has quit IRC | 16:25 | |
*** dasanind has joined #openstack-neutron | 16:27 | |
*** tmorin has joined #openstack-neutron | 16:27 | |
*** dasanind_ has quit IRC | 16:27 | |
*** julim has quit IRC | 16:28 | |
*** derekjhyang has joined #openstack-neutron | 16:29 | |
*** emagana has joined #openstack-neutron | 16:29 | |
*** aranjan has quit IRC | 16:29 | |
*** Leo_ has joined #openstack-neutron | 16:30 | |
*** kevo has quit IRC | 16:32 | |
*** mvk has quit IRC | 16:32 | |
*** dasanind has quit IRC | 16:33 | |
*** emagana has quit IRC | 16:33 | |
ihrachys | armax: https://review.openstack.org/#/c/345444/1 heat broken twice this week by lbaas patches | 16:35 |
*** lucasagomes is now known as lucas-afk | 16:35 | |
*** emagana has joined #openstack-neutron | 16:35 | |
ihrachys | armax: we should reconsider the gate structure for lbaas, it seems it has huge holes when it comes to haproxy. | 16:36 |
*** wolverineav has quit IRC | 16:36 | |
*** shashank_hegde has quit IRC | 16:37 | |
*** bvandewa has joined #openstack-neutron | 16:37 | |
*** emagana has quit IRC | 16:41 | |
*** wolverineav has joined #openstack-neutron | 16:41 | |
*** zkassab_ has joined #openstack-neutron | 16:41 | |
*** david-lyle has quit IRC | 16:41 | |
*** zkassab has quit IRC | 16:41 | |
armax | ihrachys: you should say this in the lbaas channel | 16:42 |
*** moshele has quit IRC | 16:42 | |
*** lezbar has quit IRC | 16:42 | |
ihrachys | armax: I do | 16:42 |
armax | get some lbaas people to step up | 16:42 |
amuller | ihrachys: nmagnezi was going to look in to this | 16:42 |
*** amotoki has quit IRC | 16:42 | |
amuller | we just need *any* job that runs tempest lbaas scenario tests with the old haproxy impl. | 16:42 |
ihrachys | amuller: yes, I know he proposed a -nv job | 16:43 |
ihrachys | there are other considerations | 16:43 |
ihrachys | like whi existing scenarios are not voting | 16:43 |
nmagnezi | amuller, armax, https://review.openstack.org/#/c/344813/ that should prevent this from happening again | 16:43 |
openstackgerrit | Terry Wilson proposed openstack/neutron: WIP: Wait for vswitchd to add interfaces in native ovsdb https://review.openstack.org/344859 | 16:43 |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Improve the segmentation ID validation logic https://review.openstack.org/345173 | 16:44 |
*** bfernando has quit IRC | 16:44 | |
armax | nmagnezi: thanks | 16:44 |
armax | dougwig should chime in on that | 16:45 |
*** shashank_hegde has joined #openstack-neutron | 16:46 | |
*** vishwanathj has quit IRC | 16:47 | |
*** kbringard has quit IRC | 16:48 | |
*** mosulica has quit IRC | 16:49 | |
openstackgerrit | Terry Wilson proposed openstack/neutron: Wait for vswitchd to add interfaces in native ovsdb https://review.openstack.org/344859 | 16:49 |
*** aranjan has joined #openstack-neutron | 16:52 | |
*** garyk has joined #openstack-neutron | 16:53 | |
*** p01nt3r75 has quit IRC | 16:54 | |
*** corey_ has joined #openstack-neutron | 16:55 | |
*** kawa2014 has quit IRC | 16:55 | |
*** moshele has joined #openstack-neutron | 16:56 | |
*** yamamoto has joined #openstack-neutron | 16:56 | |
*** cleong has quit IRC | 16:57 | |
*** yamahata has quit IRC | 16:58 | |
*** yamahata has joined #openstack-neutron | 16:58 | |
*** zkassab_ has quit IRC | 16:58 | |
* dougwig stumbles in, bleary eyed. | 16:59 | |
*** ygbo has quit IRC | 16:59 | |
dougwig | ihrachys: it does have huge holes, as the haproxy driver was on the road to deletion. since we decided to support it, you're right, it needs more than an api job. i don't think it ever had a scenario job before, either. | 17:00 |
dougwig | armax: ^ | 17:00 |
ihrachys | dougwig: cool we are in agreement. | 17:00 |
dougwig | i wonder if we should just run the heat jobs in the lbaas gate, too. | 17:00 |
vaidy | kevinbenton, hi | 17:01 |
vaidy | kevinbenton, have a question regarding the dhcp with vmware | 17:01 |
*** yamamoto has quit IRC | 17:01 | |
*** lnicolas has quit IRC | 17:02 | |
*** tbachman has quit IRC | 17:03 | |
openstackgerrit | Anindita Das proposed openstack/neutron: Refactoring config options for common config opts https://review.openstack.org/344281 | 17:04 |
*** tbachman has joined #openstack-neutron | 17:04 | |
*** moshele has quit IRC | 17:04 | |
*** regXboi has joined #openstack-neutron | 17:05 | |
*** bks has quit IRC | 17:07 | |
*** hynekm has quit IRC | 17:09 | |
*** jlibosva1 has quit IRC | 17:09 | |
*** eric_lopez has quit IRC | 17:10 | |
*** aranjan has quit IRC | 17:13 | |
*** kevo has joined #openstack-neutron | 17:13 | |
*** shashank_hegde has quit IRC | 17:14 | |
*** lnicolas has joined #openstack-neutron | 17:15 | |
*** vikram has quit IRC | 17:16 | |
*** baoli has joined #openstack-neutron | 17:16 | |
*** s3wong has joined #openstack-neutron | 17:17 | |
*** zkassab has joined #openstack-neutron | 17:17 | |
*** amuller is now known as amuller_afk | 17:18 | |
*** a_ta has quit IRC | 17:20 | |
*** charliekang has joined #openstack-neutron | 17:20 | |
*** a_ta has joined #openstack-neutron | 17:21 | |
*** techcet has quit IRC | 17:21 | |
*** baoli_ has joined #openstack-neutron | 17:22 | |
*** techcet has joined #openstack-neutron | 17:22 | |
*** lnicolas has quit IRC | 17:24 | |
*** anilvenkata has quit IRC | 17:24 | |
*** baoli has quit IRC | 17:25 | |
*** numans has joined #openstack-neutron | 17:25 | |
*** a_ta has quit IRC | 17:26 | |
*** techcet has quit IRC | 17:26 | |
*** vikram_ has joined #openstack-neutron | 17:28 | |
*** akamyshnikova__ has quit IRC | 17:28 | |
armax | HenryG: ping | 17:28 |
*** sindhude has quit IRC | 17:28 | |
HenryG | armax: pong | 17:28 |
*** obondarev has joined #openstack-neutron | 17:28 | |
*** wolverineav has quit IRC | 17:29 | |
*** ihrachys has quit IRC | 17:30 | |
*** wolverineav has joined #openstack-neutron | 17:32 | |
*** javeriak has joined #openstack-neutron | 17:32 | |
*** abhiraut has joined #openstack-neutron | 17:32 | |
*** julim has joined #openstack-neutron | 17:34 | |
*** oshvartz has quit IRC | 17:34 | |
*** wolverineav has quit IRC | 17:36 | |
*** lnicolas has joined #openstack-neutron | 17:38 | |
*** abhiraut has quit IRC | 17:39 | |
*** maishsk has quit IRC | 17:39 | |
*** abhiraut has joined #openstack-neutron | 17:41 | |
*** harlowja has joined #openstack-neutron | 17:44 | |
*** tidwellr has quit IRC | 17:44 | |
*** fzdarsky|afk has quit IRC | 17:44 | |
*** shashank_hegde has joined #openstack-neutron | 17:44 | |
*** mvk has joined #openstack-neutron | 17:45 | |
*** clenimar has quit IRC | 17:45 | |
*** eilert has joined #openstack-neutron | 17:48 | |
*** padkrish has joined #openstack-neutron | 17:49 | |
*** Leo_ has quit IRC | 17:50 | |
*** elo has joined #openstack-neutron | 17:51 | |
*** elo has quit IRC | 17:52 | |
*** nyechiel has quit IRC | 17:52 | |
*** javeriak_ has joined #openstack-neutron | 17:53 | |
*** javeriak has quit IRC | 17:53 | |
openstackgerrit | Merged openstack/neutron: Don't interrupt device loop for missing device https://review.openstack.org/345253 | 17:53 |
*** crinkle has left #openstack-neutron | 17:54 | |
*** elo has joined #openstack-neutron | 17:54 | |
*** tidwellr has joined #openstack-neutron | 17:54 | |
*** obondarev has quit IRC | 17:55 | |
*** maishsk has joined #openstack-neutron | 17:55 | |
*** tmorin has quit IRC | 17:55 | |
openstackgerrit | boden proposed openstack/neutron-lib: Update hacking check consumption https://review.openstack.org/333500 | 17:55 |
*** elo has quit IRC | 17:56 | |
*** sterdnotshaken1 has joined #openstack-neutron | 17:57 | |
sterdnotshaken1 | Is there a way to allow a tenant the ability to select a vlan id when they create a private network? | 17:58 |
*** SumitNaiksatam has joined #openstack-neutron | 18:00 | |
*** julim_ has joined #openstack-neutron | 18:01 | |
*** wolverineav has joined #openstack-neutron | 18:01 | |
*** daemontool has quit IRC | 18:01 | |
*** javeriak_ has quit IRC | 18:03 | |
*** baoli_ has quit IRC | 18:03 | |
*** david-lyle has joined #openstack-neutron | 18:04 | |
*** julim has quit IRC | 18:04 | |
*** david-lyle_ has joined #openstack-neutron | 18:05 | |
*** david-lyle has quit IRC | 18:05 | |
*** a_ta has joined #openstack-neutron | 18:06 | |
*** techcet has joined #openstack-neutron | 18:08 | |
openstackgerrit | Aradhana Singh proposed openstack/neutron: Refactoring config options for ml2 plugin openvswitch driver https://review.openstack.org/345592 | 18:08 |
*** padkrish has quit IRC | 18:09 | |
*** obondarev has joined #openstack-neutron | 18:09 | |
*** sindhude has joined #openstack-neutron | 18:09 | |
*** iyamahat has quit IRC | 18:10 | |
*** wolverineav has quit IRC | 18:10 | |
*** wolverineav has joined #openstack-neutron | 18:10 | |
*** dasanind has joined #openstack-neutron | 18:10 | |
*** wolverineav has quit IRC | 18:10 | |
openstackgerrit | Vladimir Eremin proposed openstack/neutron: [WIP] Update CIDR for subnet https://review.openstack.org/345594 | 18:10 |
*** wolverineav has joined #openstack-neutron | 18:11 | |
*** rubasov has quit IRC | 18:11 | |
*** yamahata has quit IRC | 18:11 | |
*** clenimar has joined #openstack-neutron | 18:12 | |
*** sterdnotshaken1 has quit IRC | 18:14 | |
*** anilvenkata has joined #openstack-neutron | 18:15 | |
*** mhickey has quit IRC | 18:15 | |
*** regXboi has quit IRC | 18:15 | |
*** padkrish has joined #openstack-neutron | 18:16 | |
*** efoley has joined #openstack-neutron | 18:16 | |
*** anilvenkata has quit IRC | 18:16 | |
*** ajmiller has quit IRC | 18:18 | |
*** ajmiller has joined #openstack-neutron | 18:18 | |
*** johnbelamaric has left #openstack-neutron | 18:21 | |
*** vikram_ has quit IRC | 18:21 | |
*** efoley has quit IRC | 18:22 | |
*** david-lyle_ has quit IRC | 18:22 | |
*** regXboi has joined #openstack-neutron | 18:22 | |
*** zzzeek is now known as zzzeek_afk_but_r | 18:22 | |
*** Sukhdev has joined #openstack-neutron | 18:22 | |
*** zzzeek_afk_but_r is now known as zzzeek_afk | 18:23 | |
*** tmorin has joined #openstack-neutron | 18:24 | |
*** numans has quit IRC | 18:25 | |
*** amuller_afk is now known as amuller | 18:25 | |
*** catintheroof has quit IRC | 18:25 | |
*** regXboi has quit IRC | 18:26 | |
*** gvrangan has quit IRC | 18:28 | |
*** regXboi has joined #openstack-neutron | 18:28 | |
*** salv-orlando has quit IRC | 18:28 | |
openstackgerrit | Aradhana Singh proposed openstack/neutron: Refactoring config options for l3 agent config https://review.openstack.org/338596 | 18:29 |
openstackgerrit | Pavel Bondar proposed openstack/neutron: Fix updating allocation_pools on subnet update https://review.openstack.org/345498 | 18:30 |
*** salv-orlando has joined #openstack-neutron | 18:30 | |
*** ihrachys has joined #openstack-neutron | 18:31 | |
*** regXboi has quit IRC | 18:33 | |
*** tmorin has quit IRC | 18:33 | |
*** salv-orlando has quit IRC | 18:34 | |
*** sterdnotshaken has joined #openstack-neutron | 18:35 | |
*** sterdnotshaken has quit IRC | 18:35 | |
*** harlowja has quit IRC | 18:35 | |
*** regXboi has joined #openstack-neutron | 18:36 | |
*** SumitNaiksatam has quit IRC | 18:37 | |
*** harlowja has joined #openstack-neutron | 18:38 | |
*** maishsk has quit IRC | 18:38 | |
*** visbits has quit IRC | 18:40 | |
*** devvesa has quit IRC | 18:40 | |
*** maishsk has joined #openstack-neutron | 18:40 | |
*** regXboi has quit IRC | 18:41 | |
*** iyamahat has joined #openstack-neutron | 18:42 | |
*** maishsk has quit IRC | 18:42 | |
*** regXboi has joined #openstack-neutron | 18:43 | |
*** maishsk has joined #openstack-neutron | 18:43 | |
*** regXboi has quit IRC | 18:46 | |
armax | boden: ping | 18:46 |
boden | armax: pong | 18:47 |
armax | boden: I am looking at 342304 | 18:47 |
armax | finally :) | 18:47 |
armax | however, I am not sure how to provide feedback | 18:48 |
armax | because I would have taken a completely different route | 18:49 |
*** mickeys has quit IRC | 18:49 | |
boden | armax: I’d be interested in what your approach might be | 18:49 |
armax | boden: so I wonder if I shall post a patch to show you my thoughts | 18:49 |
armax | and than we can compare notes | 18:49 |
boden | armax: if that’s the least time consuming route for you | 18:49 |
armax | boden: code works better than a 1000 words doesn’t it? | 18:50 |
boden | armax: yes assuming it doesn’t have to be tip-top shape :) | 18:50 |
armax | boden: no | 18:50 |
armax | boden: I’ll whip something up by end of today | 18:50 |
armax | and post the link to 342304 | 18:50 |
armax | and then we can talk tomorrow? | 18:50 |
boden | armax: as you probably saw, I’m actually looking into OVO. I need to do more research, but I’ll wait to see your thoughts | 18:51 |
armax | and see if there’s a best of both worlds | 18:51 |
armax | boden: I saw | 18:51 |
armax | boden: OVO alone is not the answer | 18:51 |
boden | thanks; no real rush, lots to do | 18:51 |
*** ihrachys has quit IRC | 18:51 | |
*** ihrachys has joined #openstack-neutron | 18:51 | |
armax | boden: thanks for waiting patiently | 18:51 |
*** derekjhyang has quit IRC | 18:52 | |
boden | armax: you actually got back to me much faster than I expected : ) so thanks for being prompt | 18:52 |
armax | boden: a week is pretty good I must admit :) | 18:52 |
*** markvoelker has quit IRC | 18:53 | |
armax | but I did promise dougwig too | 18:53 |
armax | and I, differently from dougwig try to keep my promises :P | 18:53 |
armax | dougwig: https://bugs.launchpad.net/neutron/+bug/1524916 | 18:53 |
openstack | Launchpad bug 1524916 in neutron "neutron-ns-metadata-proxy uses ~25MB/router in production" [Medium,In progress] - Assigned to Doug Wiegley (dougwig) | 18:53 |
armax | dougwig: the morning is almost over | 18:54 |
*** harlowja has quit IRC | 18:59 | |
*** r-daneel has joined #openstack-neutron | 18:59 | |
*** yamahata has joined #openstack-neutron | 19:02 | |
*** banix has joined #openstack-neutron | 19:04 | |
openstackgerrit | Merged openstack/neutron-vpnaas: Rename DB columns: tenant -> project https://review.openstack.org/342335 | 19:05 |
openstackgerrit | Nate Johnston proposed openstack/neutron: Implement L3 Agent Extension Manager https://review.openstack.org/339246 | 19:06 |
*** Leo_ has joined #openstack-neutron | 19:06 | |
*** sdague_ has joined #openstack-neutron | 19:06 | |
*** banix has quit IRC | 19:07 | |
*** fifieldt has quit IRC | 19:07 | |
*** sdague has quit IRC | 19:08 | |
*** marst has quit IRC | 19:08 | |
*** ajmiller has quit IRC | 19:11 | |
*** ajmiller has joined #openstack-neutron | 19:11 | |
*** claudiub has quit IRC | 19:12 | |
openstackgerrit | Nate Johnston proposed openstack/neutron: [WIP] L2 Agent Extension Fullstack Test https://review.openstack.org/345631 | 19:13 |
*** ihrachys has quit IRC | 19:14 | |
openstackgerrit | Nate Johnston proposed openstack/neutron: [WIP] L3 Agent Extension Fullstack Test https://review.openstack.org/345631 | 19:15 |
*** ihrachys has joined #openstack-neutron | 19:16 | |
*** nmagnezi has quit IRC | 19:18 | |
*** sterdnotshaken has joined #openstack-neutron | 19:18 | |
*** fifieldt has joined #openstack-neutron | 19:18 | |
*** baoli has joined #openstack-neutron | 19:20 | |
*** baoli has quit IRC | 19:22 | |
*** baoli has joined #openstack-neutron | 19:22 | |
*** ajmiller has quit IRC | 19:22 | |
*** ajmiller has joined #openstack-neutron | 19:23 | |
*** nplanel has quit IRC | 19:25 | |
*** ihrachys has quit IRC | 19:27 | |
*** emagana has joined #openstack-neutron | 19:28 | |
armax | sbelous: ping | 19:28 |
*** zhhuabj has joined #openstack-neutron | 19:29 | |
armax | it looks like the gate-tempest-dsvm-neutron-identity-v3-only-full-nv is belly up | 19:29 |
armax | http://logs.openstack.org/85/345185/2/check/gate-tempest-dsvm-neutron-identity-v3-only-full-nv/0b88651/logs/screen-g-api.txt.gz?level=TRACE#_2016-07-21_18_16_57_171 | 19:29 |
*** beagles is now known as beagles_biab | 19:30 | |
*** zkassab has quit IRC | 19:31 | |
*** jerrygb has quit IRC | 19:32 | |
*** ihrachys has joined #openstack-neutron | 19:33 | |
*** singhj has joined #openstack-neutron | 19:35 | |
*** ramishra has quit IRC | 19:36 | |
*** aranjan has joined #openstack-neutron | 19:37 | |
*** ramishra has joined #openstack-neutron | 19:37 | |
*** john-davidge has quit IRC | 19:37 | |
*** vishwanathj has joined #openstack-neutron | 19:37 | |
*** ByPasS has joined #openstack-neutron | 19:37 | |
*** zkassab has joined #openstack-neutron | 19:37 | |
*** a_ta has quit IRC | 19:40 | |
*** a_ta has joined #openstack-neutron | 19:40 | |
*** jerrygb has joined #openstack-neutron | 19:40 | |
*** svenkat has joined #openstack-neutron | 19:42 | |
*** a_ta has quit IRC | 19:45 | |
*** aranjan has quit IRC | 19:45 | |
*** aranjan_ has joined #openstack-neutron | 19:45 | |
*** aranjan_ has quit IRC | 19:45 | |
*** aranjan has joined #openstack-neutron | 19:46 | |
*** marst has joined #openstack-neutron | 19:47 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: DNM: test linuxbridge multinode grenade fixes https://review.openstack.org/345488 | 19:49 |
*** claudiub has joined #openstack-neutron | 19:49 | |
*** ihrachys has quit IRC | 19:50 | |
*** baoli has quit IRC | 19:50 | |
*** gvrangan has joined #openstack-neutron | 19:52 | |
*** a_ta has joined #openstack-neutron | 19:52 | |
*** mickeys has joined #openstack-neutron | 19:53 | |
*** a_ta has quit IRC | 19:54 | |
*** a_ta has joined #openstack-neutron | 19:54 | |
*** ociuhandu has quit IRC | 19:56 | |
*** shashank_hegde has quit IRC | 19:57 | |
*** singhj has quit IRC | 19:57 | |
*** emagana has quit IRC | 19:58 | |
openstackgerrit | Ann Taraday proposed openstack/neutron: [WIP] Refactor setting OSprofiler for db calls https://review.openstack.org/340324 | 19:59 |
*** ijw has quit IRC | 20:00 | |
*** mickeys has quit IRC | 20:01 | |
*** mickeys has joined #openstack-neutron | 20:02 | |
*** shashank_hegde has joined #openstack-neutron | 20:02 | |
*** ijw_ has joined #openstack-neutron | 20:03 | |
*** jprovazn has quit IRC | 20:04 | |
*** singhj has joined #openstack-neutron | 20:05 | |
*** mickeys has quit IRC | 20:06 | |
*** aranjan has quit IRC | 20:07 | |
*** ijw_ has quit IRC | 20:07 | |
*** emagana has joined #openstack-neutron | 20:07 | |
*** zkassab has quit IRC | 20:07 | |
*** aranjan has joined #openstack-neutron | 20:08 | |
*** gvrangan has quit IRC | 20:08 | |
*** SKipp has joined #openstack-neutron | 20:09 | |
*** singhj has quit IRC | 20:10 | |
*** emagana has quit IRC | 20:11 | |
*** jckasper has quit IRC | 20:12 | |
*** jckasper has joined #openstack-neutron | 20:12 | |
*** jckasper has quit IRC | 20:13 | |
*** iranzo has quit IRC | 20:13 | |
*** jckasper has joined #openstack-neutron | 20:13 | |
*** jckasper has quit IRC | 20:14 | |
*** salv-orlando has joined #openstack-neutron | 20:14 | |
*** sterdnotshaken has quit IRC | 20:14 | |
*** DaveJ__ has joined #openstack-neutron | 20:17 | |
*** singhj has joined #openstack-neutron | 20:19 | |
*** gouthamr has quit IRC | 20:21 | |
*** sterdnotshaken has joined #openstack-neutron | 20:21 | |
*** singhj has quit IRC | 20:23 | |
*** SamYaple has quit IRC | 20:23 | |
*** tyrola has quit IRC | 20:24 | |
*** akshai_ has quit IRC | 20:24 | |
*** singhj has joined #openstack-neutron | 20:24 | |
*** kbringard has joined #openstack-neutron | 20:25 | |
*** corey_ has quit IRC | 20:26 | |
openstackgerrit | boden proposed openstack/neutron: Add FIP status change notifications https://review.openstack.org/345654 | 20:27 |
*** agireud has quit IRC | 20:30 | |
*** agireud has joined #openstack-neutron | 20:31 | |
*** moshele has joined #openstack-neutron | 20:33 | |
*** akshai has joined #openstack-neutron | 20:36 | |
*** gvrangan has joined #openstack-neutron | 20:36 | |
*** ijw has joined #openstack-neutron | 20:37 | |
*** harlowja has joined #openstack-neutron | 20:39 | |
*** ijw has quit IRC | 20:41 | |
*** abregman has joined #openstack-neutron | 20:42 | |
*** tyrola has joined #openstack-neutron | 20:45 | |
*** jckasper has joined #openstack-neutron | 20:46 | |
*** tyrola has quit IRC | 20:49 | |
*** Leo_ has quit IRC | 20:50 | |
*** moshele has quit IRC | 20:51 | |
*** sindhude has quit IRC | 20:53 | |
*** BigWillie has quit IRC | 20:55 | |
*** salv-orlando has quit IRC | 20:56 | |
*** ociuhandu has joined #openstack-neutron | 20:57 | |
*** ametts has quit IRC | 20:59 | |
*** jckasper has quit IRC | 21:00 | |
*** haplo37_ has quit IRC | 21:00 | |
*** jckasper has joined #openstack-neutron | 21:01 | |
*** dasanind has quit IRC | 21:02 | |
*** jckasper has quit IRC | 21:02 | |
*** tyrola has joined #openstack-neutron | 21:03 | |
*** shashank_hegde has quit IRC | 21:05 | |
*** obondarev has quit IRC | 21:05 | |
*** jckasper has joined #openstack-neutron | 21:06 | |
*** tonytan4ever has quit IRC | 21:06 | |
openstackgerrit | boden proposed openstack/neutron-lib: Generate API report tooling https://review.openstack.org/338571 | 21:07 |
*** tonytan4ever has joined #openstack-neutron | 21:08 | |
*** gouthamr has joined #openstack-neutron | 21:08 | |
*** portdirect has quit IRC | 21:11 | |
*** elo has joined #openstack-neutron | 21:11 | |
*** shashank_hegde has joined #openstack-neutron | 21:11 | |
*** sindhude has joined #openstack-neutron | 21:11 | |
*** janzian has quit IRC | 21:11 | |
*** ranjithd1 has quit IRC | 21:14 | |
*** julim_ has quit IRC | 21:14 | |
*** gouthamr_ has joined #openstack-neutron | 21:16 | |
*** aranjan has quit IRC | 21:18 | |
*** gouthamr has quit IRC | 21:19 | |
*** aranjan has joined #openstack-neutron | 21:19 | |
*** banix has joined #openstack-neutron | 21:20 | |
*** aranjan has quit IRC | 21:21 | |
*** ajmiller has quit IRC | 21:22 | |
*** ajmiller has joined #openstack-neutron | 21:22 | |
*** njohnston is now known as njohnston|afk | 21:22 | |
*** aranjan has joined #openstack-neutron | 21:23 | |
*** aranjan has quit IRC | 21:23 | |
*** aranjan has joined #openstack-neutron | 21:23 | |
*** ajmiller has quit IRC | 21:23 | |
openstackgerrit | Manjeet Singh Bhatia proposed openstack/neutron: Add OVO for dns Objects https://review.openstack.org/334695 | 21:23 |
*** ajmiller has joined #openstack-neutron | 21:24 | |
*** ihrachys has joined #openstack-neutron | 21:25 | |
*** thorst_ has quit IRC | 21:26 | |
*** aranjan has quit IRC | 21:29 | |
*** ihrachys has quit IRC | 21:29 | |
*** claudiub has quit IRC | 21:30 | |
*** sdague_ has quit IRC | 21:30 | |
*** janzian has joined #openstack-neutron | 21:31 | |
*** charliekang has quit IRC | 21:31 | |
*** janzian has quit IRC | 21:32 | |
*** janzian has joined #openstack-neutron | 21:32 | |
*** yeungp has joined #openstack-neutron | 21:32 | |
*** tyrola has quit IRC | 21:33 | |
*** tyrola has joined #openstack-neutron | 21:33 | |
*** dave-mccowan has quit IRC | 21:37 | |
*** yeungp has quit IRC | 21:39 | |
*** thorst_ has joined #openstack-neutron | 21:40 | |
*** ijw has joined #openstack-neutron | 21:40 | |
*** harlowja has quit IRC | 21:41 | |
*** pece has quit IRC | 21:45 | |
*** thorst_ has quit IRC | 21:45 | |
*** armax has quit IRC | 21:46 | |
*** clenimar has quit IRC | 21:47 | |
*** harlowja has joined #openstack-neutron | 21:48 | |
*** harlowja has quit IRC | 21:48 | |
*** thorst_ has joined #openstack-neutron | 21:49 | |
*** akshai has quit IRC | 21:51 | |
*** thorst_ has quit IRC | 21:53 | |
*** svenkat has quit IRC | 21:54 | |
*** emagana has joined #openstack-neutron | 21:54 | |
*** amotoki has joined #openstack-neutron | 21:55 | |
*** ajmiller has quit IRC | 21:55 | |
*** ajmiller has joined #openstack-neutron | 21:56 | |
openstackgerrit | Anindita Das proposed openstack/neutron: Refactoring config options for extension opts https://review.openstack.org/345486 | 21:56 |
*** sindhude has quit IRC | 21:56 | |
*** armax has joined #openstack-neutron | 21:57 | |
*** ihrachys has joined #openstack-neutron | 21:57 | |
*** banix has quit IRC | 21:57 | |
openstackgerrit | Anindita Das proposed openstack/neutron: Refactoring config options for extension opts https://review.openstack.org/345486 | 21:57 |
*** sindhude has joined #openstack-neutron | 21:58 | |
amuller | Drivers meeting starting in #openstack-meeting | 21:59 |
openstackgerrit | Anindita Das proposed openstack/neutron: Refactoring config options for extension opts https://review.openstack.org/345486 | 22:01 |
ihrachys | kevinbenton: have we broken linuxbridge gate somehow? I see "sudo: ovs-vsctl: command not found" | 22:01 |
*** maishsk has quit IRC | 22:01 | |
kevinbenton | ihrachys: yeah, just saw that | 22:01 |
kevinbenton | ihrachys: gonna dig in after drivers meeting | 22:01 |
ihrachys | kevinbenton: cool. I won't be in shape after | 22:02 |
*** baoli has joined #openstack-neutron | 22:02 | |
*** clenimar has joined #openstack-neutron | 22:02 | |
*** sindhude has quit IRC | 22:03 | |
openstackgerrit | Anindita Das proposed openstack/neutron: Refactoring config options for common config opts https://review.openstack.org/344281 | 22:04 |
*** sputnik1_ has joined #openstack-neutron | 22:05 | |
*** kbringard has quit IRC | 22:05 | |
*** trevormc has quit IRC | 22:05 | |
kevinbenton | ihrachys: ack | 22:07 |
*** thorst_ has joined #openstack-neutron | 22:07 | |
*** sputnik13 has quit IRC | 22:07 | |
*** baoli has quit IRC | 22:07 | |
*** thorst_ has quit IRC | 22:08 | |
*** salv-orlando has joined #openstack-neutron | 22:08 | |
openstackgerrit | Adolfo Duarte proposed openstack/neutron: RPC server side for trunk driver https://review.openstack.org/339283 | 22:08 |
*** tyrola has quit IRC | 22:09 | |
*** salv-orl_ has joined #openstack-neutron | 22:14 | |
*** salv-orlando has quit IRC | 22:17 | |
*** emagana has quit IRC | 22:19 | |
*** ijw has quit IRC | 22:22 | |
*** rtheis has quit IRC | 22:22 | |
*** aranjan has joined #openstack-neutron | 22:23 | |
*** marst has quit IRC | 22:25 | |
*** marst has joined #openstack-neutron | 22:25 | |
*** tyrola has joined #openstack-neutron | 22:25 | |
*** marst has quit IRC | 22:26 | |
*** singhj has quit IRC | 22:26 | |
*** aranjan has quit IRC | 22:27 | |
*** tyrola has quit IRC | 22:27 | |
*** emagana has joined #openstack-neutron | 22:27 | |
openstackgerrit | Merged openstack/python-neutronclient: Updated from global requirements https://review.openstack.org/340055 | 22:29 |
*** singhj has joined #openstack-neutron | 22:32 | |
*** tbachman_ has joined #openstack-neutron | 22:34 | |
*** tbachman has quit IRC | 22:34 | |
*** tbachman_ is now known as tbachman | 22:34 | |
*** dane_leblanc has quit IRC | 22:35 | |
*** singhj has quit IRC | 22:37 | |
*** wolverin_ has joined #openstack-neutron | 22:37 | |
*** wolverineav has quit IRC | 22:41 | |
*** salv-orl_ has quit IRC | 22:41 | |
*** salv-orlando has joined #openstack-neutron | 22:43 | |
*** mickeys has joined #openstack-neutron | 22:44 | |
*** techcet has quit IRC | 22:46 | |
*** wolverin_ has quit IRC | 22:46 | |
*** salv-orlando has quit IRC | 22:48 | |
*** banix has joined #openstack-neutron | 22:52 | |
*** boden has quit IRC | 22:54 | |
*** jerrygb has quit IRC | 22:55 | |
openstackgerrit | Rawlin Peters proposed openstack/neutron: Add trunk create/delete notifications and standardize payload https://review.openstack.org/341212 | 22:56 |
*** akshai has joined #openstack-neutron | 22:57 | |
kevinbenton | amuller, ajo: so i downloaded a bunch of ovs-vswitchd logs files from logs.openstack .org | 23:00 |
ajo | hey kevinbenton how does it look | 23:00 |
*** ihrachys has quit IRC | 23:00 | |
kevinbenton | it looks like this is hit relatively frequently | 23:00 |
*** zzzeek_afk is now known as zzzeek | 23:00 | |
ajo | btw, kevinbenton did you see otherwiseguy's patch ? | 23:00 |
kevinbenton | the one for interface waiting? | 23:00 |
ajo | kevinbenton, yes | 23:00 |
ajo | I suspect it could be somehow related | 23:01 |
ajo | kevinbenton, I'm trying to arrange our bash hammer with --no-wait | 23:01 |
ajo | + ovs-vsctl --if-exists del-port tap561cfc60-fb | 23:01 |
ajo | + ovs-vsctl --no-wait add-port br-int tap561cfc60-fb -- set Interface tap561cfc60-fb external-ids:iface-id=561cfc60-fb83-4956-a7bd-bc7bd75ea25d external-ids:iface-status=active external-ids:attached-mac=fa:16:3e:24:0f:b0 type=internal | 23:01 |
ajo | + ip link set tap561cfc60-fb address fa:16:3e:24:0f:b0 | 23:01 |
ajo | Cannot find device "tap561cfc60-fb" | 23:01 |
ajo | [root@devstack hammer-ovs-ports]# ip link set tap561cfc60-fb address fa:16:3e:24:0f:b0 | 23:01 |
kevinbenton | ajo: yeah, that's why i suspected the switch to ovsdb may have brought this one | 23:01 |
ajo | I was going to sleep, but if you want to take it from there... | 23:01 |
ajo | I guess we need to retry on the link set until it works | 23:02 |
*** wolverineav has joined #openstack-neutron | 23:02 | |
ajo | and then next move into the ns | 23:02 |
kevinbenton | ajo: i won't be able to tonight i don't think | 23:02 |
kevinbenton | ajo: need to fix linux bridge job that i broke | 23:02 |
ajo | kevinbenton, ok, will sort it out tomorrow | 23:02 |
ajo | kevinbenton, I suspect that may be the ofport retry logic exits earlier in some cases | 23:02 |
ajo | may be | 23:02 |
kevinbenton | ajo: yeah, perhaps the cause is moving into the namespace before port is assigned | 23:03 |
kevinbenton | ajo: so the --no-wait might trigger it | 23:03 |
ajo | kevinbenton, yeah, when looking at the ovs code (& gdbing ...) | 23:03 |
*** tmorin has joined #openstack-neutron | 23:04 | |
ajo | I found something else (well flavio leitner helped a bit) | 23:04 |
*** ijw has joined #openstack-neutron | 23:04 | |
ajo | kevinbenton, ovs-vswitchd calls the kernel to get the kernel datapath of portid | 23:04 |
ajo | but then... | 23:04 |
ajo | it tries to access the device for more details | 23:04 |
ajo | and allocates an userland ofport id | 23:04 |
ajo | so... | 23:04 |
ajo | I suspect | 23:04 |
ajo | if you move the device between both steps | 23:04 |
ajo | boom. chaos | 23:04 |
kevinbenton | ajo: that would be nice | 23:05 |
ajo | still to be proven | 23:05 |
kevinbenton | ajo: because it means we can fix on neutron side | 23:05 |
amuller | Terry's patch would fix that | 23:05 |
kevinbenton | ajo: with the interface wait | 23:05 |
ajo | yes, exactly | 23:05 |
amuller | Terry's patch also fixes the most common functional test failure (the rebuild_ns thing) | 23:05 |
ajo | I have high hopes on his patch! ... and on getting a reproducer tomorrow | 23:05 |
ajo | amuller, which test fails? | 23:05 |
kevinbenton | ajo: https://review.openstack.org/#/c/344850/ | 23:05 |
kevinbenton | ajo: yeah, his should close those bugs | 23:05 |
*** edmondsw has quit IRC | 23:06 | |
kevinbenton | ajo: tests that expect interfaces to exist after adding them :) | 23:06 |
kevinbenton | ajo: or for them to be deleted after deleting them | 23:06 |
*** wolverineav has quit IRC | 23:06 | |
ajo | ohh | 23:06 |
ajo | that reminds me of... | 23:06 |
kevinbenton | you know, crazy things ;) | 23:06 |
ajo | + ovs-vsctl --no-wait add-port br-int tap561cfc60-fb -- set Interface tap561cfc60-fb external-ids:iface-id=561cfc60-fb83-4956-a7bd-bc7bd75ea25d external-ids:iface-status=active external-ids:attached-mac=fa:16:3e:24:0f:b0 type=internal | 23:06 |
ajo | + ip link set tap561cfc60-fb address fa:16:3e:24:0f:b0 | 23:06 |
ajo | Cannot find device "tap561cfc60-fb" | 23:06 |
amuller | ajo: https://bugs.launchpad.net/neutron/+bug/1604370 | 23:06 |
openstack | Launchpad bug 1604370 in neutron "functional: test_legacy_router_ns_rebuild is unstable" [High,Confirmed] | 23:06 |
ajo | --no-wait like | 23:06 |
ajo | but when we add a device | 23:07 |
*** ajmiller has quit IRC | 23:07 | |
ajo | we're waiting for the ofport now | 23:07 |
*** ajmiller has joined #openstack-neutron | 23:07 | |
ajo | may be there's still some time between ofport is set, and device really available | 23:07 |
ajo | or the ofport wait retry logic is broken | 23:07 |
ajo | I wonder why debugging this kind of deep ***t is one of the things I enjoy the most... | 23:08 |
ajo | ***t = failures | 23:08 |
ajo | O:) | 23:09 |
ajo | gn folks | 23:09 |
* ajo needs some sleep | 23:09 | |
amuller | ajo: night | 23:09 |
kevinbenton | ajo: night | 23:10 |
*** liuyulong has quit IRC | 23:12 | |
*** yuelongguang has quit IRC | 23:14 | |
*** ajmiller has quit IRC | 23:15 | |
*** ajmiller has joined #openstack-neutron | 23:15 | |
*** jckasper has quit IRC | 23:17 | |
*** jckasper has joined #openstack-neutron | 23:18 | |
*** xinliang has quit IRC | 23:21 | |
*** jckasper has quit IRC | 23:22 | |
*** r-daneel has quit IRC | 23:23 | |
openstackgerrit | Doug Wiegley proposed openstack/neutron-specs: LBaaS project spinout https://review.openstack.org/310805 | 23:23 |
*** aranjan has joined #openstack-neutron | 23:24 | |
*** akshai has quit IRC | 23:26 | |
*** yuelongguang has joined #openstack-neutron | 23:26 | |
*** liuyulong has joined #openstack-neutron | 23:26 | |
*** tbachman_ has joined #openstack-neutron | 23:27 | |
*** harbor has joined #openstack-neutron | 23:28 | |
*** harbor is now known as portdirect | 23:28 | |
*** tbachman has quit IRC | 23:30 | |
*** tbachman_ is now known as tbachman | 23:30 | |
*** eilert has quit IRC | 23:30 | |
*** aranjan has quit IRC | 23:30 | |
*** wolverineav has joined #openstack-neutron | 23:33 | |
*** tflynn_ has joined #openstack-neutron | 23:35 | |
*** wolverineav has quit IRC | 23:38 | |
*** wolverineav has joined #openstack-neutron | 23:38 | |
*** tflynn has quit IRC | 23:38 | |
*** djan has joined #openstack-neutron | 23:39 | |
*** xinliang has joined #openstack-neutron | 23:39 | |
*** tyrola has joined #openstack-neutron | 23:39 | |
*** jamesdenton has joined #openstack-neutron | 23:39 | |
*** sterdnotshaken1 has joined #openstack-neutron | 23:40 | |
*** tflynn_ has quit IRC | 23:40 | |
*** lujinluo has joined #openstack-neutron | 23:42 | |
*** sterdnotshaken has quit IRC | 23:42 | |
*** tyrola has quit IRC | 23:43 | |
*** nplanel has joined #openstack-neutron | 23:50 | |
*** danofsatx has joined #openstack-neutron | 23:51 | |
*** tbachman_ has joined #openstack-neutron | 23:55 | |
*** aranjan has joined #openstack-neutron | 23:57 | |
*** tbachman has quit IRC | 23:58 | |
*** tbachman_ is now known as tbachman | 23:58 | |
*** ranjithd has joined #openstack-neutron | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!