*** Sukhdev has quit IRC | 00:00 | |
*** abnicken has quit IRC | 00:00 | |
*** yb has joined #openstack-neutron | 00:00 | |
*** sthillma has quit IRC | 00:02 | |
*** sthillma has joined #openstack-neutron | 00:03 | |
*** emagana has quit IRC | 00:03 | |
*** Sukhdev has joined #openstack-neutron | 00:03 | |
*** emagana has joined #openstack-neutron | 00:04 | |
*** salv-orl_ has quit IRC | 00:06 | |
*** emagana has quit IRC | 00:08 | |
*** sthillma has quit IRC | 00:08 | |
*** sthillma has joined #openstack-neutron | 00:09 | |
*** rcernin has quit IRC | 00:12 | |
kevinbenton | haleyb: still there? | 00:14 |
---|---|---|
*** lujinluo has joined #openstack-neutron | 00:15 | |
openstackgerrit | Henry Gessau proposed openstack/neutron: [WIP] Support unique labels for alembic branches https://review.openstack.org/333633 | 00:18 |
*** aranjan has joined #openstack-neutron | 00:19 | |
*** thorst_away has joined #openstack-neutron | 00:24 | |
mlavalle | kevinbenton: ping | 00:24 |
*** nplanel has quit IRC | 00:25 | |
kevinbenton | mlavalle: pong | 00:27 |
mlavalle | kevinbenton: yb and are we are lookin at your comment to https://review.openstack.org/#/c/313291/ | 00:28 |
kevinbenton | mlavalle: yb? | 00:29 |
yb | hi | 00:29 |
mlavalle | kevinbenton: yb is the author of the patchset, his name is Bin Yu | 00:29 |
kevinbenton | ok okay | 00:29 |
kevinbenton | yeah, so i'm a little worried about previous_name stuff | 00:29 |
kevinbenton | because if it's important for something we have to worry about race conditions during concurrent updates to the same object | 00:30 |
mlavalle | kevinbenton: but that didn't change | 00:30 |
mlavalle | in this patchset, I mean | 00:31 |
mlavalle | when we update a port with an new dns_name, that will change the port's records in the external dns servioce | 00:31 |
kevinbenton | mlavalle: but this schema didn't exist before, how were you getting the previous name? | 00:32 |
mlavalle | but the external dns service doesn't have an update operation | 00:32 |
*** dane_leblanc__ has quit IRC | 00:32 | |
mlavalle | we just moved dns_name from one table to another | 00:32 |
mlavalle | from ports to portsdnses | 00:33 |
*** s3wong has joined #openstack-neutron | 00:33 | |
kevinbenton | mlavalle: oh i see now | 00:35 |
kevinbenton | mlavalle: that schema already exists | 00:35 |
mlavalle | yeap | 00:35 |
mlavalle | that's how dns has been working since Mitaka | 00:35 |
kevinbenton | mlavalle: ok, -1 has been removed | 00:35 |
mlavalle | kevinbenton: thanks | 00:35 |
kevinbenton | mlavalle: that schema worries me though | 00:35 |
kevinbenton | mlavalle: if two updates to a port come in at the same time | 00:35 |
*** tflynn has joined #openstack-neutron | 00:36 | |
kevinbenton | mlavalle: you might have two requests to external dns | 00:36 |
kevinbenton | mlavalle: that both say the same old value | 00:36 |
kevinbenton | mlavalle: and have different new values | 00:36 |
*** numans has joined #openstack-neutron | 00:36 | |
kevinbenton | mlavalle: and an intermediary one creates a new record | 00:37 |
kevinbenton | mlavalle: then the second one creates another new record | 00:37 |
kevinbenton | mlavalle: but the second one doesn't delete the new record the first creates | 00:37 |
*** vhosakot has quit IRC | 00:38 | |
mlavalle | kevinbenton: when we change old and new, we change them in the same transaction | 00:39 |
kevinbenton | mlavalle: right, but both will update the old value to the same thing, and then the new value to something else | 00:42 |
kevinbenton | mlavalle: unless you did it with a compare and swap where you specify what the old value has to be | 00:43 |
mlavalle | kevinbenton: No, that is a improvement we need to add | 00:43 |
mlavalle | kevinbenton: we are going to do that is a follow up patchset | 00:43 |
mlavalle | kevinbenton: good point | 00:43 |
kevinbenton | mlavalle: ack. well unless you need to back-port it, don't worry about it | 00:44 |
kevinbenton | mlavalle: once revision numbers get added, all updates will be compare and swap | 00:44 |
mlavalle | kevinbenton: ahh great. Thanks! | 00:44 |
kevinbenton | mlavalle: just something to keep in the back of your head in case we get a bug report about stale records left on external dns or something | 00:45 |
mlavalle | kevinbenton: yes, thanks! | 00:45 |
*** aranjan has quit IRC | 00:47 | |
*** aranjan has joined #openstack-neutron | 00:48 | |
*** mickeys has quit IRC | 00:49 | |
*** mfuruta has joined #openstack-neutron | 00:49 | |
*** gangil has quit IRC | 00:49 | |
*** namnh has joined #openstack-neutron | 00:57 | |
*** zhhuabj has quit IRC | 00:57 | |
*** zhhuabj has joined #openstack-neutron | 00:57 | |
*** regXboi has joined #openstack-neutron | 01:00 | |
*** tflynn has quit IRC | 01:00 | |
*** abhiraut has quit IRC | 01:00 | |
*** SumitNaiksatam has joined #openstack-neutron | 01:01 | |
*** zhhuabj has quit IRC | 01:01 | |
*** zhhuabj has joined #openstack-neutron | 01:01 | |
*** Sukhdev has quit IRC | 01:01 | |
*** djan has quit IRC | 01:02 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Use get_vif_port_set in restore_local_vlan_map https://review.openstack.org/333642 | 01:02 |
*** Sukhdev has joined #openstack-neutron | 01:04 | |
*** julim has joined #openstack-neutron | 01:08 | |
*** salv-orlando has joined #openstack-neutron | 01:08 | |
*** Sukhdev has quit IRC | 01:08 | |
*** shashank_hegde has quit IRC | 01:11 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Revert "OVS: don't throw KeyError when duplicate VLAN tags exist" https://review.openstack.org/333644 | 01:11 |
*** salv-orlando has quit IRC | 01:15 | |
*** aranjan has quit IRC | 01:17 | |
*** aranjan has joined #openstack-neutron | 01:17 | |
*** aranjan has quit IRC | 01:22 | |
*** wolverineav has quit IRC | 01:22 | |
*** sdague has quit IRC | 01:23 | |
*** wolverineav has joined #openstack-neutron | 01:23 | |
*** kevo has quit IRC | 01:26 | |
*** pacoblox has joined #openstack-neutron | 01:30 | |
*** EinstCrazy has joined #openstack-neutron | 01:31 | |
*** vhosakot has joined #openstack-neutron | 01:32 | |
haleyb | kevinbenton: pong, see your changes | 01:33 |
*** EinstCrazy has quit IRC | 01:33 | |
*** esmiurium has quit IRC | 01:34 | |
*** Peter___ has quit IRC | 01:36 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements https://review.openstack.org/333435 | 01:36 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron-fwaas: Updated from global requirements https://review.openstack.org/332322 | 01:37 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/os-vif: Updated from global requirements https://review.openstack.org/331901 | 01:39 |
*** amotoki has joined #openstack-neutron | 01:39 | |
*** tbachman_ has joined #openstack-neutron | 01:39 | |
*** tbachman has quit IRC | 01:40 | |
*** tbachman_ is now known as tbachman | 01:40 | |
*** mlavalle has quit IRC | 01:41 | |
*** asingh has quit IRC | 01:42 | |
*** karad has joined #openstack-neutron | 01:44 | |
*** tbachman_ has joined #openstack-neutron | 01:45 | |
*** EinstCrazy has joined #openstack-neutron | 01:45 | |
*** stanzgy has joined #openstack-neutron | 01:45 | |
*** tbachman has quit IRC | 01:47 | |
*** tbachman_ is now known as tbachman | 01:47 | |
*** gvrangan has quit IRC | 01:51 | |
*** wolverineav has quit IRC | 01:52 | |
*** stanzgy_ has joined #openstack-neutron | 01:52 | |
*** gouthamr_ is now known as gouthamr | 01:54 | |
*** baojg has joined #openstack-neutron | 01:54 | |
*** dave-mccowan has quit IRC | 01:56 | |
*** asingh has joined #openstack-neutron | 01:58 | |
*** dingboopt has quit IRC | 01:58 | |
*** s3wong has quit IRC | 01:59 | |
*** wolverineav has joined #openstack-neutron | 02:01 | |
*** baoli has joined #openstack-neutron | 02:01 | |
*** gangil has joined #openstack-neutron | 02:03 | |
*** vhosakot has quit IRC | 02:07 | |
*** sthillma has quit IRC | 02:10 | |
*** regXboi has quit IRC | 02:11 | |
*** annp has joined #openstack-neutron | 02:14 | |
*** salv-orlando has joined #openstack-neutron | 02:15 | |
*** thorst_away has quit IRC | 02:16 | |
*** baoli has quit IRC | 02:16 | |
*** thorst_away has joined #openstack-neutron | 02:17 | |
openstackgerrit | Brian Haley proposed openstack/neutron: DNM: DVR: Debug parent patch failure https://review.openstack.org/333036 | 02:20 |
*** tflynn has joined #openstack-neutron | 02:20 | |
*** asingh has quit IRC | 02:21 | |
*** ijw has quit IRC | 02:22 | |
*** yamahata has quit IRC | 02:24 | |
*** thorst_away has quit IRC | 02:25 | |
openstackgerrit | Songming Yan proposed openstack/python-neutronclient: Fix the problem of mox https://review.openstack.org/330933 | 02:27 |
*** jhershbe has joined #openstack-neutron | 02:27 | |
*** salv-orlando has quit IRC | 02:27 | |
openstackgerrit | Songming Yan proposed openstack/python-neutronclient: Fix the problem of mox in test_shell.py https://review.openstack.org/330933 | 02:29 |
*** asingh has joined #openstack-neutron | 02:31 | |
*** asingh has quit IRC | 02:31 | |
*** zhhuabj has quit IRC | 02:32 | |
openstackgerrit | Songming Yan proposed openstack/python-neutronclient: Add the guideline for vlan-aware-vms https://review.openstack.org/328736 | 02:35 |
openstackgerrit | Songming Yan proposed openstack/python-neutronclient: Add the guideline for vlan-aware-vms https://review.openstack.org/328736 | 02:36 |
*** dave-mccowan has joined #openstack-neutron | 02:37 | |
*** lujinluo has quit IRC | 02:42 | |
*** tflynn has quit IRC | 02:46 | |
*** vhosakot has joined #openstack-neutron | 02:47 | |
openstackgerrit | bin proposed openstack/neutron: Refactor DNS integration out of DB core plugin https://review.openstack.org/313291 | 02:48 |
*** emagana has joined #openstack-neutron | 02:50 | |
*** zhhuabj has joined #openstack-neutron | 02:50 | |
*** M00nr41n has joined #openstack-neutron | 02:53 | |
*** emagana has quit IRC | 02:54 | |
*** gouthamr has quit IRC | 02:55 | |
*** yuanying has quit IRC | 02:55 | |
*** vhosakot has quit IRC | 02:58 | |
*** karad has quit IRC | 02:59 | |
*** ramishra has joined #openstack-neutron | 02:59 | |
*** shivrao has quit IRC | 03:01 | |
*** tbachman has quit IRC | 03:01 | |
*** lujinluo has joined #openstack-neutron | 03:01 | |
*** ramishra has quit IRC | 03:01 | |
mestery | garyk: This could use your devstack love if you have a moment: https://review.openstack.org/#/c/327278/ | 03:03 |
mestery | garyk: It's a very simple change which unblocks 3 networking-ovn changes. Thanks! | 03:03 |
*** wolverineav has quit IRC | 03:06 | |
*** tflynn has joined #openstack-neutron | 03:07 | |
*** ramishra has joined #openstack-neutron | 03:07 | |
openstackgerrit | Dongcan Ye proposed openstack/neutron-dynamic-routing: Allow root privilege for mkdir https://review.openstack.org/333668 | 03:08 |
*** wolverineav has joined #openstack-neutron | 03:10 | |
*** jhershbe has quit IRC | 03:13 | |
*** tbachman has joined #openstack-neutron | 03:13 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron-vpnaas: Updated from global requirements https://review.openstack.org/333437 | 03:14 |
*** wolverineav has quit IRC | 03:14 | |
*** fragatina has joined #openstack-neutron | 03:15 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/os-vif: Updated from global requirements https://review.openstack.org/331901 | 03:16 |
*** ramishra has quit IRC | 03:16 | |
*** fnaval has quit IRC | 03:16 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-neutronclient: Updated from global requirements https://review.openstack.org/331183 | 03:17 |
*** ramishra has joined #openstack-neutron | 03:22 | |
*** rm_work has quit IRC | 03:22 | |
*** thorst_away has joined #openstack-neutron | 03:23 | |
*** rm_work has joined #openstack-neutron | 03:25 | |
*** lujinluo has quit IRC | 03:26 | |
*** amotoki has quit IRC | 03:26 | |
*** fnaval has joined #openstack-neutron | 03:27 | |
*** tflynn has quit IRC | 03:27 | |
*** wolverineav has joined #openstack-neutron | 03:27 | |
*** salv-orlando has joined #openstack-neutron | 03:29 | |
*** thorst_away has quit IRC | 03:30 | |
*** wolverineav has quit IRC | 03:32 | |
*** wolverineav has joined #openstack-neutron | 03:34 | |
*** rcernin has joined #openstack-neutron | 03:34 | |
*** ramishra has quit IRC | 03:37 | |
*** salv-orlando has quit IRC | 03:37 | |
*** fragatina has quit IRC | 03:40 | |
*** gongysh has joined #openstack-neutron | 03:42 | |
openstackgerrit | Aradhana Singh proposed openstack/neutron: [WIP] Auto Scheduling for Segments https://review.openstack.org/333716 | 03:43 |
*** ramishra has joined #openstack-neutron | 03:43 | |
*** amotoki has joined #openstack-neutron | 03:44 | |
*** yamamot__ has joined #openstack-neutron | 03:47 | |
*** regXboi has joined #openstack-neutron | 03:47 | |
*** ramishra has quit IRC | 03:49 | |
*** yuanying has joined #openstack-neutron | 03:50 | |
*** baojg has quit IRC | 03:50 | |
*** baojg has joined #openstack-neutron | 03:52 | |
*** ramishra has joined #openstack-neutron | 03:54 | |
*** aranjan has joined #openstack-neutron | 03:54 | |
*** shashank_hegde has joined #openstack-neutron | 03:55 | |
*** tflynn has joined #openstack-neutron | 03:55 | |
*** amotoki has quit IRC | 04:00 | |
*** lujinluo has joined #openstack-neutron | 04:01 | |
*** amotoki has joined #openstack-neutron | 04:03 | |
*** M00nr41n has quit IRC | 04:03 | |
*** Sukhdev has joined #openstack-neutron | 04:07 | |
*** jckasper has joined #openstack-neutron | 04:09 | |
*** regXboi has quit IRC | 04:09 | |
openstackgerrit | Lujin Luo proposed openstack/neutron: Add a composite unique key to floatingip table in Neutron database https://review.openstack.org/276018 | 04:09 |
*** shivrao has joined #openstack-neutron | 04:10 | |
*** regXboi has joined #openstack-neutron | 04:10 | |
*** shivrao_ has joined #openstack-neutron | 04:10 | |
*** markvoelker has quit IRC | 04:11 | |
*** shivrao has quit IRC | 04:14 | |
*** shivrao_ is now known as shivrao | 04:14 | |
*** prateek has joined #openstack-neutron | 04:18 | |
*** amotoki has quit IRC | 04:18 | |
*** yb1 has joined #openstack-neutron | 04:20 | |
*** david-lyle has quit IRC | 04:20 | |
*** david-lyle has joined #openstack-neutron | 04:20 | |
*** yb has quit IRC | 04:22 | |
*** regXboi has quit IRC | 04:24 | |
*** thorst_away has joined #openstack-neutron | 04:28 | |
*** baoli has joined #openstack-neutron | 04:28 | |
*** anilvenkata has joined #openstack-neutron | 04:31 | |
openstackgerrit | JianGang Weng proposed openstack/python-neutronclient: Fix auto-allocated-topology-show argument error https://review.openstack.org/333730 | 04:31 |
*** baoli has quit IRC | 04:33 | |
*** diga has joined #openstack-neutron | 04:33 | |
*** azbiswas has joined #openstack-neutron | 04:33 | |
*** ramishra has quit IRC | 04:34 | |
*** ivar-lazzaro has joined #openstack-neutron | 04:34 | |
*** thorst_away has quit IRC | 04:35 | |
*** slaweq has joined #openstack-neutron | 04:36 | |
*** ivar-laz_ has joined #openstack-neutron | 04:36 | |
*** links has joined #openstack-neutron | 04:37 | |
*** amotoki has joined #openstack-neutron | 04:38 | |
*** ivar-lazzaro has quit IRC | 04:39 | |
*** vikasc has joined #openstack-neutron | 04:39 | |
*** salv-orlando has joined #openstack-neutron | 04:39 | |
*** hynekm has joined #openstack-neutron | 04:39 | |
*** EinstCrazy has quit IRC | 04:40 | |
*** slaweq has quit IRC | 04:41 | |
*** ramishra has joined #openstack-neutron | 04:41 | |
*** prateek has quit IRC | 04:42 | |
*** _Fdaisuke_ has quit IRC | 04:43 | |
*** EinstCrazy has joined #openstack-neutron | 04:47 | |
*** ivar-laz_ has quit IRC | 04:48 | |
*** jckasper has quit IRC | 04:49 | |
*** jckasper has joined #openstack-neutron | 04:50 | |
*** links has quit IRC | 04:50 | |
*** links has joined #openstack-neutron | 04:50 | |
*** dave-mccowan has quit IRC | 04:50 | |
*** ramishra has quit IRC | 04:50 | |
*** salv-orlando has quit IRC | 04:51 | |
*** ratailor has joined #openstack-neutron | 04:52 | |
*** yamamot__ has quit IRC | 04:53 | |
*** gvrangan has joined #openstack-neutron | 04:54 | |
*** jckasper has quit IRC | 04:54 | |
*** ramishra has joined #openstack-neutron | 04:56 | |
*** azbiswas has quit IRC | 04:57 | |
*** M00nr41n has joined #openstack-neutron | 05:04 | |
*** azbiswas has joined #openstack-neutron | 05:05 | |
*** julim has quit IRC | 05:10 | |
*** markvoelker has joined #openstack-neutron | 05:11 | |
*** shahid__ has joined #openstack-neutron | 05:13 | |
*** obondarev has joined #openstack-neutron | 05:13 | |
*** salv-orlando has joined #openstack-neutron | 05:14 | |
*** emagana has joined #openstack-neutron | 05:16 | |
*** markvoelker has quit IRC | 05:16 | |
*** ramishra has quit IRC | 05:17 | |
*** ramishra has joined #openstack-neutron | 05:18 | |
*** emagana has quit IRC | 05:20 | |
*** obondarev has quit IRC | 05:21 | |
*** azbiswas_ has joined #openstack-neutron | 05:23 | |
*** prateek has joined #openstack-neutron | 05:25 | |
*** links has quit IRC | 05:25 | |
*** azbiswas has quit IRC | 05:25 | |
*** shausy has joined #openstack-neutron | 05:27 | |
*** thorst_away has joined #openstack-neutron | 05:33 | |
*** azbiswas_ has quit IRC | 05:34 | |
*** rcernin has quit IRC | 05:35 | |
*** mohankumar has joined #openstack-neutron | 05:37 | |
*** azbiswas has joined #openstack-neutron | 05:37 | |
*** links has joined #openstack-neutron | 05:39 | |
*** Sukhdev has quit IRC | 05:40 | |
*** thorst_away has quit IRC | 05:40 | |
*** obondarev has joined #openstack-neutron | 05:41 | |
*** ramishra has quit IRC | 05:42 | |
*** yamamot__ has joined #openstack-neutron | 05:46 | |
*** buttercup has joined #openstack-neutron | 05:46 | |
*** ramishra has joined #openstack-neutron | 05:47 | |
*** chandankumar has joined #openstack-neutron | 05:47 | |
*** obondarev has quit IRC | 05:47 | |
*** diga has quit IRC | 05:49 | |
*** pbandark has joined #openstack-neutron | 05:50 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Use get_vif_port_set in restore_local_vlan_map https://review.openstack.org/333642 | 05:53 |
openstackgerrit | Roey Chen proposed openstack/neutron: Adding the appropriate log hints where needed https://review.openstack.org/332750 | 05:55 |
*** baojg has quit IRC | 05:56 | |
*** vikram has joined #openstack-neutron | 05:56 | |
*** emagana has joined #openstack-neutron | 05:59 | |
*** josecastroleon has joined #openstack-neutron | 06:00 | |
*** diga has joined #openstack-neutron | 06:01 | |
*** EinstCrazy has quit IRC | 06:02 | |
*** emagana has quit IRC | 06:03 | |
*** prateek has quit IRC | 06:04 | |
openstackgerrit | JianGang Weng proposed openstack/python-neutronclient: Fix auto-allocated-topology-show argument error https://review.openstack.org/333752 | 06:04 |
*** links has quit IRC | 06:05 | |
*** rcernin has joined #openstack-neutron | 06:11 | |
*** mohankumar has quit IRC | 06:11 | |
*** markvoelker has joined #openstack-neutron | 06:13 | |
*** sudipto has joined #openstack-neutron | 06:13 | |
*** tflynn has quit IRC | 06:16 | |
*** ramishra has quit IRC | 06:16 | |
*** EinstCrazy has joined #openstack-neutron | 06:16 | |
*** ramishra has joined #openstack-neutron | 06:17 | |
*** markvoelker has quit IRC | 06:17 | |
*** pgadiya has joined #openstack-neutron | 06:17 | |
*** javeriak has joined #openstack-neutron | 06:18 | |
*** baojg has joined #openstack-neutron | 06:18 | |
*** links has joined #openstack-neutron | 06:18 | |
*** prateek has joined #openstack-neutron | 06:19 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron: Imported Translations from Zanata https://review.openstack.org/328592 | 06:21 |
*** azbiswas has quit IRC | 06:22 | |
*** ramishra has quit IRC | 06:22 | |
*** baojg_ has joined #openstack-neutron | 06:22 | |
*** baojg has quit IRC | 06:23 | |
*** javeriak has quit IRC | 06:23 | |
*** javeriak has joined #openstack-neutron | 06:23 | |
*** shashank_hegde has quit IRC | 06:25 | |
*** ramishra has joined #openstack-neutron | 06:27 | |
*** salv-orlando has quit IRC | 06:28 | |
*** ramishra has quit IRC | 06:28 | |
openstackgerrit | Lujin Luo proposed openstack/neutron: Clean up excess dhcp-agents scheduled to a network https://review.openstack.org/288271 | 06:29 |
*** shashank_hegde has joined #openstack-neutron | 06:29 | |
*** ramishra has joined #openstack-neutron | 06:30 | |
*** baojg_ has quit IRC | 06:31 | |
*** andreas_s has joined #openstack-neutron | 06:35 | |
*** baojg has joined #openstack-neutron | 06:35 | |
openstackgerrit | Brandon Logan proposed openstack/neutron: Pecan: Implement pagination https://review.openstack.org/328542 | 06:36 |
openstackgerrit | Brandon Logan proposed openstack/neutron: Pecan: move fields and filters logic to hooks https://review.openstack.org/328863 | 06:36 |
*** links has quit IRC | 06:37 | |
*** thorst_away has joined #openstack-neutron | 06:38 | |
kevinbenton | ajo: yo | 06:41 |
*** hoangcx has joined #openstack-neutron | 06:41 | |
*** hoangcx has quit IRC | 06:42 | |
*** mosulica has joined #openstack-neutron | 06:45 | |
*** thorst_away has quit IRC | 06:45 | |
openstackgerrit | Songming Yan proposed openstack/python-neutronclient: Fix the problem of mox in test_shell.py https://review.openstack.org/330933 | 06:46 |
*** kawa2014 has joined #openstack-neutron | 06:48 | |
*** links has joined #openstack-neutron | 06:49 | |
*** edand has joined #openstack-neutron | 06:52 | |
*** prateek has quit IRC | 06:52 | |
*** annp has quit IRC | 06:53 | |
*** jlibosva has joined #openstack-neutron | 06:54 | |
*** baojg has quit IRC | 06:54 | |
*** fragatina has joined #openstack-neutron | 06:54 | |
*** javeriak has quit IRC | 06:55 | |
*** javeriak has joined #openstack-neutron | 06:55 | |
*** obondarev has joined #openstack-neutron | 06:55 | |
*** tesseract- has joined #openstack-neutron | 06:57 | |
namnh | kevinbenton: Hi Mr.Kevin. I have reported a new thing on your patch set. Could you please check it: https://review.openstack.org/#/c/328185/5 | 06:57 |
kevinbenton | namnh: hey, that patch isn't enough | 06:58 |
kevinbenton | namnh: revision numbers aren't actually being bumped yet | 06:58 |
openstackgerrit | Merged openstack/neutron: Revert "OVS: don't throw KeyError when duplicate VLAN tags exist" https://review.openstack.org/333644 | 07:00 |
openstackgerrit | Kevin Benton proposed openstack/neutron: Increment revision numbers on object changes https://review.openstack.org/303966 | 07:00 |
kevinbenton | namnh: please try it with https://review.openstack.org/#/c/303966/ | 07:00 |
*** jbell8 has joined #openstack-neutron | 07:03 | |
*** hanchao has joined #openstack-neutron | 07:03 | |
*** prateek has joined #openstack-neutron | 07:04 | |
*** jbell8 has quit IRC | 07:05 | |
*** jpena|off is now known as jpena | 07:05 | |
namnh | kevinbenton: Yes, I will do it right now. | 07:05 |
*** javeriak_ has joined #openstack-neutron | 07:06 | |
*** jbell8 has joined #openstack-neutron | 07:06 | |
*** baojg has joined #openstack-neutron | 07:07 | |
*** javeriak has quit IRC | 07:09 | |
*** matrohon has joined #openstack-neutron | 07:10 | |
*** tmorin has joined #openstack-neutron | 07:12 | |
*** markvoelker has joined #openstack-neutron | 07:13 | |
*** jbell8 has quit IRC | 07:14 | |
*** EinstCrazy has quit IRC | 07:17 | |
*** markvoelker has quit IRC | 07:19 | |
*** EinstCrazy has joined #openstack-neutron | 07:20 | |
*** jbell8 has joined #openstack-neutron | 07:20 | |
*** liuyulong has quit IRC | 07:21 | |
*** azbiswas has joined #openstack-neutron | 07:23 | |
*** baojg has quit IRC | 07:23 | |
*** EinstCrazy has quit IRC | 07:27 | |
*** azbiswas has quit IRC | 07:28 | |
*** EinstCrazy has joined #openstack-neutron | 07:28 | |
*** ihrachys has joined #openstack-neutron | 07:28 | |
*** EinstCrazy has quit IRC | 07:28 | |
*** EinstCrazy has joined #openstack-neutron | 07:29 | |
*** EinstCrazy has quit IRC | 07:29 | |
*** aranjan_ has joined #openstack-neutron | 07:29 | |
openstackgerrit | qinchunhua proposed openstack/python-neutronclient: Replace mox with mock in test_cli20_firewallpolicy.py https://review.openstack.org/333790 | 07:29 |
*** sridharg has joined #openstack-neutron | 07:30 | |
namnh | kevinbenton: Service Neutron doesn't enable yet. we don't still have plugin 'revisions'? Do I need to do something to run it. | 07:30 |
openstackgerrit | qinchunhua proposed openstack/python-neutronclient: Replace mox with mock in test_cli20_firewallpolicy.py https://review.openstack.org/333790 | 07:30 |
*** jbell8 has quit IRC | 07:30 | |
kevinbenton | namnh: it's a default plugin | 07:31 |
kevinbenton | namnh: it should run automatically | 07:31 |
*** jbell8 has joined #openstack-neutron | 07:31 | |
*** jlanoux has joined #openstack-neutron | 07:31 | |
*** jbell8 has quit IRC | 07:32 | |
*** aranjan has quit IRC | 07:32 | |
*** jbell8 has joined #openstack-neutron | 07:32 | |
*** fragatina has quit IRC | 07:33 | |
*** edand has quit IRC | 07:34 | |
kevinbenton | namnh: you will need to run setup.py or pip install | 07:34 |
kevinbenton | namnh: to reprocess the setup.cfg file for the revisions entry point | 07:34 |
kevinbenton | namnh: if you checked the patch out onto existing install | 07:34 |
*** yamahata has joined #openstack-neutron | 07:34 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Add API tests for revision numbers https://review.openstack.org/328187 | 07:35 |
*** salv-orlando has joined #openstack-neutron | 07:36 | |
*** ramishra has quit IRC | 07:37 | |
*** EinstCra_ has joined #openstack-neutron | 07:38 | |
*** obondarev has quit IRC | 07:38 | |
*** ramishra has joined #openstack-neutron | 07:38 | |
openstackgerrit | Artur Korzeniewski proposed openstack/neutron: objects: Introduce the DNSNameServer OVO in the code https://review.openstack.org/326477 | 07:38 |
*** ygbo has joined #openstack-neutron | 07:38 | |
*** gangil has quit IRC | 07:39 | |
*** EinstCrazy has joined #openstack-neutron | 07:40 | |
*** jlanoux_ has joined #openstack-neutron | 07:41 | |
*** obondarev has joined #openstack-neutron | 07:41 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Move DHCP notification logic out of API controller https://review.openstack.org/331424 | 07:43 |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Create auto allocated networks in disabled state https://review.openstack.org/329006 | 07:43 |
*** thorst_away has joined #openstack-neutron | 07:43 | |
*** EinstCra_ has quit IRC | 07:43 | |
*** EinstCra_ has joined #openstack-neutron | 07:43 | |
*** EinstCrazy has quit IRC | 07:44 | |
*** jlanoux has quit IRC | 07:44 | |
*** josecastroleon has quit IRC | 07:45 | |
*** javeriak has joined #openstack-neutron | 07:46 | |
*** javeria__ has joined #openstack-neutron | 07:47 | |
*** javeriak_ has quit IRC | 07:47 | |
*** kevo has joined #openstack-neutron | 07:47 | |
*** aranjan_ has quit IRC | 07:48 | |
*** josecastroleon has joined #openstack-neutron | 07:48 | |
*** shivrao has quit IRC | 07:48 | |
*** EinstCrazy has joined #openstack-neutron | 07:49 | |
*** ihrachys has quit IRC | 07:50 | |
*** EinstCra_ has quit IRC | 07:50 | |
*** javeriak has quit IRC | 07:50 | |
*** john-davidge has joined #openstack-neutron | 07:50 | |
openstackgerrit | Lujin Luo proposed openstack/neutron: Add a composite unique key to floatingip table in Neutron database https://review.openstack.org/276018 | 07:50 |
*** javeriak has joined #openstack-neutron | 07:50 | |
*** thorst_away has quit IRC | 07:50 | |
*** ramishra has quit IRC | 07:50 | |
*** ramishra has joined #openstack-neutron | 07:51 | |
*** john-dav_ has joined #openstack-neutron | 07:52 | |
*** javeria__ has quit IRC | 07:53 | |
*** EinstCra_ has joined #openstack-neutron | 07:54 | |
*** EinstCrazy has quit IRC | 07:54 | |
*** john-davidge has quit IRC | 07:55 | |
openstackgerrit | Lujin Luo proposed openstack/neutron: Clean up excess dhcp-agents scheduled to a network https://review.openstack.org/288271 | 07:57 |
*** annp has joined #openstack-neutron | 07:58 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Use get_vif_port_set in restore_local_vlan_map https://review.openstack.org/333642 | 07:58 |
*** rcernin has quit IRC | 07:59 | |
namnh | kevinbenton: Thanks Mr.Kevin :), it run. I will verity my bug on your patch set now. | 07:59 |
kevinbenton | namnh: okay, before verifying, please make sure that adding a gateway interface does bump the router revision number | 07:59 |
*** zzzeek has quit IRC | 08:00 | |
kevinbenton | namnh: i don't think i have a test yet that verifies that, just regular router interfaces | 08:00 |
*** zzzeek has joined #openstack-neutron | 08:00 | |
*** lucas-afk is now known as lucasagomes | 08:02 | |
*** EinstCra_ has quit IRC | 08:04 | |
*** john-dav_ is now known as john-davidge | 08:04 | |
*** annp has quit IRC | 08:04 | |
*** nyechiel has joined #openstack-neutron | 08:05 | |
*** eezhova has joined #openstack-neutron | 08:05 | |
*** mickeys has joined #openstack-neutron | 08:08 | |
*** shashank_hegde has quit IRC | 08:09 | |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/neutron: [WIP] Testing latest u-c https://review.openstack.org/303346 | 08:10 |
openstackgerrit | jirikotlin proposed openstack/neutron: VXLAN multicast groups distribution in linuxbridge https://review.openstack.org/333379 | 08:10 |
*** abregman has joined #openstack-neutron | 08:10 | |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/neutron: [WIP] Testing latest u-c https://review.openstack.org/303346 | 08:10 |
*** gongysh_ has joined #openstack-neutron | 08:10 | |
namnh | kevinbenton: :( unlucky, it still occur. Here is result: http://paste.openstack.org/show/521874/ | 08:12 |
*** EinstCrazy has joined #openstack-neutron | 08:12 | |
kevinbenton | namnh: did you verify that router-gateway-set bumps the revision number of the router? | 08:13 |
*** nplanel has joined #openstack-neutron | 08:15 | |
*** dmk0202 has joined #openstack-neutron | 08:17 | |
namnh | kevinbenton: Yes, when I add gateway to a router. The router's revision_number in "standardattributes" increase. | 08:17 |
kevinbenton | namnh: ack | 08:18 |
*** rossella_s has joined #openstack-neutron | 08:19 | |
kevinbenton | namnh: yes, gateway port is created outside of transaction so it wouldn't be blocked by this | 08:20 |
*** ramishra has quit IRC | 08:20 | |
namnh | kevinbenton: Please check my comment on patch: https://review.openstack.org/#/c/328185/. I have show log file. | 08:23 |
*** kevo has quit IRC | 08:23 | |
openstackgerrit | IWAMOTO Toshihiro proposed openstack/neutron: Use conjunction for security group rules with remote_group_id https://review.openstack.org/333804 | 08:24 |
kevinbenton | namnh: i know | 08:24 |
*** mickeys has quit IRC | 08:24 | |
kevinbenton | namnh: this approach won't work if the port is created outside | 08:24 |
namnh | kevinbenton: In my point of view: Your patch set: https://review.openstack.org/#/c/332487/ detected this case. But I don't know why it retried many times. | 08:25 |
namnh | kevinbenton: That's reason we have many ports gateway in this case. | 08:26 |
kevinbenton | namnh: yes, actually catching errors on the transaction and deleting the port may fix it | 08:27 |
*** javeriak has quit IRC | 08:27 | |
kevinbenton | namnh: one sec | 08:27 |
*** ramishra has joined #openstack-neutron | 08:30 | |
openstackgerrit | jirikotlin proposed openstack/neutron: VXLAN multicast groups distribution in linuxbridge https://review.openstack.org/333379 | 08:32 |
openstackgerrit | Kevin Benton proposed openstack/neutron: [WIP]: Delete gw port on exceptions https://review.openstack.org/333809 | 08:33 |
kevinbenton | namnh: try with that one ^^ | 08:33 |
*** slaweq has joined #openstack-neutron | 08:34 | |
namnh | kevinbenton: Yes, right now ^^ | 08:34 |
*** baojg has joined #openstack-neutron | 08:35 | |
*** kobis has joined #openstack-neutron | 08:36 | |
*** matrohon has quit IRC | 08:38 | |
*** emagana has joined #openstack-neutron | 08:41 | |
openstackgerrit | Sirushti Murugesan proposed openstack/neutron-fwaas: Add python 3 classifiers https://review.openstack.org/333814 | 08:41 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements https://review.openstack.org/333435 | 08:42 |
*** kevo has joined #openstack-neutron | 08:44 | |
*** aranjan has joined #openstack-neutron | 08:44 | |
*** emagana has quit IRC | 08:46 | |
openstackgerrit | Andreas Scheuring proposed openstack/neutron: [WIP] Making PortBindingResult an OVO https://review.openstack.org/333218 | 08:47 |
openstackgerrit | Andreas Scheuring proposed openstack/neutron: [WIP] ML2: Unify schema for binding normal and distributed ports https://review.openstack.org/326987 | 08:47 |
*** gongysh has quit IRC | 08:47 | |
*** nyechiel has quit IRC | 08:47 | |
*** thorst_away has joined #openstack-neutron | 08:48 | |
*** aranjan has quit IRC | 08:49 | |
*** gongysh_ has quit IRC | 08:49 | |
openstackgerrit | Hong Hui Xiao proposed openstack/neutron: Enable create and delete segments in ML2 https://review.openstack.org/317358 | 08:49 |
*** baojg has quit IRC | 08:51 | |
*** gongysh_ has joined #openstack-neutron | 08:52 | |
*** thorst_away has quit IRC | 08:55 | |
*** reedip has joined #openstack-neutron | 08:56 | |
namnh | kevinbenton: Good for you :). It can not occur. | 08:56 |
namnh | kevinbenton: I verify hunderds times :)) | 08:57 |
*** zhhuabj has quit IRC | 08:58 | |
namnh | kevinbenton: You are super man :) | 08:58 |
openstackgerrit | Oleg Bondarev proposed openstack/neutron: Mock threading.Thread to prevent daemon creation by unit tests https://review.openstack.org/333827 | 08:58 |
kevinbenton | namnh: so i suspect there will be similar issues with regular interfaces | 08:59 |
kevinbenton | namnh: would you like to see if the same applies to them and apply a patch similar to that one for those? | 09:00 |
*** zhhuabj has joined #openstack-neutron | 09:00 | |
*** kobis has quit IRC | 09:01 | |
openstackgerrit | Jens Rosenboom proposed openstack/neutron: DNM: Secure dnsmasq process against external abuse https://review.openstack.org/333829 | 09:01 |
*** ramishra has quit IRC | 09:01 | |
*** javeriak has joined #openstack-neutron | 09:02 | |
frickler | neiljerram: if you have time to look at https://review.openstack.org/333829, I'd be interested to hear how that fits with your use case | 09:03 |
*** ramishra has joined #openstack-neutron | 09:03 | |
*** slaweq has quit IRC | 09:04 | |
*** slaweq has joined #openstack-neutron | 09:05 | |
neiljerram | frickler, did you really mean me? That review doesn't look especially connected with me... (But perhaps I'm misunderstanding what you mean.) | 09:05 |
*** javeriak has quit IRC | 09:06 | |
*** javeriak has joined #openstack-neutron | 09:07 | |
*** lujinluo has quit IRC | 09:08 | |
frickler | neiljerram: from the git history it looks like you introduced the self.device_manager.driver.bridged case. the main question for me is, whether there might be a deployment where the dnsmasq process does not run inside its own netns | 09:08 |
openstackgerrit | Hong Hui Xiao proposed openstack/neutron: Not auto schedule router when sync routers from agent https://review.openstack.org/332102 | 09:09 |
neiljerram | frickler, Ah thanks, I understand now - and yes, you are absolutely right that with networking-calico dnsmasq does not run in its own netns. I will look at the review. | 09:09 |
frickler | neiljerram: o.k., thanks, /me senses a -1 approaching ;) | 09:11 |
*** yb has joined #openstack-neutron | 09:12 | |
*** azbiswas has joined #openstack-neutron | 09:12 | |
*** mfuruta has quit IRC | 09:12 | |
*** jbell8 has quit IRC | 09:12 | |
*** fzdarsky has joined #openstack-neutron | 09:12 | |
*** javeriak has quit IRC | 09:13 | |
*** javeriak has joined #openstack-neutron | 09:13 | |
*** yb1 has quit IRC | 09:13 | |
openstackgerrit | Merged openstack/os-vif: Don't create extraneous linux bridge/veth pair for VIFOpenVSwitch https://review.openstack.org/333486 | 09:14 |
neiljerram | frickler, So when --local-service is specified, does Dnsmasq automatically listen on _all_ interfaces? | 09:14 |
*** yb1 has joined #openstack-neutron | 09:14 | |
namnh | kevinbenton: You mean: I shoud verify the bug that added multiple subnets to *one* router with overlap CIDR: https://bugs.launchpad.net/neutron/+bug/1535226 . Is that right? | 09:15 |
openstack | Launchpad bug 1535226 in neutron "Subnets with duplicated CIDRs could be added to one router if multiple commands are executed at the same time" [Low,In progress] - Assigned to Nam (namnh) | 09:15 |
*** nyechiel has joined #openstack-neutron | 09:15 | |
frickler | neiljerram: well, no, it is the other way around, as soon as any interface filtering is specified, --local-service has no effect | 09:15 |
frickler | neiljerram: so my patch can only work if I can remove the interface filters | 09:15 |
*** 7GHABEJ24 has joined #openstack-neutron | 09:16 | |
frickler | neiljerram: but if you need that, we have to come up with some more advanced logic, I fear | 09:16 |
kevinbenton | namnh: oh, nevermind. the bug fix for overlapping will prevent multiple regular interfaces | 09:16 |
*** slaweq has quit IRC | 09:16 | |
*** markvoelker has joined #openstack-neutron | 09:16 | |
*** 7GHABEJ24 has quit IRC | 09:16 | |
*** azbiswas has quit IRC | 09:17 | |
*** yb has quit IRC | 09:17 | |
neiljerram | neiljerram, Sure, I understood that part from the Dnsmasq man page for --local-service. Perhaps my question should be "If there are no --interface options, does Dnsmasq automatically listen on _all_ interfaces?" | 09:17 |
*** fragatina has joined #openstack-neutron | 09:17 | |
frickler | neiljerram: yes, it does | 09:17 |
neiljerram | frickler, Cool; I hadn't appreciated (or had forgotten) that those options were _filters_. | 09:18 |
frickler | neiljerram: so with calico, will you have a single dnsmasq per node or may there be multiple ones? | 09:19 |
*** javeriak has quit IRC | 09:19 | |
*** javeriak has joined #openstack-neutron | 09:20 | |
*** markvoelker has quit IRC | 09:20 | |
neiljerram | frickler, there is a single dnsmasq per compute node (even when that compute node has instances on multiple Neutron networks / subnets) | 09:20 |
openstackgerrit | Oleg Bondarev proposed openstack/neutron: Rewrite ip_lib to use oslo.privsep/pyroute2 https://review.openstack.org/155631 | 09:21 |
*** amotoki has quit IRC | 09:22 | |
*** amotoki has joined #openstack-neutron | 09:23 | |
frickler | neiljerram: great, that leaves me with a bit of hope. maybe you can also take a look at the alternative proposed in https://review.openstack.org/256280, I'm wondering whether doing all this filtering on a compute node outside a netns could even work in your case | 09:24 |
neiljerram | frickler, I'm just reading through the bug now, as I don't think I yet fully understand the risk. Thanks for bringing this to my attention! | 09:26 |
*** nyechiel has quit IRC | 09:27 | |
frickler | neiljerram: for me, the scenario is that I have public IPv6 addresses for my tenant networks and that also makes the dhcp agents globally reachable. (shameless plug: see http://cloudbau.github.io/openstack/neutron/networking/2016/05/17/neutron-ipv6.html for how we do this ;) | 09:28 |
namnh | kevinbenton: I am sorry but I don't understand exactly what you mean. Could you please tell me more detail. :) | 09:29 |
*** obondarev has quit IRC | 09:30 | |
neiljerram | frickler, To be clear, the risk is only about DNS, isn't it? I don't believe there's any way that non-local clients can access the DHCP service, is there? | 09:32 |
*** vikasc has quit IRC | 09:33 | |
*** yb1 has quit IRC | 09:33 | |
*** baojg has joined #openstack-neutron | 09:34 | |
frickler | neiljerram: right, I'm not sure whether accessing DHCP would be possible, but I'm pretty certain that it cannot be abused in amplification attacks like DNS. So indeed one other option might be running two seperate processes for DNS and DHCP service | 09:34 |
*** amotoki_ has joined #openstack-neutron | 09:34 | |
*** amotoki has quit IRC | 09:35 | |
*** sambetts|afk is now known as sambetts | 09:39 | |
kevinbenton | namnh: i forgot about the overlapping CIDR patch | 09:41 |
kevinbenton | namnh: that will address the issue with internal interfaces | 09:41 |
*** fawadkhaliq has joined #openstack-neutron | 09:42 | |
*** fawadkhaliq has quit IRC | 09:42 | |
*** ramishra has quit IRC | 09:45 | |
*** aranjan has joined #openstack-neutron | 09:45 | |
namnh | kevinbenton: Do you mean this patch: https://review.openstack.org/#/c/314054/ | 09:46 |
kevinbenton | namnh: yep | 09:46 |
*** aranjan has quit IRC | 09:50 | |
*** ramishra has joined #openstack-neutron | 09:52 | |
*** thorst_away has joined #openstack-neutron | 09:52 | |
*** markvoelker has joined #openstack-neutron | 09:54 | |
*** slaweq has joined #openstack-neutron | 09:54 | |
namnh | kevinbenton: :)) I am waitting for Mike's bug. Could please check it. currently I am trying to find the best solution for the function to detect overlap IPv6. About Ipv4, I think it's ok. | 09:55 |
*** jhershbe has joined #openstack-neutron | 09:55 | |
*** thorst_away has quit IRC | 10:00 | |
*** hanchao has quit IRC | 10:05 | |
*** slaweq has quit IRC | 10:05 | |
igordcard | ajo: I'm not sure it's a bug or I'm just doing it wrong | 10:05 |
ajo | igordcard, then post the error and your change somewhere so I can try to understand what's happening :) | 10:06 |
ajo | paste.openstack.org ? :) | 10:06 |
*** yamahata has quit IRC | 10:07 | |
igordcard | ajo: I was changing sfc's models and trying to generate a new migration file | 10:07 |
igordcard | ajo: yes I'm getting the relevant info now, just a sec | 10:07 |
ajo | ack igordcard :) | 10:07 |
*** eezhova has quit IRC | 10:08 | |
*** sdague has joined #openstack-neutron | 10:09 | |
*** pcaruana has joined #openstack-neutron | 10:09 | |
openstackgerrit | Merged openstack/neutron: Check for RetryRequest in MultipleException types https://review.openstack.org/333060 | 10:10 |
*** javeriak has quit IRC | 10:11 | |
*** jhershbe has quit IRC | 10:12 | |
*** tbachman has quit IRC | 10:12 | |
*** ramishra has quit IRC | 10:13 | |
*** slaweq has joined #openstack-neutron | 10:13 | |
*** ramishra has joined #openstack-neutron | 10:13 | |
*** salv-orlando has quit IRC | 10:14 | |
*** gvrangan has quit IRC | 10:15 | |
*** chandankumar has quit IRC | 10:16 | |
igordcard | ajo: http://paste.openstack.org/show/521900/ | 10:16 |
ajo | igordcard, and your code? | 10:17 |
ajo | ahh | 10:17 |
ajo | wait | 10:17 |
ajo | you're generating the migration | 10:17 |
igordcard | ajo: yes | 10:17 |
igordcard | ajo: my code has a few new tables and other tables changed | 10:18 |
kevinbenton | ajo: can you take a look at https://review.openstack.org/#/c/330327/ | 10:18 |
ajo | I see the issue, I tend to write my migrations by hand, may be HenryG / ihar (not around) could be more helpful with what that means, does the qos_policies model have no id ? :? | 10:18 |
ajo | kevinbenton, ack | 10:19 |
*** amotoki_ has quit IRC | 10:19 | |
*** baojg has quit IRC | 10:20 | |
openstackgerrit | Andreas Scheuring proposed openstack/neutron-specs: Spec for distributed portbindings https://review.openstack.org/309416 | 10:21 |
igordcard | ajo: it has.. | 10:21 |
ajo | igordcard, if you try to generate a non-subproject migration, does it work? | 10:21 |
igordcard | ajo: yes it compares neutron with networking-sfc separately | 10:21 |
igordcard | ajo: so generates a lot of drop_tables for every neutron table | 10:22 |
*** javeriak has joined #openstack-neutron | 10:24 | |
namnh | kevinbenton: I have to go out my office. Thanks for your time. | 10:25 |
*** namnh has quit IRC | 10:25 | |
ajo | igordcard, I'm not sure how the subproject logic of that works, I'll try to have a look, may be people on other subprojects can provide more help from experience (lbaas, fwaas) | 10:27 |
slaweq | akamyshnikova: hello | 10:28 |
*** claudiub has joined #openstack-neutron | 10:28 | |
slaweq | akamyshnikova: can You help me with alembic migration script in neutron? | 10:28 |
akamyshnikova | slaweq, hi, sure | 10:29 |
slaweq | akamyshnikova: I have script https://review.openstack.org/#/c/303626/18/neutron/db/migration/alembic_migrations/versions/newton/expand/acf3ef2b815a_qos_add_direction_to_bw_limit_rule_table.py | 10:29 |
slaweq | it should add column to table and change unique constraint to be different | 10:29 |
slaweq | and my problem is that if I do it in expand phase then I have functional test error that "drop command in expand" | 10:30 |
*** boden has joined #openstack-neutron | 10:30 | |
slaweq | if I move it to contract phase then error is "create command in contract" | 10:30 |
*** ramishra has quit IRC | 10:30 | |
slaweq | do You have any idea how I should do such change in db? | 10:30 |
akamyshnikova | slaweq, yes | 10:30 |
*** ramishra has joined #openstack-neutron | 10:30 | |
igordcard | ajo: thanks, I'm looking at how other networking-*s refer to the neutron db, HenryG yesterday recommended me to try importing neutron's model head in env.py for an earlier issue that I had, and I think there might be some issue around that and how sfc does it today | 10:31 |
akamyshnikova | slaweq, but this should be contract as I see this migration is not safe | 10:31 |
slaweq | ok, I will move it to contract | 10:31 |
akamyshnikova | slaweq, we have some exceptions for tests, I will give a link | 10:31 |
slaweq | ok, thx | 10:31 |
igordcard | akamyshnikova: is a contract enough or does expand need to be called too? | 10:32 |
openstackgerrit | Dongcan Ye proposed openstack/neutron-dynamic-routing: Fix bug for Permission denied https://review.openstack.org/333668 | 10:32 |
*** baojg has joined #openstack-neutron | 10:32 | |
*** josecastroleon has quit IRC | 10:33 | |
*** chandankumar has joined #openstack-neutron | 10:33 | |
akamyshnikova | igordcard, slaweq let me check your migration one more time | 10:34 |
*** javeriak has quit IRC | 10:35 | |
*** salv-orlando has joined #openstack-neutron | 10:36 | |
*** obondarev has joined #openstack-neutron | 10:37 | |
akamyshnikova | slaweq, you should use this https://github.com/openstack/neutron/blob/master/neutron/db/migration/__init__.py#L182 in you migration I will add a comment with example. and to except check you should do https://review.openstack.org/#/c/325699/3/neutron/db/migration/alembic_migrations/versions/newton/contract/c879c5e1ee90_add_segment_id_to_subnet.py | 10:38 |
slaweq | akamyshnikova: thx a lot for info | 10:40 |
slaweq | I will check it | 10:40 |
*** baojg has quit IRC | 10:41 | |
openstackgerrit | Oleg Bondarev proposed openstack/neutron: Mock threading.Thread to prevent daemon creation by unit tests https://review.openstack.org/333827 | 10:42 |
openstackgerrit | Oleg Bondarev proposed openstack/neutron: Rewrite ip_lib to use oslo.privsep/pyroute2 https://review.openstack.org/155631 | 10:42 |
akamyshnikova | slaweq, np | 10:43 |
*** javeriak has joined #openstack-neutron | 10:43 | |
*** eezhova has joined #openstack-neutron | 10:43 | |
*** gouthamr has joined #openstack-neutron | 10:43 | |
openstackgerrit | chandanc proposed openstack/neutron: [WIP] IpConntrackManager class in ip_conntrack.py should be a singleton to be used by both SG and FWaaS V2 API at the same time https://review.openstack.org/333338 | 10:43 |
*** chandankumar has quit IRC | 10:45 | |
*** javeriak has quit IRC | 10:45 | |
*** karad has joined #openstack-neutron | 10:45 | |
*** javeriak has joined #openstack-neutron | 10:45 | |
*** aranjan has joined #openstack-neutron | 10:46 | |
*** fragatina has quit IRC | 10:47 | |
*** EinstCrazy has quit IRC | 10:48 | |
*** chandankumar has joined #openstack-neutron | 10:48 | |
*** aranjan has quit IRC | 10:50 | |
*** jckasper has joined #openstack-neutron | 10:52 | |
*** jhershbe has joined #openstack-neutron | 10:52 | |
*** emagana has joined #openstack-neutron | 10:53 | |
*** vikasc has joined #openstack-neutron | 10:55 | |
*** tbachman has joined #openstack-neutron | 10:55 | |
*** edand has joined #openstack-neutron | 10:56 | |
*** jckasper has quit IRC | 10:56 | |
*** sudipto has quit IRC | 10:57 | |
*** emagana has quit IRC | 10:57 | |
*** thorst_away has joined #openstack-neutron | 10:58 | |
*** salv-orl_ has joined #openstack-neutron | 10:59 | |
*** obondarev has quit IRC | 11:01 | |
*** ramishra has quit IRC | 11:01 | |
openstackgerrit | Slawek Kaplonski proposed openstack/neutron: Add QoS bandwidth limit for instance ingress traffic https://review.openstack.org/303626 | 11:02 |
*** salv-orlando has quit IRC | 11:02 | |
*** ramishra has joined #openstack-neutron | 11:02 | |
*** abregman is now known as abregman|afk | 11:02 | |
slaweq | akamyshnikova: thx once again | 11:04 |
slaweq | looks that it's working fine :) | 11:04 |
*** thorst_away has quit IRC | 11:05 | |
*** tbachman_ has joined #openstack-neutron | 11:05 | |
akamyshnikova | slaweq, great! One more thing: take a look at my comment on the previous patch set about usage remove_fks_from_table | 11:06 |
*** tbachman has quit IRC | 11:07 | |
*** tbachman_ is now known as tbachman | 11:07 | |
*** thorst_away has joined #openstack-neutron | 11:07 | |
*** slaweq has quit IRC | 11:09 | |
*** jhershbe has quit IRC | 11:11 | |
*** edand has quit IRC | 11:12 | |
*** ramishra has quit IRC | 11:14 | |
*** thorst_away is now known as thorst_ | 11:15 | |
*** tbachman_ has joined #openstack-neutron | 11:20 | |
*** M00nr41n has quit IRC | 11:20 | |
*** josecastroleon has joined #openstack-neutron | 11:22 | |
*** tbachman has quit IRC | 11:23 | |
*** tbachman_ is now known as tbachman | 11:23 | |
*** jhershbe has joined #openstack-neutron | 11:26 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Add API tests for revision numbers https://review.openstack.org/328187 | 11:27 |
openstackgerrit | Kevin Benton proposed openstack/neutron: Increment revision numbers on object changes https://review.openstack.org/303966 | 11:27 |
*** bjornar_ has joined #openstack-neutron | 11:30 | |
*** rtheis has joined #openstack-neutron | 11:30 | |
*** ramishra has joined #openstack-neutron | 11:32 | |
*** ramishra has quit IRC | 11:36 | |
*** bjornar_ has quit IRC | 11:39 | |
*** javeriak has quit IRC | 11:40 | |
*** javeriak has joined #openstack-neutron | 11:40 | |
*** alaski is now known as lascii | 11:41 | |
*** boden has quit IRC | 11:43 | |
*** andreas_s has quit IRC | 11:44 | |
*** obondarev has joined #openstack-neutron | 11:45 | |
*** aranjan has joined #openstack-neutron | 11:47 | |
*** obondarev has quit IRC | 11:50 | |
*** aranjan has quit IRC | 11:51 | |
*** obondarev has joined #openstack-neutron | 11:53 | |
*** bjornar_ has joined #openstack-neutron | 11:54 | |
*** emagana has joined #openstack-neutron | 11:54 | |
*** karad has quit IRC | 11:54 | |
*** jhershbe has quit IRC | 11:57 | |
*** boden has joined #openstack-neutron | 11:57 | |
*** emagana has quit IRC | 11:58 | |
*** jpena is now known as jpena|lunch | 11:59 | |
*** rcernin has joined #openstack-neutron | 12:04 | |
*** oshvartz has joined #openstack-neutron | 12:05 | |
*** fragatina has joined #openstack-neutron | 12:07 | |
*** yamamot__ has quit IRC | 12:08 | |
*** pradk has joined #openstack-neutron | 12:09 | |
openstackgerrit | LiuYong proposed openstack/python-neutronclient: Replace mox with mock in test_cli20_tag.py https://review.openstack.org/331971 | 12:11 |
*** diga has quit IRC | 12:12 | |
*** dave-mccowan has joined #openstack-neutron | 12:13 | |
*** liusheng has quit IRC | 12:13 | |
*** zhhuabj has quit IRC | 12:16 | |
*** liusheng has joined #openstack-neutron | 12:16 | |
*** javeriak has quit IRC | 12:17 | |
john-davidge | Who's familiar with using Docker in neutron? | 12:19 |
*** nplanel has quit IRC | 12:19 | |
john-davidge | Unusual bug report that may or may not be a neutron issue https://bugs.launchpad.net/neutron/+bug/1595762 | 12:19 |
openstack | Launchpad bug 1595762 in neutron "HTTPS connection failing for Docker >= 1.10" [Undecided,New] | 12:19 |
*** tpsilva has joined #openstack-neutron | 12:19 | |
*** chandankumar has quit IRC | 12:23 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Skip INVALID and UNASSIGNED ofport in vlan restore https://review.openstack.org/333642 | 12:24 |
*** karad has joined #openstack-neutron | 12:24 | |
*** dane_leblanc__ has joined #openstack-neutron | 12:26 | |
*** vikasc has quit IRC | 12:27 | |
*** dane_leblanc_ has joined #openstack-neutron | 12:28 | |
*** zhhuabj has joined #openstack-neutron | 12:29 | |
*** fragatina has quit IRC | 12:31 | |
*** dane_leblanc__ has quit IRC | 12:32 | |
*** lucasagomes is now known as lucas-hungry | 12:32 | |
*** yalie has joined #openstack-neutron | 12:36 | |
*** buttercup has quit IRC | 12:41 | |
*** tbachman has quit IRC | 12:42 | |
openstackgerrit | Karim Boumedhel proposed openstack/neutron: Fix simple typos https://review.openstack.org/333889 | 12:44 |
*** lixiaoy1 has quit IRC | 12:45 | |
*** lixiaoy1 has joined #openstack-neutron | 12:45 | |
*** numans has quit IRC | 12:45 | |
*** alex_xu has quit IRC | 12:46 | |
*** stanzgy_ has quit IRC | 12:46 | |
*** jckasper has joined #openstack-neutron | 12:46 | |
*** hynekm has quit IRC | 12:46 | |
*** aranjan has joined #openstack-neutron | 12:47 | |
*** azbiswas has joined #openstack-neutron | 12:47 | |
*** alex_xu has joined #openstack-neutron | 12:48 | |
*** jckasper has quit IRC | 12:48 | |
*** aranjan has quit IRC | 12:52 | |
*** azbiswas has quit IRC | 12:53 | |
*** buttercup has joined #openstack-neutron | 12:55 | |
*** edmondsw has joined #openstack-neutron | 12:55 | |
*** jckasper has joined #openstack-neutron | 12:55 | |
*** stanzgy_ has joined #openstack-neutron | 12:57 | |
*** yamamoto has joined #openstack-neutron | 12:57 | |
*** numans has joined #openstack-neutron | 12:58 | |
*** baoli has joined #openstack-neutron | 12:58 | |
*** ranjithd has joined #openstack-neutron | 12:59 | |
*** links has quit IRC | 13:00 | |
*** karad has quit IRC | 13:00 | |
*** andymaier has joined #openstack-neutron | 13:01 | |
*** baoli_ has joined #openstack-neutron | 13:02 | |
*** wolverineav has quit IRC | 13:02 | |
*** obondarev has quit IRC | 13:03 | |
*** regXboi has joined #openstack-neutron | 13:04 | |
*** baoli has quit IRC | 13:05 | |
*** vhoward has joined #openstack-neutron | 13:07 | |
*** dave-mccowan has quit IRC | 13:08 | |
*** jpena|lunch is now known as jpena | 13:12 | |
*** tbachman has joined #openstack-neutron | 13:12 | |
*** akshai has joined #openstack-neutron | 13:14 | |
*** pgadiya has quit IRC | 13:14 | |
*** obondarev has joined #openstack-neutron | 13:16 | |
*** amotoki has joined #openstack-neutron | 13:16 | |
*** chandankumar has joined #openstack-neutron | 13:18 | |
*** karad has joined #openstack-neutron | 13:19 | |
openstackgerrit | Margaret Frances proposed openstack/neutron: [WIP] Generalize agent extension mechanism https://review.openstack.org/329701 | 13:21 |
*** akshai_ has joined #openstack-neutron | 13:26 | |
*** boden has quit IRC | 13:27 | |
*** kfox1111_away is now known as kfox1111 | 13:29 | |
*** akshai has quit IRC | 13:30 | |
*** dmk0202 has quit IRC | 13:31 | |
*** dane_leblanc_ has quit IRC | 13:32 | |
*** jckasper has quit IRC | 13:32 | |
*** jckasper has joined #openstack-neutron | 13:33 | |
*** regXboi has quit IRC | 13:34 | |
*** regXboi has joined #openstack-neutron | 13:34 | |
*** pacoblox has quit IRC | 13:39 | |
*** dave-mccowan has joined #openstack-neutron | 13:39 | |
*** dmellado_ is now known as dmellado | 13:40 | |
*** dave-mcc_ has joined #openstack-neutron | 13:40 | |
*** jhershbe has joined #openstack-neutron | 13:40 | |
openstackgerrit | Ann Kamyshnikova proposed openstack/neutron: Refactor TestWalkMigrations https://review.openstack.org/333909 | 13:42 |
HenryG | kevinbenton: can you look at https://review.openstack.org/331672 ? Maybe ajo too? | 13:42 |
*** dave-mccowan has quit IRC | 13:44 | |
*** janzian has joined #openstack-neutron | 13:44 | |
*** obondarev has quit IRC | 13:46 | |
*** lucas-hungry is now known as lucasagomes | 13:46 | |
*** aranjan has joined #openstack-neutron | 13:48 | |
*** cleong has joined #openstack-neutron | 13:49 | |
ajo | HenryG, ack, jlibosva ^ can you look too | 13:51 |
ajo | bcafarel, | 13:51 |
ajo | related to https://bugs.launchpad.net/neutron/+bug/1594439 (metadata ) | 13:51 |
openstack | Launchpad bug 1594439 in neutron "Bad initialization sequence in Neutron agents (and maybe somewhere else)" [Medium,In progress] - Assigned to Yuriy Taraday (yorik-sar) | 13:51 |
ajo | I need to go grab a kid from kindergarten | 13:51 |
jlibosva | ajo: looking | 13:52 |
bcafarel | description starting with a TL;DR, I'd better get my coffee ready :) | 13:52 |
*** aranjan has quit IRC | 13:53 | |
*** trevormc has joined #openstack-neutron | 13:54 | |
*** shausy has quit IRC | 13:55 | |
*** shahid__ has quit IRC | 13:56 | |
*** matrohon has joined #openstack-neutron | 13:59 | |
*** wolverineav has joined #openstack-neutron | 13:59 | |
*** ametts has joined #openstack-neutron | 14:00 | |
openstackgerrit | Karim Boumedhel proposed openstack/neutron: Fix simple typos https://review.openstack.org/333889 | 14:01 |
*** a_ta has joined #openstack-neutron | 14:01 | |
*** boden has joined #openstack-neutron | 14:03 | |
*** wolverineav has quit IRC | 14:04 | |
*** tbachman_ has joined #openstack-neutron | 14:04 | |
*** tbachman has quit IRC | 14:05 | |
*** tbachman_ is now known as tbachman | 14:05 | |
*** sudipto has joined #openstack-neutron | 14:05 | |
*** amuller has joined #openstack-neutron | 14:05 | |
*** zhhuabj has quit IRC | 14:05 | |
*** jhershbe has quit IRC | 14:06 | |
*** brad_behle has joined #openstack-neutron | 14:06 | |
*** ratailor has quit IRC | 14:08 | |
*** pacoblox has joined #openstack-neutron | 14:09 | |
*** vhoward has quit IRC | 14:10 | |
*** wolverineav has joined #openstack-neutron | 14:11 | |
*** bjornar_ has quit IRC | 14:12 | |
*** tbachman_ has joined #openstack-neutron | 14:14 | |
*** julim has joined #openstack-neutron | 14:16 | |
*** tbachman has quit IRC | 14:17 | |
*** tbachman_ is now known as tbachman | 14:17 | |
*** regXboi has quit IRC | 14:19 | |
*** tbachman_ has joined #openstack-neutron | 14:22 | |
*** tbachman has quit IRC | 14:24 | |
*** tbachman_ is now known as tbachman | 14:24 | |
*** tonytan4ever has joined #openstack-neutron | 14:24 | |
*** regXboi has joined #openstack-neutron | 14:27 | |
*** pbandark has quit IRC | 14:27 | |
*** yamahata has joined #openstack-neutron | 14:27 | |
*** pbandark has joined #openstack-neutron | 14:30 | |
*** wolverineav has quit IRC | 14:31 | |
*** pbandark has quit IRC | 14:33 | |
*** wolverineav has joined #openstack-neutron | 14:33 | |
*** brad_behle has quit IRC | 14:34 | |
*** fnaval has quit IRC | 14:35 | |
*** brad_behle has joined #openstack-neutron | 14:35 | |
*** obondarev has joined #openstack-neutron | 14:36 | |
*** rossella_s has quit IRC | 14:37 | |
*** rossella_s has joined #openstack-neutron | 14:38 | |
openstackgerrit | Hong Hui Xiao proposed openstack/neutron: Enable create and delete segments in ML2 https://review.openstack.org/317358 | 14:39 |
*** davidsha has joined #openstack-neutron | 14:39 | |
*** rook has quit IRC | 14:39 | |
*** rook has joined #openstack-neutron | 14:40 | |
*** gongysh has joined #openstack-neutron | 14:40 | |
openstackgerrit | Merged openstack/neutron-dynamic-routing: Fix _get_id_for https://review.openstack.org/332693 | 14:40 |
openstackgerrit | Karim Boumedhel proposed openstack/neutron: Fix simple typos https://review.openstack.org/333889 | 14:42 |
*** julim has quit IRC | 14:44 | |
*** eezhova has quit IRC | 14:46 | |
mfranc213 | ajo: ihar: davidsha: hi there. https://review.openstack.org/#/c/329701/5 | 14:46 |
*** vhoward has joined #openstack-neutron | 14:48 | |
*** numans has quit IRC | 14:48 | |
*** dave-mcc_ has quit IRC | 14:48 | |
*** wolverineav has quit IRC | 14:48 | |
*** fnaval has joined #openstack-neutron | 14:50 | |
*** aranjan has joined #openstack-neutron | 14:50 | |
davidsha | mfranc213: Hey, looking at it now! | 14:50 |
*** rook has quit IRC | 14:50 | |
mfranc213 | davidsha: thank you! | 14:51 |
*** eezhova has joined #openstack-neutron | 14:51 | |
*** zhhuabj has joined #openstack-neutron | 14:52 | |
*** ajmiller has joined #openstack-neutron | 14:53 | |
*** rook has joined #openstack-neutron | 14:53 | |
*** aranjan has quit IRC | 14:55 | |
openstackgerrit | Merged openstack/neutron: Move state reporting initialization to after worker forking https://review.openstack.org/331672 | 14:57 |
*** emagana has joined #openstack-neutron | 14:58 | |
*** wolverineav has joined #openstack-neutron | 14:58 | |
*** obondarev has quit IRC | 14:58 | |
*** aranjan has joined #openstack-neutron | 14:59 | |
*** mhickey has joined #openstack-neutron | 15:00 | |
*** emagana has quit IRC | 15:02 | |
*** Leo_ has joined #openstack-neutron | 15:02 | |
*** dave-mccowan has joined #openstack-neutron | 15:02 | |
*** crose has joined #openstack-neutron | 15:02 | |
*** josecastroleon has quit IRC | 15:02 | |
*** lucas____ has joined #openstack-neutron | 15:02 | |
*** lucas____ has quit IRC | 15:02 | |
*** tbachman has quit IRC | 15:02 | |
*** wolverineav has quit IRC | 15:02 | |
*** Leom has joined #openstack-neutron | 15:03 | |
*** karad has quit IRC | 15:04 | |
mfranc213 | SridarK: yushiro: chandanc: SarathMekala: xgerman: hoangcx: hello there. https://review.openstack.org/#/c/329701 | 15:05 |
*** Leo_ has quit IRC | 15:07 | |
*** kfox1111 is now known as kfox1111_away | 15:07 | |
*** vhosakot has joined #openstack-neutron | 15:07 | |
*** vikram has quit IRC | 15:08 | |
*** tbachman has joined #openstack-neutron | 15:09 | |
*** vhoward has quit IRC | 15:10 | |
*** jlibosva has quit IRC | 15:10 | |
*** wolverineav has joined #openstack-neutron | 15:11 | |
*** tesseract- has quit IRC | 15:12 | |
*** matrohon has quit IRC | 15:13 | |
*** dansmith is now known as superdan | 15:13 | |
openstackgerrit | Hong Hui Xiao proposed openstack/neutron: Remove the deprecated config "quota_items" https://review.openstack.org/331591 | 15:14 |
*** rook has quit IRC | 15:14 | |
*** azbiswas has joined #openstack-neutron | 15:15 | |
*** asingh has joined #openstack-neutron | 15:16 | |
*** wolverineav has quit IRC | 15:16 | |
*** tbachman_ has joined #openstack-neutron | 15:17 | |
*** daneyon has joined #openstack-neutron | 15:18 | |
*** tbachman has quit IRC | 15:18 | |
*** tbachman_ is now known as tbachman | 15:18 | |
*** baojg has joined #openstack-neutron | 15:19 | |
*** mlavalle has joined #openstack-neutron | 15:19 | |
*** tonytan4ever has quit IRC | 15:19 | |
*** daneyon_ has joined #openstack-neutron | 15:20 | |
openstackgerrit | Michael Bayer proposed openstack/neutron: Restore MySQL and Postgresql functional testing https://review.openstack.org/332476 | 15:20 |
*** salv-orl_ has quit IRC | 15:20 | |
*** wolverineav has joined #openstack-neutron | 15:23 | |
*** daneyon has quit IRC | 15:23 | |
*** prateek has quit IRC | 15:24 | |
*** rook has joined #openstack-neutron | 15:24 | |
*** jbell8 has joined #openstack-neutron | 15:27 | |
*** javeriak has joined #openstack-neutron | 15:29 | |
*** eddima has quit IRC | 15:29 | |
openstackgerrit | Hong Hui Xiao proposed openstack/neutron: Remove the deprecated quota driver "ConfDriver" https://review.openstack.org/331630 | 15:31 |
*** wolverineav has quit IRC | 15:31 | |
*** xdcc has joined #openstack-neutron | 15:32 | |
*** mickeys has joined #openstack-neutron | 15:33 | |
*** buttercup has quit IRC | 15:33 | |
openstackgerrit | Ann Kamyshnikova proposed openstack/neutron: New engine facade from oslo_db: Step 2 https://review.openstack.org/312393 | 15:34 |
*** daneyon_ has quit IRC | 15:34 | |
*** tbachman has quit IRC | 15:34 | |
*** pacoblox has quit IRC | 15:35 | |
*** stanzgy has quit IRC | 15:36 | |
*** stanzgy_ has quit IRC | 15:36 | |
*** pacoblox has joined #openstack-neutron | 15:37 | |
*** gvrangan has joined #openstack-neutron | 15:38 | |
*** pcaruana has quit IRC | 15:38 | |
*** gouthamr has quit IRC | 15:39 | |
*** zhhuabj has quit IRC | 15:39 | |
*** manikanta_tadi has joined #openstack-neutron | 15:39 | |
*** gouthamr has joined #openstack-neutron | 15:39 | |
*** rcernin has quit IRC | 15:39 | |
*** jlanoux_ has quit IRC | 15:40 | |
*** karad has joined #openstack-neutron | 15:40 | |
*** salv-orlando has joined #openstack-neutron | 15:40 | |
*** sridharg has quit IRC | 15:41 | |
sc68cal | Sam-I-Am: hey, I was working with a co-worker and I was thinking of maybe adding some of the deeper wiring information about OVS and Linux Bridge and how it does VXLAN | 15:42 |
sc68cal | namely, how OVS uses unicast tunnels and creates a fabric, versus linuxbridge's multicast | 15:42 |
sc68cal | to the networking guide | 15:42 |
*** mosulica has quit IRC | 15:43 | |
amuller | sc68cal: you can lift content from here if you want https://assafmuller.com/category/overlays/ | 15:46 |
amuller | sc68cal: there's a post there specifically about how ml2+ovs creates tunnel overlays | 15:47 |
*** manikanta_tadi has quit IRC | 15:47 | |
*** irenab has quit IRC | 15:47 | |
*** kbringard has joined #openstack-neutron | 15:47 | |
*** thumpba has joined #openstack-neutron | 15:48 | |
sc68cal | amuller: thanks :) - I think most likely it'll be some ovs-vsctl show outputs then some ip(2) commands | 15:48 |
sc68cal | for ovs and lb respectively | 15:48 |
*** irenab has joined #openstack-neutron | 15:49 | |
*** wolverineav has joined #openstack-neutron | 15:49 | |
*** wwriverrat has quit IRC | 15:50 | |
*** itisha has quit IRC | 15:50 | |
*** regXboi has quit IRC | 15:50 | |
sc68cal | Sam-I-Am: probably not stuck directly in the scenarios, maybe as an appendix | 15:51 |
*** zhhuabj has joined #openstack-neutron | 15:51 | |
sc68cal | Sam-I-Am: heh. I think there's a joke in there somewhere. book appendix vs vermiform appendix | 15:52 |
*** wwriverrat has joined #openstack-neutron | 15:52 | |
openstackgerrit | Brandon Logan proposed openstack/neutron: Pecan: Implement pagination https://review.openstack.org/328542 | 15:53 |
*** baoli has joined #openstack-neutron | 15:53 | |
*** baoli_ has quit IRC | 15:53 | |
*** baoli has quit IRC | 15:55 | |
*** alex_xu has quit IRC | 15:55 | |
*** baoli has joined #openstack-neutron | 15:55 | |
*** regXboi has joined #openstack-neutron | 15:56 | |
*** baoli_ has joined #openstack-neutron | 15:57 | |
*** andymaier has quit IRC | 15:58 | |
*** alex_xu has joined #openstack-neutron | 15:58 | |
*** a_ta has quit IRC | 15:59 | |
*** wolverineav has quit IRC | 15:59 | |
*** kobis has joined #openstack-neutron | 15:59 | |
*** baoli has quit IRC | 16:01 | |
*** a_ta has joined #openstack-neutron | 16:02 | |
*** vhosakot has quit IRC | 16:03 | |
*** vhosakot has joined #openstack-neutron | 16:04 | |
*** fragatina has joined #openstack-neutron | 16:04 | |
*** fragatina has quit IRC | 16:04 | |
*** fragatina has joined #openstack-neutron | 16:05 | |
*** karad has quit IRC | 16:06 | |
*** gongysh has quit IRC | 16:07 | |
*** daneyon has joined #openstack-neutron | 16:07 | |
*** wolverineav has joined #openstack-neutron | 16:09 | |
*** reedip has quit IRC | 16:09 | |
*** kfox1111_away is now known as kfox1111 | 16:09 | |
*** akshai_ has quit IRC | 16:11 | |
*** tmorin has quit IRC | 16:11 | |
*** crose has quit IRC | 16:13 | |
*** gvrangan has quit IRC | 16:14 | |
*** xdcc has quit IRC | 16:15 | |
*** abregman|afk has quit IRC | 16:21 | |
*** abregman|afk has joined #openstack-neutron | 16:21 | |
*** abregman_ has joined #openstack-neutron | 16:21 | |
*** abregman_ has quit IRC | 16:23 | |
*** gouthamr has quit IRC | 16:23 | |
*** abregman has joined #openstack-neutron | 16:23 | |
*** techcet has joined #openstack-neutron | 16:23 | |
*** techcet has quit IRC | 16:24 | |
*** techcet has joined #openstack-neutron | 16:24 | |
*** karad has joined #openstack-neutron | 16:25 | |
*** abregman|afk has quit IRC | 16:26 | |
*** baojg has quit IRC | 16:26 | |
*** wolverineav has quit IRC | 16:28 | |
*** akshai has joined #openstack-neutron | 16:28 | |
*** techcet has quit IRC | 16:28 | |
*** shivrao has joined #openstack-neutron | 16:29 | |
*** tbachman has joined #openstack-neutron | 16:29 | |
*** ygbo has quit IRC | 16:29 | |
*** yamahata has quit IRC | 16:31 | |
*** javeriak has quit IRC | 16:31 | |
*** ajmiller has quit IRC | 16:31 | |
*** shivrao_ has joined #openstack-neutron | 16:31 | |
*** ajmiller has joined #openstack-neutron | 16:32 | |
*** alex_xu has quit IRC | 16:32 | |
*** ajmiller has quit IRC | 16:33 | |
*** ajmiller has joined #openstack-neutron | 16:33 | |
*** shivrao has quit IRC | 16:33 | |
*** shivrao_ is now known as shivrao | 16:33 | |
*** eezhova has quit IRC | 16:34 | |
*** dmk0202 has joined #openstack-neutron | 16:34 | |
*** kobis has quit IRC | 16:34 | |
*** manikanta_tadi has joined #openstack-neutron | 16:35 | |
*** alex_xu has joined #openstack-neutron | 16:35 | |
*** xdcc has joined #openstack-neutron | 16:36 | |
*** chandankumar has quit IRC | 16:36 | |
*** wolverineav has joined #openstack-neutron | 16:36 | |
*** javeriak has joined #openstack-neutron | 16:39 | |
*** garyk has quit IRC | 16:42 | |
*** ygbo has joined #openstack-neutron | 16:42 | |
*** gouthamr has joined #openstack-neutron | 16:44 | |
*** manikanta_tadi has quit IRC | 16:44 | |
*** ygbo has quit IRC | 16:45 | |
*** banix has joined #openstack-neutron | 16:47 | |
*** lucasagomes is now known as lucas-afk | 16:47 | |
*** tidwellr has joined #openstack-neutron | 16:48 | |
*** wolverineav has quit IRC | 16:49 | |
*** anilvenkata has quit IRC | 16:50 | |
*** gangil has joined #openstack-neutron | 16:50 | |
*** rossella_s has quit IRC | 16:51 | |
openstackgerrit | Igor Duarte Cardoso proposed openstack/neutron-specs: The Neutron Common Classifier possible approaches https://review.openstack.org/333993 | 16:52 |
*** kevo has quit IRC | 16:56 | |
*** ajmiller has quit IRC | 16:57 | |
*** wolverineav has joined #openstack-neutron | 16:57 | |
*** ajmiller has joined #openstack-neutron | 16:57 | |
*** salv-orl_ has joined #openstack-neutron | 16:59 | |
*** vhoward has joined #openstack-neutron | 16:59 | |
*** kawa2014 has quit IRC | 17:00 | |
*** rkukura has quit IRC | 17:00 | |
*** rkukura has joined #openstack-neutron | 17:01 | |
*** rkukura has quit IRC | 17:02 | |
*** akshai has quit IRC | 17:02 | |
*** salv-orlando has quit IRC | 17:02 | |
*** fragatina has quit IRC | 17:02 | |
*** sudipto has quit IRC | 17:02 | |
*** akshai has joined #openstack-neutron | 17:02 | |
*** brad_behle has quit IRC | 17:02 | |
*** shivrao has quit IRC | 17:03 | |
*** gvrangan has joined #openstack-neutron | 17:04 | |
*** xdcc has quit IRC | 17:05 | |
*** xdcc has joined #openstack-neutron | 17:05 | |
*** wolverineav has quit IRC | 17:06 | |
openstackgerrit | Kyle Mestery proposed openstack/neutron-fwaas: DevStack plugin for fwaas https://review.openstack.org/214350 | 17:06 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements https://review.openstack.org/333435 | 17:07 |
*** wolverineav has joined #openstack-neutron | 17:08 | |
*** superflyy has joined #openstack-neutron | 17:08 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/os-vif: Updated from global requirements https://review.openstack.org/331901 | 17:10 |
openstackgerrit | Merged openstack/neutron-vpnaas: Updated from global requirements https://review.openstack.org/333437 | 17:12 |
*** wolverineav has quit IRC | 17:12 | |
*** amuller is now known as amuller_afk | 17:13 | |
*** davidsha has quit IRC | 17:14 | |
*** wolverineav has joined #openstack-neutron | 17:15 | |
*** Leom has quit IRC | 17:15 | |
*** dmk0202 has quit IRC | 17:15 | |
*** ivar-lazzaro has joined #openstack-neutron | 17:15 | |
*** jpena is now known as jpena|off | 17:16 | |
*** catintheroof has joined #openstack-neutron | 17:16 | |
*** dmk0202 has joined #openstack-neutron | 17:16 | |
*** Administrator_ has joined #openstack-neutron | 17:16 | |
*** yamahata has joined #openstack-neutron | 17:17 | |
*** yalie has quit IRC | 17:20 | |
*** superflyy has quit IRC | 17:20 | |
*** pacoblox has quit IRC | 17:21 | |
*** ivar-lazzaro has quit IRC | 17:21 | |
*** SumitNaiksatam has quit IRC | 17:23 | |
*** ivar-lazzaro has joined #openstack-neutron | 17:25 | |
*** grassass has quit IRC | 17:29 | |
*** regXboi has quit IRC | 17:30 | |
*** shivrao has joined #openstack-neutron | 17:30 | |
*** shashank_hegde has joined #openstack-neutron | 17:31 | |
*** claudiub|2 has joined #openstack-neutron | 17:31 | |
openstackgerrit | Hong Hui Xiao proposed openstack/neutron: Add mechanism driver error details to MechanismDriverError https://review.openstack.org/327500 | 17:31 |
*** kevo has joined #openstack-neutron | 17:31 | |
*** grassass has joined #openstack-neutron | 17:32 | |
*** claudiub has quit IRC | 17:35 | |
*** dmk0202 has quit IRC | 17:35 | |
*** rkukura has joined #openstack-neutron | 17:37 | |
*** regXboi has joined #openstack-neutron | 17:38 | |
*** dmk0202 has joined #openstack-neutron | 17:39 | |
*** shivrao has quit IRC | 17:42 | |
*** pacoblox has joined #openstack-neutron | 17:42 | |
*** s3wong has joined #openstack-neutron | 17:43 | |
*** abhiraut has joined #openstack-neutron | 17:44 | |
*** ajmiller has quit IRC | 17:45 | |
*** thumpba_ has joined #openstack-neutron | 17:46 | |
*** baoli_ has quit IRC | 17:47 | |
*** abhiraut has quit IRC | 17:48 | |
*** thumpba has quit IRC | 17:48 | |
*** baoli has joined #openstack-neutron | 17:48 | |
*** akshai has quit IRC | 17:48 | |
*** akshai has joined #openstack-neutron | 17:49 | |
*** sambetts is now known as sambetts|afk | 17:49 | |
*** baoli has quit IRC | 17:50 | |
*** regXboi has quit IRC | 17:54 | |
*** regXboi has joined #openstack-neutron | 17:54 | |
*** abhiraut has joined #openstack-neutron | 17:55 | |
*** tflynn has joined #openstack-neutron | 17:57 | |
*** yamamoto has quit IRC | 17:57 | |
*** shivrao has joined #openstack-neutron | 17:58 | |
*** sthillma has joined #openstack-neutron | 18:01 | |
*** openstackgerrit has quit IRC | 18:03 | |
*** pacoblox has quit IRC | 18:03 | |
*** openstackgerrit has joined #openstack-neutron | 18:04 | |
*** pacoblox has joined #openstack-neutron | 18:05 | |
openstackgerrit | Brian Haley proposed openstack/neutron: DNM: DVR: Debug parent patch failure https://review.openstack.org/333036 | 18:06 |
*** boden has quit IRC | 18:07 | |
*** jbell8 has quit IRC | 18:08 | |
*** ajmiller has joined #openstack-neutron | 18:08 | |
*** hynekm has joined #openstack-neutron | 18:08 | |
*** wolverineav has quit IRC | 18:11 | |
*** jmlowe has joined #openstack-neutron | 18:12 | |
jmlowe | I'm trying to enable lbaas, but I think I'm missing something, the agent shows up and i've added the service_plugin and service provider but I keep getting 404 errors, any hints? | 18:12 |
*** kobis has joined #openstack-neutron | 18:13 | |
*** a_ta has quit IRC | 18:15 | |
*** jckasper has quit IRC | 18:15 | |
*** jckasper has joined #openstack-neutron | 18:16 | |
*** slaweq has joined #openstack-neutron | 18:17 | |
*** kobis has quit IRC | 18:17 | |
*** a_ta_ has joined #openstack-neutron | 18:19 | |
*** jckasper has quit IRC | 18:20 | |
*** hynekm has quit IRC | 18:21 | |
*** a_ta_ has quit IRC | 18:23 | |
*** slaweq has quit IRC | 18:25 | |
*** SumitNaiksatam has joined #openstack-neutron | 18:26 | |
*** jckasper has joined #openstack-neutron | 18:27 | |
*** Leo_ has joined #openstack-neutron | 18:27 | |
*** gvrangan has quit IRC | 18:30 | |
*** wolverineav has joined #openstack-neutron | 18:30 | |
*** techcet has joined #openstack-neutron | 18:34 | |
*** aranjan has quit IRC | 18:37 | |
*** ijw has joined #openstack-neutron | 18:39 | |
openstackgerrit | John Perkins proposed openstack/neutron: [WIP] Pecan support paste deploy configs https://review.openstack.org/315234 | 18:40 |
*** openstackstatus has quit IRC | 18:40 | |
*** openstack has joined #openstack-neutron | 18:45 | |
*** claudiub|2 has quit IRC | 18:45 | |
*** regXboi has quit IRC | 18:46 | |
*** fzdarsky has quit IRC | 18:46 | |
openstackgerrit | Henry Gessau proposed openstack/neutron: [WIP] Support unique labels for alembic branches https://review.openstack.org/333633 | 18:48 |
*** salv-orl_ has quit IRC | 18:49 | |
*** techcet has quit IRC | 18:49 | |
*** techcet has joined #openstack-neutron | 18:50 | |
*** gouthamr has quit IRC | 18:51 | |
openstackgerrit | John Perkins proposed openstack/neutron: [WIP] Pecan support paste deploy configs https://review.openstack.org/315234 | 18:52 |
*** daneyon has quit IRC | 18:54 | |
*** amotoki has quit IRC | 18:55 | |
*** yamamoto has joined #openstack-neutron | 18:58 | |
*** pacoblox has quit IRC | 18:59 | |
thorst_ | If I’m running with DVR...am I able to have my br-ex host the IP needed for my br-tun? | 18:59 |
thorst_ | I have been trying it...but when I configured it that way, the VM was not able to get its DHCP address (looked like the traffic died in br-int and didn't make it to tun or ex) | 19:00 |
*** gouthamr has joined #openstack-neutron | 19:00 | |
*** yamamoto has quit IRC | 19:00 | |
*** ajmiller has quit IRC | 19:00 | |
*** yamamoto has joined #openstack-neutron | 19:00 | |
*** ajmiller has joined #openstack-neutron | 19:00 | |
*** javeriak has quit IRC | 19:01 | |
*** regXboi has joined #openstack-neutron | 19:01 | |
*** tbachman has quit IRC | 19:01 | |
*** fzdarsky has joined #openstack-neutron | 19:01 | |
*** daneyon has joined #openstack-neutron | 19:02 | |
*** rvba has quit IRC | 19:02 | |
*** tbachman has joined #openstack-neutron | 19:02 | |
*** Sukhdev has joined #openstack-neutron | 19:06 | |
*** techcet has quit IRC | 19:07 | |
*** abregman has quit IRC | 19:08 | |
*** adreznec has quit IRC | 19:12 | |
*** hynekm has joined #openstack-neutron | 19:13 | |
*** adreznec has joined #openstack-neutron | 19:13 | |
*** asingh has joined #openstack-neutron | 19:15 | |
*** baoli has joined #openstack-neutron | 19:15 | |
*** salv-orlando has joined #openstack-neutron | 19:16 | |
*** abhiraut has quit IRC | 19:17 | |
*** hynekm has quit IRC | 19:18 | |
*** a_ta has joined #openstack-neutron | 19:20 | |
*** azbiswas has quit IRC | 19:20 | |
*** boden has joined #openstack-neutron | 19:21 | |
*** ajmiller has quit IRC | 19:22 | |
*** ajmiller has joined #openstack-neutron | 19:22 | |
*** njohnston|afk is now known as njohnston | 19:25 | |
*** a_ta has quit IRC | 19:26 | |
*** slaweq has joined #openstack-neutron | 19:28 | |
*** yamamoto has quit IRC | 19:29 | |
*** ametts has quit IRC | 19:31 | |
*** rawlin has joined #openstack-neutron | 19:36 | |
*** blogan_ has joined #openstack-neutron | 19:37 | |
rawlin | kevinbenton: ping | 19:38 |
*** fzdarsky has quit IRC | 19:39 | |
jmlowe | so changing providers isn't such a great idea Invalid: Multiple default providers for service LOADBALANCER | 19:39 |
*** ajmiller has quit IRC | 19:39 | |
*** mhickey has quit IRC | 19:39 | |
*** baoli has quit IRC | 19:40 | |
*** ivar-lazzaro has joined #openstack-neutron | 19:42 | |
*** dave-mcc_ has joined #openstack-neutron | 19:43 | |
*** dave-mccowan has quit IRC | 19:46 | |
*** ajmiller has joined #openstack-neutron | 19:46 | |
*** ivar-lazzaro has quit IRC | 19:46 | |
*** dave-mccowan has joined #openstack-neutron | 19:48 | |
jmlowe | any hints for what to do to get my neutron servers back up with this error "Invalid: Multiple default providers for service LOADBALANCER"? | 19:49 |
*** amuller_afk is now known as amuller | 19:50 | |
*** dave-mcc_ has quit IRC | 19:50 | |
jmlowe | ah got it, I didn't notice the neutron_lbaas.conf | 19:50 |
*** pacoblox has joined #openstack-neutron | 19:52 | |
*** jmlowe has quit IRC | 19:52 | |
*** jmlowe has joined #openstack-neutron | 19:52 | |
*** ajmiller_ has joined #openstack-neutron | 19:53 | |
*** daneyon has quit IRC | 19:54 | |
*** jmlowe has quit IRC | 19:54 | |
*** a_ta has joined #openstack-neutron | 19:55 | |
*** ajmiller has quit IRC | 19:57 | |
*** ajmiller__ has joined #openstack-neutron | 19:58 | |
openstackgerrit | Michael Bayer proposed openstack/neutron: Restore MySQL and Postgresql functional testing https://review.openstack.org/332476 | 19:59 |
*** daneyon has joined #openstack-neutron | 19:59 | |
*** ajmiller_ has quit IRC | 20:02 | |
*** chumjjiconn has joined #openstack-neutron | 20:03 | |
chumjjiconn | Hello Guys, which more complete solution SDN and VNF you indicate ? I'm reading about Tacker , ASCARA , OPNFV , OPENSMANO . What do you suggest ? | 20:03 |
*** ajmiller__ is now known as ajmiller | 20:11 | |
openstackgerrit | cathy proposed openstack/neutron: A common flow classifier that can be used by Neutron features https://review.openstack.org/332584 | 20:13 |
*** dave-mcc_ has joined #openstack-neutron | 20:15 | |
*** techcet has joined #openstack-neutron | 20:15 | |
*** chumjjiconn has quit IRC | 20:16 | |
*** pacoblox has quit IRC | 20:17 | |
*** dave-mccowan has quit IRC | 20:17 | |
*** pacoblox has joined #openstack-neutron | 20:19 | |
*** mickeys has quit IRC | 20:20 | |
*** dave-mccowan has joined #openstack-neutron | 20:20 | |
*** vhosakot has quit IRC | 20:21 | |
openstackgerrit | Brian Haley proposed openstack/neutron: DNM: DVR: Debug parent patch failure https://review.openstack.org/333036 | 20:21 |
*** jckasper has quit IRC | 20:23 | |
*** akshai has quit IRC | 20:23 | |
*** jckasper has joined #openstack-neutron | 20:23 | |
*** dxu has joined #openstack-neutron | 20:23 | |
*** dave-mcc_ has quit IRC | 20:23 | |
*** xdcc has quit IRC | 20:26 | |
*** jckasper has quit IRC | 20:27 | |
*** azbiswas has joined #openstack-neutron | 20:28 | |
*** yamamoto has joined #openstack-neutron | 20:30 | |
*** jckasper has joined #openstack-neutron | 20:31 | |
*** cleong has quit IRC | 20:31 | |
*** fzdarsky has joined #openstack-neutron | 20:31 | |
*** ranjithd has quit IRC | 20:32 | |
*** jckasper has quit IRC | 20:35 | |
*** ajmiller has quit IRC | 20:36 | |
*** ajmiller has joined #openstack-neutron | 20:38 | |
*** asingh has quit IRC | 20:38 | |
*** jmlowe has joined #openstack-neutron | 20:40 | |
*** yamamoto has quit IRC | 20:42 | |
*** ivar-lazzaro has joined #openstack-neutron | 20:43 | |
*** mickeys has joined #openstack-neutron | 20:43 | |
*** abhiraut has joined #openstack-neutron | 20:44 | |
*** rvba has joined #openstack-neutron | 20:45 | |
*** rvba has joined #openstack-neutron | 20:45 | |
*** dmk0202 has quit IRC | 20:46 | |
*** ivar-lazzaro has quit IRC | 20:48 | |
*** fzdarsky has quit IRC | 20:48 | |
*** SamYaple has joined #openstack-neutron | 20:49 | |
openstackgerrit | boden proposed openstack/neutron-lib: Rehome IPV6_MODES constants https://review.openstack.org/334088 | 20:49 |
*** gvrangan has joined #openstack-neutron | 20:50 | |
*** Administrator_ has quit IRC | 20:51 | |
*** boden has quit IRC | 20:51 | |
*** tbachman_ has joined #openstack-neutron | 20:52 | |
*** tbachman has quit IRC | 20:54 | |
*** tbachman_ is now known as tbachman | 20:54 | |
*** karad has quit IRC | 20:54 | |
*** regXboi has quit IRC | 20:56 | |
openstackgerrit | Roey Chen proposed openstack/neutron: Adding the appropriate log hints where needed https://review.openstack.org/332750 | 20:57 |
*** regXboi has joined #openstack-neutron | 20:58 | |
openstackgerrit | Slawek Kaplonski proposed openstack/neutron: [WIP] Add QoS bandwidth limit for instance ingress traffic https://review.openstack.org/303626 | 20:59 |
*** abhiraut has quit IRC | 20:59 | |
*** abhiraut has joined #openstack-neutron | 21:00 | |
SamYaple | anyone have any experince with the openvswitch firewall driver? it is not adding any of my secgroup rules to the flows (kernel 4.6, ovs 2.5.0) | 21:04 |
*** trevormc has quit IRC | 21:06 | |
*** john-davidge has quit IRC | 21:08 | |
*** yamamoto has joined #openstack-neutron | 21:11 | |
*** yamamoto has quit IRC | 21:15 | |
*** vhoward has quit IRC | 21:17 | |
*** Leo_ has quit IRC | 21:19 | |
*** cvstealth has quit IRC | 21:19 | |
*** jbell8 has joined #openstack-neutron | 21:20 | |
*** ajmiller_ has joined #openstack-neutron | 21:21 | |
*** lascii is now known as alaski | 21:23 | |
*** ivar-lazzaro has joined #openstack-neutron | 21:25 | |
*** ajmiller has quit IRC | 21:25 | |
*** techcet has quit IRC | 21:26 | |
*** aranjan has joined #openstack-neutron | 21:26 | |
*** techcet has joined #openstack-neutron | 21:26 | |
*** ajmiller_ has quit IRC | 21:27 | |
*** aranjan has quit IRC | 21:29 | |
*** aranjan has joined #openstack-neutron | 21:29 | |
dlundquist | SamYaple: I've been comparing it to the OVS and Iptables firewall implementations -- I | 21:29 |
dlundquist | I'm seeing user configured flows | 21:30 |
*** techcet has quit IRC | 21:31 | |
*** ajmiller has joined #openstack-neutron | 21:32 | |
*** slaweq has quit IRC | 21:32 | |
*** tbachman_ has joined #openstack-neutron | 21:34 | |
*** tbachman has quit IRC | 21:34 | |
*** tbachman_ is now known as tbachman | 21:34 | |
*** banix has quit IRC | 21:35 | |
*** gouthamr has quit IRC | 21:36 | |
*** tbachman has quit IRC | 21:40 | |
*** tbachman has joined #openstack-neutron | 21:41 | |
*** amuller has quit IRC | 21:42 | |
*** claudiub|2 has joined #openstack-neutron | 21:44 | |
*** a_ta has quit IRC | 21:44 | |
openstackgerrit | Ryan Tidwell proposed openstack/neutron: Enable CRUD for trunk ports https://review.openstack.org/320092 | 21:45 |
*** thorst_ has quit IRC | 21:49 | |
*** tbachman has quit IRC | 21:50 | |
*** thorst has joined #openstack-neutron | 21:50 | |
*** jbell8 has quit IRC | 21:50 | |
*** techcet has joined #openstack-neutron | 21:50 | |
*** jbell8 has joined #openstack-neutron | 21:51 | |
*** regXboi has quit IRC | 21:52 | |
*** gouthamr has joined #openstack-neutron | 21:53 | |
*** mickeys has quit IRC | 21:54 | |
*** regXboi has joined #openstack-neutron | 21:54 | |
*** gouthamr_ has joined #openstack-neutron | 21:55 | |
*** tbachman has joined #openstack-neutron | 21:56 | |
*** gouthamr has quit IRC | 21:58 | |
*** kbringard has quit IRC | 21:58 | |
*** thorst has quit IRC | 21:58 | |
*** tbachman has quit IRC | 21:59 | |
*** tbachman has joined #openstack-neutron | 21:59 | |
*** janzian has quit IRC | 22:01 | |
*** mickeys has joined #openstack-neutron | 22:02 | |
*** asingh has joined #openstack-neutron | 22:02 | |
*** tbachman has quit IRC | 22:06 | |
*** sthillma has quit IRC | 22:06 | |
*** regXboi has quit IRC | 22:06 | |
*** regXboi has joined #openstack-neutron | 22:07 | |
*** tbachman has joined #openstack-neutron | 22:07 | |
*** regXboi has quit IRC | 22:07 | |
*** sdague has quit IRC | 22:08 | |
*** tbachman_ has joined #openstack-neutron | 22:10 | |
*** tflynn_ has joined #openstack-neutron | 22:11 | |
*** tbachman has quit IRC | 22:12 | |
*** pradk has quit IRC | 22:12 | |
*** ajmiller has quit IRC | 22:13 | |
*** rdo has quit IRC | 22:14 | |
*** rtheis has quit IRC | 22:14 | |
*** tflynn has quit IRC | 22:15 | |
*** tflynn_ has quit IRC | 22:15 | |
*** p01nt3r75 has joined #openstack-neutron | 22:15 | |
*** rdo has joined #openstack-neutron | 22:16 | |
*** tbachman_ has quit IRC | 22:16 | |
*** harlowja has quit IRC | 22:17 | |
*** tpsilva has quit IRC | 22:18 | |
kevinbenton | dlundquist: have you found anything interesting? | 22:18 |
*** catintheroof has quit IRC | 22:18 | |
kevinbenton | dlundquist: in your comparison | 22:18 |
*** tbachman has joined #openstack-neutron | 22:20 | |
kevinbenton | haleyb: how come i only get a +1? you mad at me? | 22:21 |
kevinbenton | :) | 22:21 |
*** thumpba_ has quit IRC | 22:24 | |
*** thumpba has joined #openstack-neutron | 22:24 | |
*** ajmiller has joined #openstack-neutron | 22:24 | |
*** thumpba has quit IRC | 22:24 | |
*** thumpba has joined #openstack-neutron | 22:25 | |
*** thumpba has quit IRC | 22:25 | |
*** thumpba has joined #openstack-neutron | 22:25 | |
*** thumpba has quit IRC | 22:26 | |
*** thumpba has joined #openstack-neutron | 22:26 | |
*** thumpba has quit IRC | 22:27 | |
*** thumpba has joined #openstack-neutron | 22:27 | |
*** thumpba has quit IRC | 22:27 | |
*** thumpba has joined #openstack-neutron | 22:28 | |
*** thumpba has quit IRC | 22:28 | |
*** thumpba has joined #openstack-neutron | 22:28 | |
*** thumpba has quit IRC | 22:29 | |
*** thumpba has joined #openstack-neutron | 22:29 | |
*** harlowja has joined #openstack-neutron | 22:30 | |
*** thumpba has quit IRC | 22:30 | |
*** thumpba_ has joined #openstack-neutron | 22:30 | |
*** tbachman_ has joined #openstack-neutron | 22:30 | |
*** thumpba_ has quit IRC | 22:30 | |
*** edmondsw has quit IRC | 22:32 | |
*** tbachman has quit IRC | 22:32 | |
*** tbachman has joined #openstack-neutron | 22:33 | |
*** tbachman_ has quit IRC | 22:35 | |
openstackgerrit | Brandon Logan proposed openstack/neutron: Pecan: Implement pagination https://review.openstack.org/328542 | 22:37 |
blogan | kevinbenton: ^ | 22:37 |
blogan | doh | 22:39 |
openstackgerrit | Brandon Logan proposed openstack/neutron: Pecan: Implement pagination https://review.openstack.org/328542 | 22:39 |
blogan | kevinbenton: for realz this time ^ | 22:39 |
*** techcet has quit IRC | 22:42 | |
*** thumpba has joined #openstack-neutron | 22:45 | |
*** thumpba has quit IRC | 22:45 | |
*** techcet has joined #openstack-neutron | 22:46 | |
*** mrhillsman is now known as mrhillsman_ | 22:46 | |
*** yamahata has quit IRC | 22:47 | |
*** techcet has quit IRC | 22:50 | |
*** techcet has joined #openstack-neutron | 22:50 | |
*** pacoblox has quit IRC | 22:50 | |
*** ajmiller has quit IRC | 22:51 | |
*** ajmiller has joined #openstack-neutron | 22:52 | |
*** ajmiller has quit IRC | 22:52 | |
*** thorst has joined #openstack-neutron | 22:57 | |
*** rvba has quit IRC | 22:58 | |
*** salv-orl_ has joined #openstack-neutron | 22:58 | |
*** techcet has quit IRC | 22:59 | |
*** salv-orlando has quit IRC | 23:01 | |
*** markvoelker has quit IRC | 23:01 | |
*** yamahata has joined #openstack-neutron | 23:02 | |
*** markvoelker has joined #openstack-neutron | 23:02 | |
*** thorst has quit IRC | 23:04 | |
*** thumpba has joined #openstack-neutron | 23:06 | |
*** thumpba has quit IRC | 23:06 | |
*** ivar-lazzaro has quit IRC | 23:07 | |
*** itlinux has quit IRC | 23:09 | |
*** jbell8 has quit IRC | 23:13 | |
dlundquist | kevinbenton: I'm still working some things out, but it looks like there are some edge case differences -- e.g. if egress rules do not include an allow all DHCP requests work on some drivers, but not others. | 23:14 |
*** jbell8 has joined #openstack-neutron | 23:15 | |
*** banix has joined #openstack-neutron | 23:17 | |
*** daneyon has quit IRC | 23:17 | |
*** techcet has joined #openstack-neutron | 23:20 | |
*** mickeys has quit IRC | 23:24 | |
*** markvoelker has quit IRC | 23:26 | |
*** asingh has quit IRC | 23:33 | |
*** dxu has quit IRC | 23:37 | |
*** jbell8 has quit IRC | 23:37 | |
*** superdan is now known as dansmith | 23:38 | |
*** banix has quit IRC | 23:38 | |
*** jbell8 has joined #openstack-neutron | 23:39 | |
*** banix has joined #openstack-neutron | 23:39 | |
*** techcet has quit IRC | 23:39 | |
*** techcet has joined #openstack-neutron | 23:41 | |
*** sdague has joined #openstack-neutron | 23:43 | |
*** banix has quit IRC | 23:46 | |
*** salv-orl_ has quit IRC | 23:47 | |
*** abhiraut has quit IRC | 23:47 | |
*** techcet has quit IRC | 23:47 | |
*** aradhana has quit IRC | 23:49 | |
*** techcet has joined #openstack-neutron | 23:50 | |
*** adam_g has quit IRC | 23:50 | |
*** abhiraut has joined #openstack-neutron | 23:50 | |
*** tbachman_ has joined #openstack-neutron | 23:54 | |
*** tbachman has quit IRC | 23:56 | |
*** tbachman_ is now known as tbachman | 23:56 | |
*** techcet has quit IRC | 23:56 | |
*** Sukhdev has quit IRC | 23:58 | |
*** thumpba has joined #openstack-neutron | 23:59 | |
*** SumitNaiksatam has quit IRC | 23:59 | |
*** thumpba has quit IRC | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!