Tuesday, 2016-09-27

kevinbentonhaleyb: i notice we filter on permanent addresses00:00
kevinbentonhaleyb: is there a chance a previously added one isn't in the permanent state?00:00
*** salv-orlando has joined #openstack-neutron00:01
kevinbentonhaleyb: https://github.com/openstack/neutron/blob/master/neutron/agent/linux/interface.py#L114-L11500:01
haleybkevinbenton: oh, i haven't seen that exact one, adding the IPv6 global00:02
kevinbentonhaleyb: does that 'global' keyword make it ignore namespaces?00:02
haleybkevinbenton: no, it's just the scope if the address00:03
kevinbentonthat's what i though00:03
kevinbentonthought*00:03
*** fnaval has joined #openstack-neutron00:03
*** reedip has joined #openstack-neutron00:03
haleybi wonder if that devstack setting of accept_ra is doing this?  but that's not in a namespace00:03
*** ijw has quit IRC00:04
haleybkevinbenton: so this has tried more than once to add it00:04
kevinbentonhaleyb: yeah, it's happening on each reload00:04
kevinbentonhaleyb: so it doesn't even seem to be a race00:04
kevinbentonthat's why i wondered if our list call was ignoring something00:04
kevinbentonhaleyb: the one here: https://github.com/openstack/neutron/blob/master/neutron/agent/linux/interface.py#L114-L11500:05
*** salv-orlando has quit IRC00:05
haleybkevinbenton: this looks strange, although i think valid00:06
haleybhttp://logs.openstack.org/12/343312/5/gate/gate-tempest-dsvm-neutron-full-ubuntu-xenial/c11b933/logs/screen-q-dhcp.txt.gz?#_2016-09-26_21_42_21_77100:06
*** Sukhdev_ has joined #openstack-neutron00:06
*** Sukhdev has quit IRC00:07
kevinbentonhaleyb: what's strange about it?00:07
kevinbentonhaleyb: oh, just the closeness of the subnets?00:07
haleybyeah, didn't know if it was some route issue, but i could run those two by hand locally just fine00:08
kevinbentonyeah, i tried the same thing00:08
*** iyamahat has joined #openstack-neutron00:10
*** wolverineav has joined #openstack-neutron00:12
kevinbentonhaleyb: neutron/commit/d86f1b87f01c53c3e0b085086133b311e5bf3ab500:12
haleybi can only assume that it actually auto-configured the address - in which case "permanent" would miss it since it will be tagged dynamic00:12
kevinbentonThat just merged00:12
kevinbentonIt allows stateless v6 addresses to be added00:13
kevinbentonWould that be the issue?00:13
kevinbentonI didn't think v6 stateless would be auto configured for the dhcp agent00:13
*** ranjithd has quit IRC00:14
haleybkevinbenton: if it sees an RA it will auto-configure if accept_ra is set, and it defaults to 100:14
*** jhershbe has quit IRC00:14
kevinbentonhaleyb: ah, so it could be racing with an RA then?00:14
haleybyes, as soon as it's plugged it probably sees the RA, configures a "dynamic" address, then we try a static "permanent" one00:15
sterdnotshaken1Anyone know why you install the linuxbridge agent on the neutron controller node for provider networking?00:15
haleybso might need to set accept_ra=000:15
sterdnotshaken1It seems strange that the instructions have us configure linuxbridge_agent.ini on the controller node…00:16
*** wolverineav has quit IRC00:16
*** wolverineav has joined #openstack-neutron00:17
kevinbentonhaleyb: Yeah, because we want to prescribe addresses for dhcp agent in all of these cases I think00:17
*** gongysh has joined #openstack-neutron00:17
*** ijw has joined #openstack-neutron00:18
haleybkevinbenton: i'm assuming we can call configure_ipv6_ra from the interface driver when adding the interface?  then tweak it to accept a value00:19
*** Swami has quit IRC00:20
kevinbentonhaleyb: to make it the least invasive, can we just list the addresses including RA assigned things?00:20
haleybkevinbenton: or set the .default. one in the namespace when we create it?  then the others will inherit00:21
*** trisq has joined #openstack-neutron00:21
kevinbentonhaleyb: i think this needs to land in RC200:21
haleybkevinbenton: then i would try, 1) create dhcp namespace; 2) net.ipv6.conf.default.accept_ra=000:22
*** SKipp_ has quit IRC00:22
kevinbentonsterdnotshaken1: for the DHCP agent00:22
kevinbentonsterdnotshaken1: it still needs an L2 agent to wire its ports00:22
*** wolverineav has quit IRC00:23
*** trisq has quit IRC00:25
*** ijw has quit IRC00:25
kevinbentonhaleyb: where do we create the namespace?00:26
*** garyk has joined #openstack-neutron00:26
haleybi thought you knew :)  we do it in plug_new()00:27
kevinbentonhaleyb: is there any scenario where we would want to accept RAs?00:27
haleybensure_namespace call, but putting something there would be invasive00:27
*** wu_ng has joined #openstack-neutron00:28
sterdnotshaken1Thanks kevinbenton… so in these instructions (http://docs.openstack.org/mitaka/networking-guide/scenario-provider-lb.html), at the top it states that the controller should have management and provider networks plumed to it just like the compute nodes… Why is that exactly? For L2 connectivity you say? We are coming from the Classic with Linux Bridge design, where the controller was agnostic to the actual networks from00:28
kevinbentonsterdnotshaken1: it only needs the provider networks if it's running the dhcp agent (so the dhcp agent can get addresses to the VMs)00:29
haleybkevinbenton: probably not in that namespace.  i suppose your backup is to not use "permanent" although it seems a little hacky as a permanent solution00:29
kevinbentonhaleyb: you mean a non-permanant solutions ;)00:30
*** markvoelker has quit IRC00:30
*** baojg has quit IRC00:32
haleybkevinbenton: right, didn't see that coming :)00:32
sterdnotshaken1Ok, so I can just ignore the instructions in that link that have me modify linuxbridge_agent.ini if we don't have plans to install the dhcp agent on the controller node then?00:33
kevinbentonsterdnotshaken1: yeah, if the controller node isn't running DHCP or L3 agents, then there isn't a point of even having the linux bridge agent on there00:33
*** wolverineav has joined #openstack-neutron00:33
sterdnotshaken1kevinbenton: ok, thanks for the help!00:34
kevinbentonhaleyb: yeah, it seems it's going to be invasive to put it in the plug call00:34
kevinbentonhaleyb: can you think of anything that needs an RA that might be using this call?00:34
kevinbentonhaleyb: this call = our interface plug method00:35
haleybkevinbenton: i think if you do it right after, even if the IP is there, changing accept_ra to zero will blow the address away00:35
haleybwhich would mean the agent could do it00:35
kevinbentonhaleyb: do you have an env where you can confirm it?00:35
haleybkevinbenton: i think i have a devstack around that i can destroy00:36
*** jhershbe has joined #openstack-neutron00:36
*** sterdnotshaken1 has quit IRC00:36
kevinbentonhaleyb: i'm trying to figure out a way to reliably repro this00:37
*** david-lyle_ has joined #openstack-neutron00:38
haleybkevinbenton: strange, the existing dhcp namespace has a dynamic address already, code from last week00:38
haleybinet6 fd8e:558e:2a1b:0:f816:3eff:fe4a:e5ef/64 scope global mngtmpaddr dynamic00:38
kevinbentonhaleyb: right, but if that's on a stateless network00:38
kevinbentonhaleyb: we didn't try to add that explicitly in the dhcp agent00:39
kevinbentonhaleyb: until the merge this morning00:39
haleybit was configured via RA, let me change the accept_ra setting00:39
*** wolverineav has quit IRC00:39
haleybit didn't go away00:40
kevinbentonhaleyb: yeah, i suspected it's like DHCP00:40
kevinbentonhaleyb: once you have the addr00:40
*** banix has joined #openstack-neutron00:40
kevinbentonhaleyb: it's too late00:40
kevinbentonhaleyb: looks like a well-placed sleep reproduces this easily00:41
haleyboh, only if forwarding is set will changing that wipe it00:41
*** garyk has quit IRC00:41
*** gongysh has quit IRC00:41
*** david-lyle has quit IRC00:41
*** hoangcx has joined #openstack-neutron00:42
*** gvrangan has joined #openstack-neutron00:42
haleybkevinbenton: slaac take 1-3 seconds, so that would do it00:42
*** thorst has joined #openstack-neutron00:42
haleybkevinbenton: can you do an ensure_namespace in the agent, set the sysctl, then call plug() ?00:43
kevinbentonhaleyb: yeah, i see the l3 agent explicitly enables RA00:44
*** wolverineav has joined #openstack-neutron00:44
haleybright before self.driver.plug()00:44
*** iyamahat has quit IRC00:44
kevinbentonhaleyb: yeah, i'll give that a shot00:44
haleybkevinbenton: it might be assuming ovs_use_veth from reading plug_new() ?00:46
*** yfried has joined #openstack-neutron00:47
kevinbentonhaleyb: net.ipv6.conf. is scoped to the namespace, right?00:47
haleybkevinbenton: yes00:48
*** wolverineav has quit IRC00:49
*** ivar-laz_ has joined #openstack-neutron00:51
kevinbentonhaleyb: yeah, looks like that did the trig00:53
kevinbentontrick*00:53
kevinbentonhaleyb: patch coming up, would be good if i can get your review00:53
kevinbentonhaleyb: how much longer you on?00:53
*** mriedem is now known as mriedem_debate00:54
*** ivar-lazzaro has quit IRC00:54
*** mfuruta has joined #openstack-neutron00:54
*** apdibbo has joined #openstack-neutron00:55
*** wu_ng has quit IRC00:55
*** ivar-laz_ has quit IRC00:56
*** apdibbo has quit IRC00:59
*** yamamot__ has joined #openstack-neutron01:01
*** kevo has quit IRC01:01
*** gvrangan has quit IRC01:01
*** reedip has quit IRC01:01
*** salv-orlando has joined #openstack-neutron01:02
*** yfried has quit IRC01:03
haleybkevinbenton: i will take my laptop downstairs and check in :3001:06
*** salv-orlando has quit IRC01:06
*** gongysh has joined #openstack-neutron01:07
kevinbentonhaleyb: ok, patch is inbound01:07
kevinbentonhaleyb: just finished a test01:07
*** reedip has joined #openstack-neutron01:12
*** abhiraut has quit IRC01:15
*** EinstCrazy has joined #openstack-neutron01:15
*** gvrangan has joined #openstack-neutron01:16
*** wolverineav has joined #openstack-neutron01:16
*** haleyb_ has joined #openstack-neutron01:17
*** hieulq has joined #openstack-neutron01:18
*** jhershbe has quit IRC01:21
*** thorst has quit IRC01:21
*** thorst has joined #openstack-neutron01:22
*** jhershbe has joined #openstack-neutron01:24
openstackgerritKevin Benton proposed openstack/neutron: Disable 'accept_ras' in DHCP agent namespace  https://review.openstack.org/37714001:24
kevinbentonhaleyb: ^^01:24
haleyb_kevinbenton: i will take a look, thanks01:25
*** ijw has joined #openstack-neutron01:26
*** alex_xu has quit IRC01:27
*** jhershbe has quit IRC01:28
*** yedongcan has joined #openstack-neutron01:28
*** sdake has quit IRC01:28
*** banix has quit IRC01:30
*** zhhuabj_ has quit IRC01:30
*** alex_xu has joined #openstack-neutron01:31
*** thorst has quit IRC01:31
*** markvoelker has joined #openstack-neutron01:31
*** s3wong has quit IRC01:32
*** ivc_ has joined #openstack-neutron01:33
*** ijw has quit IRC01:34
*** baoli has joined #openstack-neutron01:34
*** ijw has joined #openstack-neutron01:34
*** wolverineav has quit IRC01:35
*** harlowja has quit IRC01:35
*** huanxie has joined #openstack-neutron01:35
*** markvoelker has quit IRC01:36
*** thorst has joined #openstack-neutron01:36
*** thorst has quit IRC01:37
*** tristanC has joined #openstack-neutron01:39
*** ijw has quit IRC01:39
openstackgerritKevin Benton proposed openstack/neutron: Skip assigning address assigned as dynamic  https://review.openstack.org/37714201:39
haleyb_kevinbenton: just some nits on the first, what's the other one01:40
kevinbentonhaleyb: just an alternative if the first looks to scary for RC201:40
*** jckasper has quit IRC01:41
*** jckasper has joined #openstack-neutron01:42
*** wu_ng has joined #openstack-neutron01:42
*** zhhuabj_ has joined #openstack-neutron01:42
openstackgerritHong Hui Xiao proposed openstack/neutron: Update metadata proxy when subnet add/delete  https://review.openstack.org/29323701:43
*** ivc_ has quit IRC01:43
haleyb_kevinbenton: i like the first one.  the problem with using dynamic for that port is that if for some reason the RAs ever stop the address will go away in 86400 seconds.  There's probably something else broken then too of course01:45
kevinbentonhaleyb: yeah, that's what i was thinking as well01:46
kevinbentonhaleyb: preference is definitely towards the first one01:46
*** viniciusarcanjo_ has quit IRC01:47
*** wolverineav has joined #openstack-neutron01:48
openstackgerritKevin Benton proposed openstack/neutron: Disable 'accept_ra' in DHCP agent namespace  https://review.openstack.org/37714001:50
kevinbentonhaleyb: new rev with your changes ^^01:50
openstackgerritMohit Malik proposed openstack/neutron: Integration of OVO for Ipam  https://review.openstack.org/36515501:50
*** amotoki has joined #openstack-neutron01:51
*** gvrangan has quit IRC01:51
*** SKipp_ has joined #openstack-neutron01:53
haleyb_kevinbenton: i just figured out you can use -b to not have a newline, which would get rid of the split ?  i somehow can't download the change to try locally01:55
*** bkopilov has quit IRC01:55
*** wolverineav has quit IRC01:56
*** banix has joined #openstack-neutron01:56
*** trisq has joined #openstack-neutron01:59
*** haplo37_ has quit IRC02:00
*** banix has quit IRC02:01
*** gvrangan has joined #openstack-neutron02:02
*** banix has joined #openstack-neutron02:02
*** haplo37_ has joined #openstack-neutron02:02
*** banix has quit IRC02:02
*** salv-orlando has joined #openstack-neutron02:03
*** salv-orlando has quit IRC02:07
*** thorst has joined #openstack-neutron02:07
*** lujinluo has quit IRC02:09
openstackgerritLIU Yulong proposed openstack/neutron-specs: Layer 3 IPs rate limit  https://review.openstack.org/37450602:09
*** wolverineav has joined #openstack-neutron02:09
*** bzhao has joined #openstack-neutron02:13
*** wolverineav has quit IRC02:14
*** gvrangan has quit IRC02:15
*** thorst has quit IRC02:16
*** gvrangan has joined #openstack-neutron02:17
openstackgerritMerged openstack/neutron: Fullstack: Add helper FakeFullstackMachinesList  https://review.openstack.org/27377502:19
openstackgerritKengo Hobo proposed openstack/neutron: Disallow specifying too long name for meter-label  https://review.openstack.org/35148802:21
openstackgerritYi Jing Zhu proposed openstack/neutron-vpnaas: [WIP] new VPNaaS agent for VPNaaS OVN  https://review.openstack.org/35152002:21
openstackgerritMerged openstack/neutron: Reduce log level for extensions not being supported  https://review.openstack.org/37355602:22
openstackgerritMerged openstack/neutron: Check for l3 agents count before router update  https://review.openstack.org/35111402:23
*** yamamot__ has quit IRC02:29
*** jianghuaw has quit IRC02:29
*** nicolasbock has quit IRC02:29
*** wolverineav has joined #openstack-neutron02:29
*** gvrangan has quit IRC02:30
*** banix has joined #openstack-neutron02:32
*** jianghuaw has joined #openstack-neutron02:32
*** trozet has quit IRC02:36
*** SKipp_ has quit IRC02:36
*** SKipp_ has joined #openstack-neutron02:37
*** banix has quit IRC02:39
*** wolverineav has quit IRC02:40
haleyb_kevinbenton: mind if i push an update to that ipv6 issue?02:43
*** yuanying has quit IRC02:47
*** david-lyle_ has quit IRC02:48
*** david-lyle has joined #openstack-neutron02:49
openstackgerritKengo Hobo proposed openstack/neutron: Handle label_id's DBReferenceError when creating label-rule  https://review.openstack.org/35959102:50
*** wu_ng has quit IRC02:50
*** yuanying has joined #openstack-neutron02:50
*** wu_ng has joined #openstack-neutron02:50
*** sgordon` is now known as sgordon02:52
*** baoli has quit IRC02:53
*** sdake has joined #openstack-neutron02:55
*** banix has joined #openstack-neutron02:56
*** mriedem_debate has quit IRC02:59
*** banix has quit IRC03:02
*** sudipto has joined #openstack-neutron03:03
*** sudipto_ has joined #openstack-neutron03:04
sudipto_sorry a bit late03:04
*** david-lyle has quit IRC03:04
*** banix has joined #openstack-neutron03:09
*** bkopilov has joined #openstack-neutron03:09
*** yamamot__ has joined #openstack-neutron03:10
*** banix has quit IRC03:14
*** lnicolas has quit IRC03:14
*** thorst has joined #openstack-neutron03:14
*** sdake has quit IRC03:15
*** banix has joined #openstack-neutron03:15
*** g3ek has quit IRC03:15
*** banix has quit IRC03:17
*** wolverineav has joined #openstack-neutron03:17
*** banix has joined #openstack-neutron03:17
*** armax has quit IRC03:19
*** thorst has quit IRC03:21
*** g3ek has joined #openstack-neutron03:21
*** wolverineav has quit IRC03:21
*** wolverineav has joined #openstack-neutron03:23
kevinbentonhaleyb: still there?03:23
*** sdake has joined #openstack-neutron03:23
haleyb_kevinbenton: yeah, it's failing a unit test but i have a fix i'm testing and will send i tout03:23
kevinbentonhaleyb: ack. Just finished dinner and heading home03:24
haleyb_kevinbenton: ok.  i haven't run the entire suite, will let jenkins do that03:24
*** huanxie has quit IRC03:25
openstackgerritBrian Haley proposed openstack/neutron: Disable 'accept_ra' in DHCP agent namespace  https://review.openstack.org/37714003:26
*** amotoki has quit IRC03:26
*** yushiro has quit IRC03:27
*** wolverineav has quit IRC03:27
*** vishwanathj has quit IRC03:28
*** wolverineav has joined #openstack-neutron03:29
*** markvoelker has joined #openstack-neutron03:32
*** wolverineav has quit IRC03:33
*** yuanying has quit IRC03:37
*** amotoki has joined #openstack-neutron03:37
*** markvoelker has quit IRC03:38
*** sshank has quit IRC03:38
*** yarkot has quit IRC03:39
*** johndperkins has quit IRC03:39
*** sdake has quit IRC03:40
*** sdake has joined #openstack-neutron03:41
*** tflynn has joined #openstack-neutron03:42
*** annp has joined #openstack-neutron03:42
*** tflynn has quit IRC03:42
*** tflynn has joined #openstack-neutron03:43
*** wolverineav has joined #openstack-neutron03:44
*** iyamahat has joined #openstack-neutron03:44
*** zhhuabj_ has quit IRC03:44
*** yarkot has joined #openstack-neutron03:45
*** aswadr_ has joined #openstack-neutron03:45
*** sdake has quit IRC03:47
*** wolverineav has quit IRC03:48
*** SKipp_ has quit IRC03:48
*** amotoki has quit IRC03:49
*** yuanying has joined #openstack-neutron03:50
*** Sukhdev_ has quit IRC03:51
*** rkukura has joined #openstack-neutron03:51
*** johndperkins has joined #openstack-neutron03:51
*** Sukhdev has joined #openstack-neutron03:51
*** banix has quit IRC03:52
*** hynekm has joined #openstack-neutron03:53
*** ganeshnalawade has joined #openstack-neutron03:54
*** gongysh has quit IRC03:54
openstackgerritNam Nguyen Hoai proposed openstack/neutron: Disallow specifying too long name and description for qos  https://review.openstack.org/35220003:55
*** amotoki has joined #openstack-neutron03:55
*** jckasper has quit IRC03:55
*** jckasper has joined #openstack-neutron03:56
*** yushiro has joined #openstack-neutron03:57
*** wolverineav has joined #openstack-neutron03:58
*** tlian has quit IRC04:01
*** zhhuabj_ has joined #openstack-neutron04:03
*** jckasper has quit IRC04:04
openstackgerritShashank Kumar Shankar proposed openstack/neutron: [WIP] Integration of Port Binding Level OVO.  https://review.openstack.org/37441804:10
*** rmcall_ has joined #openstack-neutron04:13
*** rmcall has quit IRC04:14
*** rmcall_ is now known as rmcall04:14
*** sdake has joined #openstack-neutron04:15
openstackgerritMerged openstack/neutron: trunk: Log RPC communication  https://review.openstack.org/37548404:17
*** bzhao has quit IRC04:18
*** amotoki has quit IRC04:18
*** bzhao has joined #openstack-neutron04:18
*** links has joined #openstack-neutron04:19
*** lujinluo has joined #openstack-neutron04:21
*** ivar-lazzaro has joined #openstack-neutron04:21
*** thorst has joined #openstack-neutron04:21
*** lujinluo has quit IRC04:22
*** sdake_ has joined #openstack-neutron04:22
*** lujinluo has joined #openstack-neutron04:23
*** ganeshnalawade has quit IRC04:23
*** sdake has quit IRC04:24
*** vishwanathj has joined #openstack-neutron04:24
*** ganeshnalawade has joined #openstack-neutron04:25
*** thorst has quit IRC04:26
*** shausy has joined #openstack-neutron04:27
*** amotoki has joined #openstack-neutron04:28
openstackgerritShashank Kumar Shankar proposed openstack/neutron: Relocate Provisioning Block DB Model  https://review.openstack.org/35561104:30
*** ivar-lazzaro has quit IRC04:31
kevinbentonhaleyb_: still there?04:34
kevinbentonhaleyb_: it looks like you changed the patch to revert a fix by skipping auto address subnets04:34
openstackgerritKevin Benton proposed openstack/neutron: Disable 'accept_ra' in DHCP agent namespace  https://review.openstack.org/37714004:36
*** sudipto_ has quit IRC04:39
*** sudipto has quit IRC04:39
*** amotoki_ has joined #openstack-neutron04:39
*** jprovazn has joined #openstack-neutron04:40
*** sdake_ has quit IRC04:40
*** ratailor has joined #openstack-neutron04:40
*** haleyb_ has quit IRC04:41
*** amotoki has quit IRC04:42
*** ivar-lazzaro has joined #openstack-neutron04:43
*** sdake has joined #openstack-neutron04:43
*** ivar-lazzaro has quit IRC04:44
*** gouthamr has quit IRC04:44
*** sdake_ has joined #openstack-neutron04:46
*** sdake has quit IRC04:48
*** claudiub has joined #openstack-neutron04:48
*** g3ek has quit IRC04:50
openstackgerritArmando Migliaccio proposed openstack/neutron: Revert "Fixes for missing IPs on subnets in DHCP agent"  https://review.openstack.org/37723304:50
*** hynekm has quit IRC04:50
*** ivar-lazzaro has joined #openstack-neutron04:52
*** bks has joined #openstack-neutron04:52
*** salv-orlando has joined #openstack-neutron04:54
*** g3ek has joined #openstack-neutron04:56
*** absubram has joined #openstack-neutron04:56
openstackgerritIWAMOTO Toshihiro proposed openstack/neutron: Use conjunction for security group rules with remote_group_id  https://review.openstack.org/33380404:57
*** sdake_ has quit IRC04:58
*** haleyb_ has joined #openstack-neutron05:01
*** prateek_ has joined #openstack-neutron05:02
liuyulongarmix05:02
liuyulongarmax05:03
*** ganeshnalawade has quit IRC05:04
openstackgerritKevin Benton proposed openstack/neutron: Disable 'accept_ra' in DHCP agent namespace  https://review.openstack.org/37714005:05
openstackgerritKevin Benton proposed openstack/neutron: Skip assigning address assigned as dynamic  https://review.openstack.org/37714205:05
*** gvrangan has joined #openstack-neutron05:05
*** pgadiya has joined #openstack-neutron05:05
*** baoli has joined #openstack-neutron05:06
*** ganeshnalawade has joined #openstack-neutron05:06
*** diga has joined #openstack-neutron05:08
*** gongysh has joined #openstack-neutron05:08
*** korzen has joined #openstack-neutron05:09
*** ganeshnalawade has quit IRC05:10
*** baoli has quit IRC05:10
*** Alex_Stef has joined #openstack-neutron05:11
*** Sukhdev has quit IRC05:12
*** pbandark has joined #openstack-neutron05:16
*** rossella_s has quit IRC05:19
*** rossella_s has joined #openstack-neutron05:19
*** tonytan4ever has quit IRC05:20
*** sudipto has joined #openstack-neutron05:20
*** sudipto_ has joined #openstack-neutron05:20
*** ganeshnalawade has joined #openstack-neutron05:21
*** thorst has joined #openstack-neutron05:23
*** ihrachys has joined #openstack-neutron05:25
*** nmagnezi has joined #openstack-neutron05:27
*** thorst has quit IRC05:32
*** absubram has quit IRC05:33
*** ekuris has joined #openstack-neutron05:34
*** iwamoto has joined #openstack-neutron05:37
*** claudiub has quit IRC05:49
*** haleyb_ has quit IRC05:49
*** rajinir has quit IRC05:55
*** Worry has joined #openstack-neutron05:57
*** moshele has joined #openstack-neutron05:58
*** otherwiseguy has quit IRC06:00
*** otherwiseguy has joined #openstack-neutron06:01
*** ganesh has joined #openstack-neutron06:02
*** ganesh is now known as gkadam06:02
*** numans has joined #openstack-neutron06:03
*** nherciu has joined #openstack-neutron06:05
*** irenab has quit IRC06:07
openstackgerritgengchc2 proposed openstack/neutron: Replace assertEqual(None, *) with assertIsNone in tests  https://review.openstack.org/37459406:08
*** kobis has joined #openstack-neutron06:10
*** Worry has quit IRC06:16
*** nmagnezi has quit IRC06:21
openstackgerritchandanc proposed openstack/neutron: [WIP] IP Conntrack Manager changes for FWaaS v2  https://review.openstack.org/33333806:23
*** tflynn has quit IRC06:27
*** ganeshnalawade has quit IRC06:28
*** ganeshnalawade has joined #openstack-neutron06:28
*** nyechiel has joined #openstack-neutron06:29
*** thorst has joined #openstack-neutron06:30
openstackgerritNam Nguyen Hoai proposed openstack/neutron: Disallow specifying too long name and description for qos  https://review.openstack.org/35220006:30
*** Alex_Stef has quit IRC06:30
*** Worry has joined #openstack-neutron06:31
*** iranzo has joined #openstack-neutron06:33
*** tflynn has joined #openstack-neutron06:35
*** thorst has quit IRC06:37
*** obondarev has joined #openstack-neutron06:39
*** hynekm has joined #openstack-neutron06:40
*** gvrangan has quit IRC06:41
*** pcaruana has joined #openstack-neutron06:45
*** andreas_s has joined #openstack-neutron06:50
*** wolverin_ has joined #openstack-neutron06:52
*** Worry has quit IRC06:54
*** obondarev has quit IRC06:55
*** wolverineav has quit IRC06:56
*** rcernin has joined #openstack-neutron06:59
*** marst has quit IRC07:00
*** salv-orl_ has joined #openstack-neutron07:01
*** nyechiel has quit IRC07:02
*** ihrachys has quit IRC07:02
*** ihrachys has joined #openstack-neutron07:03
*** salv-orlando has quit IRC07:04
*** salv-orl_ has quit IRC07:05
*** Worry has joined #openstack-neutron07:06
*** tmorin has joined #openstack-neutron07:06
openstackgerritEvgeny Fedoruk proposed openstack/neutron: Flavors meta templating implementation  https://review.openstack.org/36301607:09
*** anilvenkata has joined #openstack-neutron07:11
*** ganeshnalawade has quit IRC07:12
*** tonytan4ever has joined #openstack-neutron07:21
*** Worry has quit IRC07:21
*** ganeshnalawade has joined #openstack-neutron07:24
*** ivar-lazzaro has quit IRC07:25
*** xek has joined #openstack-neutron07:25
*** yamahata has joined #openstack-neutron07:25
*** tonytan4ever has quit IRC07:26
*** claudiub has joined #openstack-neutron07:28
*** iyamahat has quit IRC07:28
*** marst has joined #openstack-neutron07:28
*** yamahata has quit IRC07:32
*** rmart04 has joined #openstack-neutron07:34
*** thorst has joined #openstack-neutron07:35
*** ganeshnalawade has quit IRC07:37
*** ivar-lazzaro has joined #openstack-neutron07:37
*** jlanoux has joined #openstack-neutron07:38
*** nmagnezi has joined #openstack-neutron07:38
*** nmagnezi_ has joined #openstack-neutron07:40
*** thorst has quit IRC07:41
*** irenab has joined #openstack-neutron07:42
*** hoonetorg has quit IRC07:42
*** miyagishi_t has joined #openstack-neutron07:43
*** karthiks has quit IRC07:45
*** anteaya has quit IRC07:48
*** anteaya has joined #openstack-neutron07:49
*** jpena|off is now known as jpena07:49
*** bfernando has joined #openstack-neutron07:52
jschwarzakamyshnikova_, ping?07:58
*** ganeshnalawade has joined #openstack-neutron07:58
*** hoonetorg has joined #openstack-neutron07:59
*** eezhova has joined #openstack-neutron07:59
*** zzzeek has quit IRC08:00
*** zzzeek has joined #openstack-neutron08:00
*** ihrachys has quit IRC08:00
*** jckasper has joined #openstack-neutron08:01
*** claudiub has quit IRC08:01
*** ivar-lazzaro has quit IRC08:02
anilvenkataHenryG, ping08:03
*** jckasper has quit IRC08:06
*** wolverineav has joined #openstack-neutron08:08
*** ganeshnalawade has quit IRC08:09
*** wolverin_ has quit IRC08:09
*** jlibosva has joined #openstack-neutron08:11
*** Esha has joined #openstack-neutron08:12
EshaI wanted to check about 162530508:13
Eshahttps://bugs.launchpad.net/neutron/+bug/162530508:13
openstackLaunchpad bug 1625305 in neutron "neutron-openvswitch-agent is crashing due to KeyError in _restore_local_vlan_map()" [High,New]08:13
EshaKevin Benton , I agree we are hitting the same bug you mentioned in comment 10. My comment 11 incorrectly mentioned that the ports were on same network. Comment 13 and 15 corroborate that the ports on the 2 vms were from 2 different flat networks but they had the same vlan tag (3999). That is why we could be hitting the keyerror during agent startup.08:14
EshaThis needs to be fixed08:15
*** s1061123_ has quit IRC08:16
*** irenab has quit IRC08:18
*** irenab has joined #openstack-neutron08:19
*** s1061123 has joined #openstack-neutron08:19
*** Alex_Stef has joined #openstack-neutron08:21
*** tonytan4ever has joined #openstack-neutron08:22
*** trisq has quit IRC08:23
*** trisq has joined #openstack-neutron08:23
*** obondarev has joined #openstack-neutron08:24
*** Esha has quit IRC08:26
*** tonytan4ever has quit IRC08:27
*** roeyc has joined #openstack-neutron08:27
*** nmagnezi_ has quit IRC08:32
*** ihrachys has joined #openstack-neutron08:32
kevinbentonihrachys: ping08:33
*** fnaval_ has joined #openstack-neutron08:35
*** john-davidge has joined #openstack-neutron08:36
*** davidsha has joined #openstack-neutron08:37
openstackgerritchandanc proposed openstack/neutron: [WIP] IP Conntrack Manager changes for FWaaS v2  https://review.openstack.org/33333808:38
*** fnaval has quit IRC08:38
ihrachyskevinbenton: howdy08:38
*** irenab has quit IRC08:39
kevinbentonihrachys: ran into an issue with the DHCP fixes patch08:39
*** zhhuabj_ has quit IRC08:39
*** mhickey has joined #openstack-neutron08:39
ihrachysneverending story. tell me. :)08:39
kevinbentonihrachys: now that we intentionally setup v6 interfaces, we can race with a v6 address assigned by RA08:40
kevinbentonihrachys: https://bugs.launchpad.net/neutron/+bug/162790208:40
openstackLaunchpad bug 1627902 in neutron "DHCP agent conflicting with dynamic IPv6 addresses" [High,Invalid]08:40
liuyulongajo, ping08:41
kevinbentonihrachys: i proposed two possible fixes (one more correct, one less invasive) https://review.openstack.org/#/c/377140/  https://review.openstack.org/#/c/377142/08:41
kevinbentonihrachys: armando doesn't care for them i guess08:41
kevinbentonihrachys: so he just wants to revert and leave the KeyError08:41
kevinbentonihrachys: https://review.openstack.org/#/c/377233/08:41
ihrachyskevinbenton: well I guess he is just tired of landing things that break other things. :)))08:42
ihrachyslet me look08:42
openstackgerritJohn Schwarz proposed openstack/neutron: scheduler: add retry indicators for bind_router()  https://review.openstack.org/36532608:44
ihrachyskevinbenton: one thing - let's say we revert. would the revert of just the piece that 'fixes' the ipv6 addressing for dhcpv6-stateless do the job?08:44
kevinbentonihrachys: yeah, that would limit the keyerror issue to v6 networks08:45
ihrachyskevinbenton: we should have split those two. now armax will push to revert both pieces that are largely independent08:46
*** yushiro has quit IRC08:46
kevinbentonihrachys: yep08:47
*** hoonetorg has quit IRC08:51
*** zhhuabj_ has joined #openstack-neutron08:52
*** lujinluo has quit IRC08:54
*** mfuruta has quit IRC08:59
*** john51 has quit IRC09:00
*** hoonetorg has joined #openstack-neutron09:02
*** mickeys has quit IRC09:03
*** fzdarsky|afk has joined #openstack-neutron09:04
ajoihrachys, do you have a minute to have an eye https://review.openstack.org/#/c/374506/  for conversation around liuyulong rfe ?09:08
ihrachysajo: I will get there, but not today09:09
ajoihrachys, ack thanks09:09
ihrachysajo: there is release stuff on the plate that takes my attention09:09
ajoihrachys, of course, priorities are important09:09
*** viniciusarcanjo_ has joined #openstack-neutron09:09
ihrachysI also think that qos team has some work to do before considering more stuff09:10
ajoihrachys, feel free to direct me to any specific review which may need attention09:10
ajoihrachys, of course,09:10
ajoihrachys, but I think the RFE needs discussion, and it's current form will never fly09:10
ajoso it's better that they shape things into something that fits the model,09:10
ajonot that we intend to do it now09:10
*** fzdarsky|afk has quit IRC09:10
ihrachysajo: right. but what's the benefit of discussing a thing now that won't get priority for the next cycle+?09:11
ajoihrachys, procrastinating with precrastination you know09:11
*** namnh has joined #openstack-neutron09:11
ihrachysok, then enjoy :)09:11
*** sambetts|afk is now known as sambetts09:12
liuyulongajo, ihrachys, thank you guys. : )09:12
ajoihrachys, and I believe that we should not stop hearing people wishes, even if they are not realizable at this exact moment09:12
ihrachysajo: people should bring their troops with them09:12
ajoihrachys, and they will, they already have implementation, but IMO doesn't match the current models (that's my opinion), I'm giving them homework09:13
jschwarzakamyshnikova_, this is a slippery bug :<09:13
ihrachysajo: well, not just for things they want, but also for things that are in the pipeline of the project.09:13
ajoihrachys, and, btw, you're totally right, that I should re-focus on the things I've on WIP and which are important09:14
ihrachysanyhoo, I guess I better do some reviews instead of ranting09:14
ajoihrachys, :)09:14
*** iwamoto has quit IRC09:16
ihrachyskevinbenton: one thing I am wondering, why does the second attempt to set the same address for an interface even fails?09:18
ihrachysI would expect the operation to be safely repeatable09:19
kevinbentonihrachys: the issue is that the RA has set the address09:19
*** matrohon has joined #openstack-neutron09:19
kevinbentonihrachys: so it is of type 'dynamic'09:19
ihrachysoh09:19
kevinbentonihrachys: so we list existing 'permanent' addresses and add what's missing09:19
kevinbentonihrachys: so every iteration will not see the dynamic one and fail09:19
kevinbentonihrachys: that's why the easy hacky fix was also to look for dynamic addresses and see if it existed in that list09:20
kevinbentonbefore trying to add09:20
ihrachyskevinbenton: so you say that 2nd attempt fails because of type difference? I can't reset an address if it's dynamic?09:21
kevinbentonihrachys: you can't try to add a static address to an interface if it has the same one as a dynamic address09:22
kevinbentonihrachys: you would have to remove the dynamic address first09:22
ihrachysI see. now it's clear to me09:22
kevinbentonihrachys: the first attempt also fails because of the type difference09:22
kevinbentonihrachys: it's the same on each try09:22
kevinbentonihrachys: an invisible dynamic address that got added by a fast RA before we assigned the address manually09:22
kevinbentonihrachys: once it's assigned manually we are safe09:23
openstackgerritzhangyanxian proposed openstack/neutron: Update the guide info in add-availability-zone-4440cf00be7c54ba.yaml  https://review.openstack.org/37740009:23
kevinbentonihrachys: that's why it only fails sometimes (when the RA is very fast)09:23
openstackgerritzhangyanxian proposed openstack/neutron: Update the guide info in add-availability-zone-4440cf00be7c54ba.yaml  https://review.openstack.org/37740009:23
ihrachyskevinbenton: it makes sense that service ports are not using RA. we don't use it for router ports, dhcp should be in the same boat.09:24
ihrachysit's also making dhcp component depend on l3 component working09:25
kevinbentonihrachys: yeah, the fix that went in a long time ago that caused our issue in the first place shouldn't have gone in09:25
*** fzdarsky has joined #openstack-neutron09:25
kevinbentonihrachys: https://review.openstack.org/#/c/149503/09:25
ihrachysbasically, if a network is dhcpv6-stateless, and it's not connected to a router, you can't even ping the DHCP server using the address.09:25
kevinbentonihrachys: yep09:25
kevinbentonihrachys: that fix should have done what we are trying to do now rather than allow the DHCP to acquire its own address09:26
kevinbentonihrachys: as far as i can tell the DHCP agent has been broken on v6 for metadata since thing09:26
kevinbentonihrachys: since then*09:26
* ihrachys continues collecting uncovered test cases lately09:27
*** jlanoux_ has joined #openstack-neutron09:27
kevinbentonihrachys: yeah, the metadata one is tricky since we don't force metadata on the DHCP agent in the gate09:27
kevinbentonihrachys: and all of the tests where we reach a VM involve a router so metadata is hosted by it09:27
ihrachyswe have fullstack to model different setups09:27
*** mvk has quit IRC09:27
*** reedip has quit IRC09:28
kevinbentonright09:28
*** namnh has quit IRC09:28
ihrachyskevinbenton: I think functionally you can't have dhcpv6-stateless server without an RA trigger09:28
*** namnh has joined #openstack-neutron09:29
ihrachysso it's not a real usability issue; ping should have worked nevertheless09:29
kevinbentonihrachys: well if they were using an L3 backend that didn't have metadata so they were using force_metadata09:29
kevinbentonihrachys: it wouldn't have worked from what i can tell09:30
*** jlanoux has quit IRC09:30
ihrachysyeah. it's just a very special case. :)09:30
kevinbentonihrachys: which i think is the case for OVN09:30
kevinbentonihrachys: once they do native L309:30
kevinbentonihrachys: https://review.openstack.org/#/c/375729/2/devstack/lib/networking-ovn09:31
*** miyagishi_t has quit IRC09:32
openstackgerritgengchc2 proposed openstack/neutron: Replace assertEqual(None, *) with assertIsNone in tests  https://review.openstack.org/37459409:32
openstackgerritMoshe Levi proposed openstack/neutron: [WIP] OVS offload POC  https://review.openstack.org/27561609:35
*** gongysh has quit IRC09:35
*** Worry has joined #openstack-neutron09:37
*** roeyc has quit IRC09:39
*** reedip has joined #openstack-neutron09:39
*** namnh has quit IRC09:42
*** thorst has joined #openstack-neutron09:44
openstackgerritHynek Mlnarik proposed openstack/neutron: Connectivity tests for OVS agent failures/restarts  https://review.openstack.org/35337309:44
openstackgerritzhangyanxian proposed openstack/neutron: Update the guide info in add-availability-zone-4440cf00be7c54ba.yaml  https://review.openstack.org/37740009:46
*** Worry has quit IRC09:47
*** thorst has quit IRC09:51
*** irenab has joined #openstack-neutron09:53
*** annp has quit IRC09:54
*** jlvillal has quit IRC09:56
*** haplo37_ has quit IRC09:56
*** diga has quit IRC09:57
*** avico- has quit IRC09:57
openstackgerritJakub Libosvar proposed openstack/neutron: fullstack: VLAN aware VMs test  https://review.openstack.org/36900109:57
*** mvk has joined #openstack-neutron09:58
*** avico has joined #openstack-neutron09:58
*** haplo37_ has joined #openstack-neutron09:59
*** jlvillal has joined #openstack-neutron09:59
*** jlibosva has quit IRC10:00
*** zeus has quit IRC10:01
*** zeus has joined #openstack-neutron10:02
openstackgerritOpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements  https://review.openstack.org/37746910:02
openstackgerritOpenStack Proposal Bot proposed openstack/neutron-dynamic-routing: Updated from global requirements  https://review.openstack.org/37376510:02
openstackgerritOpenStack Proposal Bot proposed openstack/neutron-fwaas: Updated from global requirements  https://review.openstack.org/37747110:02
*** zeus is now known as Guest7154610:02
*** donghao has joined #openstack-neutron10:02
openstackgerritOpenStack Proposal Bot proposed openstack/neutron-lib: Updated from global requirements  https://review.openstack.org/37747410:02
openstackgerritOpenStack Proposal Bot proposed openstack/neutron-vpnaas: Updated from global requirements  https://review.openstack.org/37747510:03
*** EinstCrazy has quit IRC10:03
*** EinstCrazy has joined #openstack-neutron10:04
*** zhhuabj_ has quit IRC10:05
openstackgerritOpenStack Proposal Bot proposed openstack/os-vif: Updated from global requirements  https://review.openstack.org/37752710:06
*** irenab has quit IRC10:07
openstackgerritOpenStack Proposal Bot proposed openstack/python-neutronclient: Updated from global requirements  https://review.openstack.org/37112410:07
*** irenab has joined #openstack-neutron10:07
*** sdague has joined #openstack-neutron10:08
*** EinstCrazy has quit IRC10:08
*** obondarev has quit IRC10:09
*** gongysh has joined #openstack-neutron10:10
*** yedongcan has quit IRC10:10
*** yedongcan has joined #openstack-neutron10:11
*** wu_ng has quit IRC10:11
*** obondarev has joined #openstack-neutron10:13
openstackgerritchandanc proposed openstack/neutron: [WIP] IP Conntrack Manager changes for FWaaS v2  https://review.openstack.org/33333810:16
*** yedongcan has left #openstack-neutron10:16
*** liuyulong is now known as yulong|away10:17
*** irenab has quit IRC10:17
*** yamamot__ has quit IRC10:20
*** zhhuabj_ has joined #openstack-neutron10:22
*** tonytan4ever has joined #openstack-neutron10:23
*** diga has joined #openstack-neutron10:24
*** ralonsoh has joined #openstack-neutron10:25
*** sdake has joined #openstack-neutron10:27
*** tonytan4ever has quit IRC10:28
*** roeyc has joined #openstack-neutron10:28
*** obondarev has quit IRC10:31
*** gongysh has quit IRC10:34
*** hoangcx has quit IRC10:36
*** boden has joined #openstack-neutron10:36
*** obondarev has joined #openstack-neutron10:37
*** portdirect has quit IRC10:39
*** salv-orlando has joined #openstack-neutron10:39
*** scottda has quit IRC10:40
*** jlanoux has joined #openstack-neutron10:46
*** tbachman has quit IRC10:48
openstackgerritJohn Schwarz proposed openstack/neutron: scheduler: add retry indicators for bind_router()  https://review.openstack.org/36532610:49
*** jlanoux_ has quit IRC10:49
*** thorst has joined #openstack-neutron10:49
*** nicolasbock has joined #openstack-neutron10:50
*** nmagnezi_ has joined #openstack-neutron10:55
*** nmagnezi has quit IRC10:55
*** thorst has quit IRC10:56
*** mhickey has quit IRC10:57
*** rtheis has joined #openstack-neutron10:57
*** garyk has joined #openstack-neutron11:00
*** obondarev has quit IRC11:01
sbelousmanjeets, ping11:01
*** nmagnezi_ has quit IRC11:02
*** nmagnezi has joined #openstack-neutron11:02
*** yamamoto has joined #openstack-neutron11:02
rtheisihrachys: could you take a look at https://review.openstack.org/#/c/375529/ for networking-ovn rc2?11:03
*** sudipto has quit IRC11:06
*** sudipto_ has quit IRC11:06
*** ekuris has quit IRC11:06
rtheiskevinbenton: dhcp issues seem to have improved, but armax moved 1624079 to ocata.  Should networking-ovn continue with its workaround https://review.openstack.org/#/c/374852/ for rc2?11:06
*** hoangcx has joined #openstack-neutron11:07
*** sdake has quit IRC11:12
*** mhickey has joined #openstack-neutron11:12
*** haleyb_ has joined #openstack-neutron11:12
*** devvesa has joined #openstack-neutron11:12
*** yamamoto has quit IRC11:13
haleyb_kevinbenton: i changed it to pass the unit tests11:13
*** devvesa has quit IRC11:13
*** devvesa has joined #openstack-neutron11:14
*** liuyulong has joined #openstack-neutron11:14
*** devvesa has quit IRC11:15
openstackgerritKevin Benton proposed openstack/neutron: Disable 'accept_ra' in DHCP agent namespace  https://review.openstack.org/37714011:15
*** devvesa has joined #openstack-neutron11:15
kevinbentonhaleyb_: https://review.openstack.org/#/c/377140/2..3/neutron/agent/linux/dhcp.py11:16
kevinbentonhaleyb_: you added that conditional back on L138011:16
kevinbentonhaleyb_: was that intentional?11:16
*** ivc_ has joined #openstack-neutron11:16
*** devvesa has quit IRC11:16
kevinbentonrtheis: yeah, stick with the workaround until we get this figured out11:16
*** nherciu_ has joined #openstack-neutron11:17
kevinbentonrtheis: armando wants to revert11:17
rtheiskevinbenton: ack11:17
haleyb_kevinbenton: yes, it seemed necessary to pass the tests, did it break something else?11:17
rtheiskevinbenton: could you review https://review.openstack.org/#/c/374852/ for networking-ovn rc2 when you have time today11:18
rtheisthanks11:18
kevinbentonhaleyb_: yeah, that undoes the fix that made the change in the first place11:18
kevinbentonhaleyb_: if we skip ipv6 addresses, the agent doesn't know about them and metadata breaks11:18
*** anilvenkata is now known as anilvenkata_afk11:18
kevinbentonhaleyb_: i had reduced it down to is_slaac here: https://review.openstack.org/#/c/375791/10/neutron/agent/linux/dhcp.py11:19
haleyb_i didn't see the original bug, but why does metadata care about ipv6?11:19
kevinbentonhaleyb_: just subnet map iteration stuff11:19
*** nherciu has quit IRC11:19
kevinbentonhaleyb_: it expects there to be an IP for each subnet a port has11:19
*** hoangcx has quit IRC11:20
haleyb_oh, couldn't just 'if ip_versionn ==6 continue' ?11:20
kevinbentonhaleyb_: although if we assume there will never be ipv6 support for metadata, it might be just as easy to skip11:20
kevinbentonyeah11:20
*** hoangcx has joined #openstack-neutron11:21
haleyb_well, there is a bug filed, and a review, but there was no consensus since we couldn't exactly agree on what address should be used, the 169 one was just an amazon hack11:21
kevinbentonhaleyb_: oh, the fix would be trivial i think11:22
kevinbentonhaleyb_: the issue is a stupid branch statement11:22
kevinbentonhaleyb_: that is wrong11:22
kevinbentonhaleyb_: there already is subnet.ip_version == 411:23
kevinbentonhaleyb_: but self.conf.force_metadata shortcuts it11:23
*** yamamoto has joined #openstack-neutron11:24
haleyb_minefield :(11:24
kevinbentonhaleyb_: http://paste.openstack.org/show/583041/11:25
* haleyb_ has to get kid #2 out the door, will be back in 45 minutes to review whatever you've cooked-up11:25
*** jpena is now known as jpena|lunch11:25
haleyb_kevinbenton: i did not expect that answer11:27
*** mhickey has quit IRC11:27
kevinbentonhaleyb_: yep, apparently neither did the reviewers or implementer :)11:27
*** salv-orlando has quit IRC11:27
haleyb_gotta run and infuse myself with coffee11:29
*** moshele has quit IRC11:30
*** moshele has joined #openstack-neutron11:31
*** moshele has quit IRC11:32
openstackgerritLu lei proposed openstack/neutron: Remove --omit agrument in run_test.sh  https://review.openstack.org/37762111:33
kevinbentonihrachys: i'm confused by your comment here https://review.openstack.org/#/c/377233/111:33
kevinbentonihrachys: both changes were part of eliminating the keyerrors in that map11:34
*** sudipto has joined #openstack-neutron11:38
*** sudipto_ has joined #openstack-neutron11:39
*** salv-orlando has joined #openstack-neutron11:40
*** shz has quit IRC11:41
*** shihanzhang has joined #openstack-neutron11:43
*** pgadiya has quit IRC11:43
ihrachyskevinbenton: but not in the same scenario?11:45
ihrachyskevinbenton: those are two separate ones, right?11:45
kevinbentonihrachys: right, but they both led to the same KeyError in the bug report11:45
*** obondarev has joined #openstack-neutron11:45
ihrachyskevinbenton: for that latter piece, I guess I was thinking more about the actual functional regression that caused the particular address to not be set, not about KeyError. I guess you are right it would result into the same KeyError down the line in addition to that regression.11:47
openstackgerritKevin Benton proposed openstack/neutron: Correct fix for IPv6 auto address interfaces  https://review.openstack.org/37762611:49
kevinbentonihrachys: ^^11:49
*** haleyb_ has quit IRC11:49
*** bkopilov has quit IRC11:50
ihrachyskevinbenton: oh well. I think I saw that in https://review.openstack.org/#/c/372259/11:50
*** jlibosva has joined #openstack-neutron11:50
kevinbentonihrachys: yeah, the only reason we would want the other approaches is if we think metadata will ever get v6 support11:51
kevinbentonihrachys: but if that happens we would need different routes, etc anyway11:51
kevinbentonihrachys: yeah, that patch would also fix it11:51
kevinbentonihrachys: up to you how you think we should proceed11:52
*** thorst has joined #openstack-neutron11:53
ihrachyskevinbenton: honestly, it seems like stylistically the other patch is better. it simplifies the conditional that apparently grew out of proportion11:53
ihrachyswe could land Armando's revert and that patch, that would give us the fix11:54
kevinbentonand then we are left with keyerrors11:55
*** garyk has quit IRC11:55
ihrachysah right, server still misbehaving11:55
kevinbentonbut at least they wouldn't be fatal, they would just be the ones from the ipam races11:55
*** pgadiya has joined #openstack-neutron11:56
*** amuller has joined #openstack-neutron12:00
*** jamesdenton has quit IRC12:01
kevinbentonihrachys: do we not allow host-routes on v6 subnets?12:01
kevinbentonihrachys: because this skips it https://review.openstack.org/#/c/372259/1/neutron/agent/linux/dhcp.py12:02
*** ratailor has quit IRC12:02
*** jckasper has joined #openstack-neutron12:02
*** bzhao has quit IRC12:03
*** bzhao has joined #openstack-neutron12:03
ihrachyskevinbenton: neither before the patch. the option is written under is_4 conditional12:04
kevinbentonihrachys: no12:04
*** sandanar_ has joined #openstack-neutron12:04
*** rmart04_ has joined #openstack-neutron12:04
ihrachyskevinbenton: sorry, distracted by a meeting, I will check later.12:04
kevinbentonihrachys: https://review.openstack.org/#/c/372259/1/neutron/agent/linux/dhcp.py@89012:04
kevinbentonihrachys: but it does seem like we don't do anything with them12:05
kevinbentonihrachys: no worries12:05
*** narayrak has joined #openstack-neutron12:05
kevinbentonihrachys: just noticing more weird differences between the versions :)12:05
*** moshele has joined #openstack-neutron12:05
*** ekuris has joined #openstack-neutron12:06
*** kumarb has joined #openstack-neutron12:06
*** davidsha has quit IRC12:06
*** rcarrillocruz has quit IRC12:06
*** bks has quit IRC12:06
*** liusheng has quit IRC12:06
*** liusheng has joined #openstack-neutron12:07
*** rcarrillocruz has joined #openstack-neutron12:07
*** rmart04 has quit IRC12:07
*** rmart04_ is now known as rmart0412:07
*** jckasper has quit IRC12:07
ihrachyskevinbenton: yes, I was referring to that - we collect them but then don't write it out for ipv4 subnets12:08
*** rodrigods has quit IRC12:12
*** rodrigods has joined #openstack-neutron12:12
openstackgerritPaul Michali proposed openstack/neutron-vpnaas: Fix import breakage in functional test  https://review.openstack.org/37765412:14
*** davidsha has joined #openstack-neutron12:15
*** gouthamr has joined #openstack-neutron12:16
*** sudipto_ has quit IRC12:16
*** sudipto has quit IRC12:16
*** sudipto has joined #openstack-neutron12:17
*** tpsilva has joined #openstack-neutron12:18
*** hynekm has quit IRC12:20
*** obondarev has quit IRC12:24
*** jpena|lunch is now known as jpena12:24
*** hynekm has joined #openstack-neutron12:26
*** obondarev has joined #openstack-neutron12:27
*** sdake has joined #openstack-neutron12:28
*** liuyulong has quit IRC12:29
*** markvoelker has joined #openstack-neutron12:29
*** matrohon has quit IRC12:30
*** edmondsw has joined #openstack-neutron12:30
*** portdirect has joined #openstack-neutron12:33
*** yamamoto has quit IRC12:33
openstackgerritUkesh Kumar proposed openstack/neutron: metering-label-rule doesn't need 'tenant_id'  https://review.openstack.org/37766412:34
*** baoli has joined #openstack-neutron12:36
*** haleyb_ has joined #openstack-neutron12:40
*** yamamoto has joined #openstack-neutron12:40
*** SKipp_ has joined #openstack-neutron12:41
*** anilvenkata_afk is now known as anilvenkata12:42
*** salv-orlando has quit IRC12:45
*** brad_behle has joined #openstack-neutron12:46
*** fnaval_ has quit IRC12:49
*** matrohon has joined #openstack-neutron12:49
*** fnaval has joined #openstack-neutron12:50
*** ganeshnalawade has joined #openstack-neutron12:50
*** kumarb has quit IRC12:50
openstackgerritYushiro FURUKAWA proposed openstack/neutron-fwaas: Fix import path for l3_config  https://review.openstack.org/37767412:51
*** ganeshnalawade has quit IRC12:52
*** ganeshnalawade has joined #openstack-neutron12:52
*** roeyc has quit IRC12:53
*** obondarev has quit IRC12:53
*** claudiub has joined #openstack-neutron12:53
*** fnaval has quit IRC12:54
*** ganeshnalawade has quit IRC12:54
*** tonytan4ever has joined #openstack-neutron12:54
*** jckasper has joined #openstack-neutron12:55
*** david-lyle has joined #openstack-neutron12:56
*** moshele has quit IRC12:56
*** tlian has joined #openstack-neutron12:56
*** tonytan4ever has quit IRC12:57
*** baoli_ has joined #openstack-neutron12:58
*** zkassab has joined #openstack-neutron12:58
*** cbits has joined #openstack-neutron13:00
*** tonytan4ever has joined #openstack-neutron13:00
*** baoli has quit IRC13:01
*** janzian has joined #openstack-neutron13:02
*** jckasper has quit IRC13:03
*** tbachman has joined #openstack-neutron13:04
*** roeyc has joined #openstack-neutron13:06
*** roeyc has quit IRC13:07
*** absubram has joined #openstack-neutron13:07
*** diga has quit IRC13:08
*** obondarev has joined #openstack-neutron13:09
*** jckasper has joined #openstack-neutron13:10
*** rmcall has quit IRC13:10
*** pgadiya has quit IRC13:11
*** yamamoto has quit IRC13:12
*** fnaval has joined #openstack-neutron13:12
*** salv-orlando has joined #openstack-neutron13:12
*** roeyc has joined #openstack-neutron13:12
*** SKipp_ has quit IRC13:14
haleyb_kevinbenton: so with that new change does the dhcp namespace still auto-configure an IPv6 address?13:15
kevinbentonhaleyb_: yes, goes back to previous behavior13:15
kevinbentonhaleyb_: we don't try to set the v6 address13:15
*** trisq has quit IRC13:16
haleyb_kevinbenton: is that something we should fix in ocata?  putting the accept_ra code in place?13:17
kevinbentonhaleyb_: i would like to in the future. the idea that the dhcp instance has to depend on something else configuring its address when we have it right in the data model is weird13:17
kevinbentonhaleyb_: make it more consistent between the two13:18
haleyb_right, even though it works because we set the MAC it seems wrong to rely on the RA13:19
*** rossella_s has quit IRC13:19
*** hynekm has quit IRC13:19
*** mriedem has joined #openstack-neutron13:19
*** rossella_s has joined #openstack-neutron13:20
*** Guest71546 is now known as zeus13:20
*** zeus has quit IRC13:20
*** zeus has joined #openstack-neutron13:20
kevinbentonhaleyb_: yeah, there isn't anything too wrong with it. just inconsistent way that we handle addressing13:20
kevinbentonhaleyb_: just for simplicity it would be nice if we just always set the address13:20
haleyb_kevinbenton: i agree, can fix it when the dust settles on newton13:21
*** jheroux has joined #openstack-neutron13:21
Sam-I-Ammoo./13:22
* haleyb_ didn't bring any hay13:22
Sam-I-Amhay is for horses13:22
*** hynekm has joined #openstack-neutron13:22
Sam-I-Amthis cow eats bacon13:22
*** tongli has joined #openstack-neutron13:23
*** gvrangan has joined #openstack-neutron13:24
*** jckasper has quit IRC13:24
*** jckasper has joined #openstack-neutron13:25
sbelousamuller, ping13:26
*** irenab has joined #openstack-neutron13:26
*** korzen has quit IRC13:26
haleyb_Sam-I-Am: you must have noticed the IPv6 talk...13:27
*** jckasper has quit IRC13:27
*** jckasper has joined #openstack-neutron13:28
*** mlavalle has joined #openstack-neutron13:28
*** absubram has quit IRC13:29
Sam-I-Ami did13:29
openstackgerritIhar Hrachyshka proposed openstack/neutron: Relocate L3 DB Models  https://review.openstack.org/34856213:30
haleyb_Sam-I-Am: it's really just internal address in the dhcp namespace, should be statically configured but isn't13:31
*** prateek_ has quit IRC13:32
*** obondarev has quit IRC13:34
Sam-I-Amso it's getting ra'd ?13:34
*** obondarev has joined #openstack-neutron13:35
*** hynekm has quit IRC13:35
*** yamamoto has joined #openstack-neutron13:35
*** yamamoto has quit IRC13:35
haleyb_Sam-I-Am: yes, so we need to fix that13:38
*** yamamoto has joined #openstack-neutron13:38
anilvenkataHenryG, ping13:40
*** alraddarla_ has joined #openstack-neutron13:40
*** scottda has joined #openstack-neutron13:40
Sam-I-Amyeah, thats sort of like what i was noticing about instances with ipv6 on provider nets. neutron assigns an ip, but the instance just gets ra'd from radvd running on the infra13:40
haleyb_kevinbenton: i'm fine with https://review.openstack.org/#/c/377626/ want i +A ?  then it has to get to RC213:41
*** vnogin has joined #openstack-neutron13:41
*** lilintan has joined #openstack-neutron13:42
*** salv-orl_ has joined #openstack-neutron13:42
haleyb_Sam-I-Am: right. I think that's correct as that's what happens a private network too. It's the neutron "infrastructure" that shouldn't do it13:42
Sam-I-Amon a private net, i think instances get the ips they are assigned13:43
*** bkopilov has joined #openstack-neutron13:43
*** fnaval has quit IRC13:43
*** woodburn has quit IRC13:43
*** _oanson has joined #openstack-neutron13:44
*** fnaval has joined #openstack-neutron13:44
*** mugsie__ is now known as mugsie13:45
*** jamesdenton has joined #openstack-neutron13:45
*** salv-orlando has quit IRC13:46
*** oanson has quit IRC13:46
haleyb_Sam-I-Am: right, but it sees the RA and auto-configures, is that what you were saying ^^13:47
Sam-I-Amlemmie boot an instance and see13:48
*** jpena is now known as jpena|off13:48
*** jpena|off is now known as jpena13:48
*** woodburn has joined #openstack-neutron13:49
Sam-I-Amso, i created the subnet with slaac. neutron shows a very slaac-y ip address for the instance, which it must have picked up from somewhere.13:49
*** hoangcx has quit IRC13:49
haleyb_Sam-I-Am: does it have "dynamic" flag set?13:49
Sam-I-Amon what?13:49
haleyb_ip -6 a13:49
*** hoangcx has joined #openstack-neutron13:50
*** shausy has quit IRC13:50
*** gkadam has quit IRC13:50
haleyb_fdxx::1 ... dynamic13:50
Sam-I-Amhold on, poking at instance13:50
*** hichihara has joined #openstack-neutron13:50
*** rossella_ has joined #openstack-neutron13:51
*** rossella_ has quit IRC13:51
haleyb_neutron will compute the address based on the prefix and mac, but the instance will configure it13:51
Sam-I-Amah ok, so thats how it knows.13:52
Sam-I-Amra isnt super complex :)13:52
*** liuyulong has joined #openstack-neutron13:53
haleybnope.  somewhere in ipv6_utils there's an address generator, and that's used to populate the DB13:53
*** kriskend has joined #openstack-neutron13:55
*** sbelous_ has quit IRC13:56
*** rajinir has joined #openstack-neutron13:56
*** hoangcx has quit IRC13:57
*** yamahata has joined #openstack-neutron13:57
*** yamahata has quit IRC13:57
*** iyamahat has joined #openstack-neutron13:58
*** yamahata has joined #openstack-neutron13:58
*** hoangcx has joined #openstack-neutron13:58
*** trisq has joined #openstack-neutron13:59
*** dane_leblanc_ has joined #openstack-neutron14:00
*** dane_leblanc__ has joined #openstack-neutron14:01
*** yb has joined #openstack-neutron14:01
*** ivasilevskaya has joined #openstack-neutron14:02
*** banix has joined #openstack-neutron14:04
*** dane_leblanc_ has quit IRC14:04
jschwarzhaleyb, can you have a look at https://review.openstack.org/#/c/376604/1/neutron/scheduler/l3_agent_scheduler.py@329 again? :)14:06
*** haleyb_ has quit IRC14:06
Sam-I-Amhaleyb: i guess the key here is trying all this with dhcpv6.14:07
Sam-I-Amwith slaac, the dhcp ns doesnt even get a v6 address on the subnet14:08
haleybSam-I-Am: it does in private networks14:08
Sam-I-Amit didn't here, at least not with slaac14:09
haleybjschwarz: i will look after meeting, but i now have 6 meetings today, how to managers do it? :)14:09
haleybSam-I-Am: this is from my dhcp namespace on the tap device14:10
haleybinet6 fd8e:558e:2a1b:0:f816:3eff:fe4a:e5ef/64 scope global mngtmpaddr dynamic14:10
jschwarzhaleyb, with great sufferings come great responsibility14:10
haleybsuffering is right14:10
Sam-I-Amhaleyb: oh, *now* it has one. it didnt for a while.14:11
haleybjschwarz: so i still have the same problem with those methods, i'lll bet the nsx plugin (or some other private one) could get broken14:12
haleybSam-I-Am: depending on the config RAs could be minutes in-between14:12
Sam-I-Amthis is just the defaults14:12
jschwarzhaleyb, that's... their fault for being private, then? ;-)14:12
haleybSam-I-Am: is that a provider setup?14:13
haleybjschwarz: ask garyk about stuff like this, we've accidentally broken nsx a few times14:14
*** ganeshnalawade has joined #openstack-neutron14:14
*** ganeshnalawade has quit IRC14:16
*** ganeshnalawade has joined #openstack-neutron14:16
Sam-I-Amhaleyb: this is a provider net + a selfservice net14:16
haleybSam-I-Am: which one was slow?  just asking since on link-up i'm remembering the link-local will be configured, followed by sending an RS.  If that is lost then you have to wait for radvd to xmit.  That time could be long if you just missed the previous14:19
*** john-dav_ has joined #openstack-neutron14:20
*** john-davidge has quit IRC14:20
*** john-dav_ is now known as john-davidge14:20
*** ekuris has quit IRC14:22
Sam-I-Amhaleyb: dhcp ns14:23
*** sdake has quit IRC14:24
*** sudipto_ has joined #openstack-neutron14:24
*** vhoward has joined #openstack-neutron14:26
haleybSam-I-Am: i don't know then, i figured the port would be added to the bridge before it's brought up14:26
*** banix has quit IRC14:28
openstackgerritKATO Tomoyuki proposed openstack/neutron-lib: [api-ref] configure LogABug feature  https://review.openstack.org/37774114:28
*** viniciusarcanjo_ has quit IRC14:30
*** viniciusarcanjo_ has joined #openstack-neutron14:30
*** tbachman has quit IRC14:30
*** prateek has joined #openstack-neutron14:31
*** banix has joined #openstack-neutron14:32
*** amotoki_ has quit IRC14:33
*** brad_behle has quit IRC14:33
*** brad_behle has joined #openstack-neutron14:34
*** amotoki__ has joined #openstack-neutron14:35
*** iyamahat has quit IRC14:37
*** sdake has joined #openstack-neutron14:37
*** tflynn has quit IRC14:37
*** anilvenkata has quit IRC14:38
*** marst has quit IRC14:38
*** yb has quit IRC14:39
rtheisihrachys: could you take a look at https://review.openstack.org/#/c/375529/ for networking-ovn rc2?14:40
bodenHenryG dougwig: FYI I’m out tomorrow and I don’t have any pressing topics for neutron-lib meeting other than have a looksee at the reviews if you get time14:40
HenryGboden: ack14:40
*** obondarev has quit IRC14:41
*** john-davidge has quit IRC14:43
*** wolverin_ has joined #openstack-neutron14:44
*** amotoki__ has quit IRC14:45
*** john-davidge has joined #openstack-neutron14:45
openstackgerritMerged openstack/neutron-vpnaas: Fix import breakage in functional test  https://review.openstack.org/37765414:47
*** wolverineav has quit IRC14:47
*** hichihara has quit IRC14:49
*** Esha has joined #openstack-neutron14:52
EshaHi , I wanted to get some inputs on https://bugs.launchpad.net/neutron/+bug/161635714:52
openstackLaunchpad bug 1616357 in neutron "The Error Response REST API GET/POST on networks is not translated" [Undecided,New]14:52
*** marst has joined #openstack-neutron14:53
*** john-davidge has quit IRC14:53
*** sshank has joined #openstack-neutron14:53
*** BobBall_ has joined #openstack-neutron14:53
EshaIts a valid defect and still seen in latest builds14:54
BobBall_russellb: Were you aware that all-reviewers and cinder-reviewers stats are not being updated since February at http://russellbryant.net/openstack-stats/ ?14:55
*** armax has joined #openstack-neutron14:56
rajinirDevstack fails with Bad subnets request: allocation_pools allowed only for specific subnet requests... ?14:56
rajinirHas something changed?14:56
russellbBobBall_: nope14:56
BobBall_russellb: Got source somewhere so I can have a look at what's going on?14:57
*** Hassen has joined #openstack-neutron14:57
russellbopenstack-infra/reviewstats14:57
HassenHi Everyone I have a DHCP instance running on openstack, my client is not able to get an ip address someone can help ?14:57
BobBall_Awesome, thanks.14:57
*** nmagnezi has quit IRC14:57
russellbthe scripts are primitive14:58
russellb"all" might be broken purely based on RAM consumption14:58
russellbthat requires putting the entire review history of *all* projects in memory14:58
*** yulong|away has quit IRC14:58
BobBall_Oh awesome :)14:59
russellbcinder shouldn't be broken at least14:59
BobBall_I suspect cinder repos aren't up to date?14:59
BobBall_Which would probably break all too?14:59
russellbcould be, i'm testing manually15:00
russellbit also uses a primitive cache of review history ... writes pickled version to disk15:00
russellbcinder one was corrupted, so that was probably the problem on that one15:00
BobBall_Ah - great15:02
*** gvrangan has quit IRC15:03
*** mhickey has joined #openstack-neutron15:03
*** mriedem is now known as mriedem_meeting15:05
*** pcaruana has quit IRC15:06
*** yamamoto has quit IRC15:06
*** rcernin has quit IRC15:07
russellbBobBall_: give it another look in an hour or so and cinder should be there at least ...15:07
*** iyamahat has joined #openstack-neutron15:07
BobBall_Awesome, thanks.15:08
*** Worry has joined #openstack-neutron15:08
*** woodburn1 has joined #openstack-neutron15:10
HassenSomeone can help with DHCP issue ?15:11
*** tbachman has joined #openstack-neutron15:11
*** woodburn has quit IRC15:12
*** iyamahat has quit IRC15:13
ihrachysrtheis: +A15:14
rtheisthx15:14
*** numans has quit IRC15:14
*** amotoki has joined #openstack-neutron15:15
*** lucasagomes is now known as lucas-hungry15:16
*** haplo37__ has joined #openstack-neutron15:17
*** openstackgerrit has quit IRC15:18
rtheisihrachys, armax, kevinbenton: are we okay to close on the networking-ovn workaround in rc2 for dhcp? https://review.openstack.org/#/c/374852/15:18
armaxrtheis: figuring it out now15:19
rtheisack15:19
*** openstackgerrit has joined #openstack-neutron15:19
*** banix has quit IRC15:20
*** crose has joined #openstack-neutron15:20
armaxrtheis: it looks like ihrachys and kevinbenton have it all figure it out15:21
*** trevormc has joined #openstack-neutron15:23
*** prateek_ has joined #openstack-neutron15:23
*** banix has joined #openstack-neutron15:24
ihrachysrtheis: we landed a patch in master and we backport it to newton. if it's not fixed after that, kevin and I should resign from core-ship and join an order15:24
rtheisihrachys: thank you, let's hope you don't have to join an order :)15:25
*** ccard has joined #openstack-neutron15:25
rtheisihrachys: so I should abandon the workaround for rc2?15:25
*** hoangcx has quit IRC15:26
*** yamahata has quit IRC15:26
ihrachysrtheis: let's set it to WIP for newton15:26
ihrachysrtheis: and revert once we are sure it's gone15:26
*** hoangcx has joined #openstack-neutron15:26
ihrachysrtheis: revert in master I mean15:26
*** prateek has quit IRC15:27
*** andreas_s has quit IRC15:27
rtheisihrachys: ack15:27
ihrachysI set to WIP for now15:27
*** rmart04 has quit IRC15:28
*** amotoki has quit IRC15:29
*** Esha has quit IRC15:29
*** liuyulong has quit IRC15:29
*** kobis has quit IRC15:29
*** sterdnotshaken has joined #openstack-neutron15:32
*** blogan_ is now known as blogan15:33
*** yamamoto has joined #openstack-neutron15:33
*** tbachman has quit IRC15:33
*** devvesa has joined #openstack-neutron15:39
*** kriskend has quit IRC15:40
*** kriskend has joined #openstack-neutron15:41
*** Hassen has quit IRC15:41
*** donghao has quit IRC15:41
*** obondarev has joined #openstack-neutron15:41
*** kriskend has quit IRC15:43
fricklerrajinir: sounds similar to https://bugs.launchpad.net/trove/+bug/162809015:43
openstackLaunchpad bug 1628090 in OpenStack DBaaS (Trove) "Devstack networking doc needs updating regarding FIXED_RANGE" [Undecided,In progress] - Assigned to Matthew Van Dijk (mvandijk)15:43
*** sterdnotshaken has quit IRC15:43
*** kriskend has joined #openstack-neutron15:43
*** trisq has quit IRC15:44
*** trisq has joined #openstack-neutron15:44
*** roeyc has quit IRC15:45
*** amotoki has joined #openstack-neutron15:45
*** sandanar_ has quit IRC15:46
*** obondarev has quit IRC15:48
rajinir<frickler: Any idea what I'm missing? Should I specify the SUBNETPOOL_PREFIX?15:50
*** hieulq_ has joined #openstack-neutron15:50
*** wolverin_ has quit IRC15:51
*** pbandark has quit IRC15:56
*** tbachman has joined #openstack-neutron15:56
*** tflynn has joined #openstack-neutron15:57
*** mhickey has quit IRC15:58
openstackgerritVictor Morales proposed openstack/neutron: Service Type to OVO  https://review.openstack.org/30432215:58
*** s3wong has joined #openstack-neutron16:00
*** tbachman_ has joined #openstack-neutron16:01
*** wolverineav has joined #openstack-neutron16:01
*** tbachman has quit IRC16:02
*** tbachman_ is now known as tbachman16:02
*** Worry has quit IRC16:03
*** haleyb_ has joined #openstack-neutron16:04
*** haplo37_ has quit IRC16:05
*** gvrangan has joined #openstack-neutron16:05
*** lilintan has quit IRC16:06
*** iyamahat has joined #openstack-neutron16:06
*** obondarev has joined #openstack-neutron16:06
davidshaajo: ping16:07
*** haplo37_ has joined #openstack-neutron16:07
*** jlanoux has quit IRC16:08
openstackgerritAnindita Das proposed openstack/neutron-lib: api-ref: Fix api-ref for service-providers  https://review.openstack.org/35839616:08
openstackgerritAradhana Singh proposed openstack/neutron: OVO for Provisioning Block DB Model  https://review.openstack.org/35748816:10
*** brad_behle has quit IRC16:11
*** salv-orl_ has quit IRC16:11
*** salv-orlando has joined #openstack-neutron16:12
*** matrohon has quit IRC16:12
*** lucas-hungry is now known as lucasagomes16:16
*** mvk has quit IRC16:17
dougwigboden: ack, and ty.16:19
*** sudipto_ has quit IRC16:19
*** sudipto has quit IRC16:19
openstackgerritAnindita Das proposed openstack/neutron: [WIP] Integration of RouterL3AgentBinding  https://review.openstack.org/37707416:20
*** sudipto has joined #openstack-neutron16:20
*** sudipto_ has joined #openstack-neutron16:20
*** ptoohill has quit IRC16:21
*** Hassen has joined #openstack-neutron16:22
Hassensomeone can help with a Linux DHPC issue ?16:22
HassenI need to open some securty group I think ...16:22
dasmHassen: could you describe your problem. Then someone could weigh in and maybe answer your question.16:23
dasmHassen: don't ask to ask, just ask.16:23
*** trisq has quit IRC16:24
*** portdirect has quit IRC16:24
Hassendasm sure I have a Ubuntu instance as DHCP and a client, my client can't receive is ip address16:24
openstackgerritMerged openstack/neutron-lib: Updated from global requirements  https://review.openstack.org/37747416:24
dasmHassen: what kind of env are you using? devstack? production env?16:25
Hassenproduction env openstack liberty16:25
dasmHassen: did you check your logs? tried to verify if everything is working?16:25
dasmHassen: when did it start? did you change anything?16:26
HassenI can see the DHCPDISCOVERY on the logs16:26
openstackgerritShashank Kumar Shankar proposed openstack/neutron: OVO for Provisioning Block DB Model  https://review.openstack.org/35748816:26
*** baoli_ has quit IRC16:26
Hassendasm I added some security groups like UDP 67 and 6816:27
*** iyamahat has quit IRC16:28
openstackgerritSindhu Devale proposed openstack/neutron: OVO for Router Route  https://review.openstack.org/35622316:28
Hassendasm on the DHCP server I have the DHCPDISCOVER and DHCPOFFER with my client machine name16:28
dasmHassen: i'm pretty sure, you're not required to have secgoup with udp, to receive dhcp offer16:28
Hassenshould I delete them ?16:29
*** igordcar1 has quit IRC16:29
*** igordcard has joined #openstack-neutron16:29
dasmHassen: are you able to verify if your logs for client machine, and check if it receives dhcp?16:30
dasmHassen: are you using two nics? maybe you're trying to reach vm, with nic which is down?16:30
*** ekarlso_ has quit IRC16:31
Hassendasm i'm doing a tcpdum from my client and I can see some DHCP requesti on it16:31
*** fnaval_ has joined #openstack-neutron16:34
*** bbzhao has joined #openstack-neutron16:34
*** lezbar has joined #openstack-neutron16:34
*** tonytan_brb has joined #openstack-neutron16:34
*** tlian2 has joined #openstack-neutron16:34
*** david-lyle_ has joined #openstack-neutron16:35
*** tongli_ has joined #openstack-neutron16:35
*** ababich1 has joined #openstack-neutron16:36
*** kriskend_ has joined #openstack-neutron16:36
*** zhenguo_ has joined #openstack-neutron16:36
*** tmorin has quit IRC16:36
*** xek_ has joined #openstack-neutron16:36
*** zhenguo has quit IRC16:36
*** ildikov has quit IRC16:36
*** haplo37__ has quit IRC16:36
*** njohnston has quit IRC16:36
*** leifz has quit IRC16:36
*** patrickeast has quit IRC16:36
*** martink2 has quit IRC16:36
*** kuromagi has quit IRC16:36
*** hieulq__ has joined #openstack-neutron16:36
*** jckasper has quit IRC16:36
*** alaski has quit IRC16:36
*** xgerman has quit IRC16:36
*** kuromagi has joined #openstack-neutron16:36
*** asingh_ has quit IRC16:36
openstackgerritManjeet Singh Bhatia proposed openstack/neutron: Relocate Metering DB models  https://review.openstack.org/34875716:36
*** shz has joined #openstack-neutron16:36
*** armax has quit IRC16:36
*** rtheis has quit IRC16:36
*** Alex_Stef has quit IRC16:36
*** ltomasbo has quit IRC16:36
*** lezbar__ has quit IRC16:36
*** dansmith has quit IRC16:36
*** thorst has quit IRC16:37
*** plopix has quit IRC16:37
*** yee3793 has quit IRC16:37
*** marst has quit IRC16:37
*** fnaval has quit IRC16:37
*** ivasilevskaya has quit IRC16:37
*** aswadr_ has quit IRC16:37
*** pckizer_ has quit IRC16:37
*** dkehn_ has quit IRC16:37
*** tobias-fiberdata has quit IRC16:37
*** boden_ has joined #openstack-neutron16:37
*** hieulq_ has quit IRC16:37
*** kriskend has quit IRC16:37
*** nicolasbock has quit IRC16:37
*** jlvillal has quit IRC16:37
*** fzdarsky has quit IRC16:37
*** jprovazn has quit IRC16:37
*** akamyshnikova_ has quit IRC16:37
*** ndahiwade has quit IRC16:37
*** rickflare has quit IRC16:37
*** banix_ has joined #openstack-neutron16:37
*** zkassab_ has joined #openstack-neutron16:37
*** Kimmo__ has joined #openstack-neutron16:37
*** narayrak has quit IRC16:37
*** yee379 has joined #openstack-neutron16:37
*** hoangcx has quit IRC16:37
*** salv-orlando has quit IRC16:37
*** Kimmo_ has quit IRC16:37
*** Guest73334 has quit IRC16:37
*** John341 has quit IRC16:37
*** sticker_ has joined #openstack-neutron16:37
*** ababich has quit IRC16:37
*** John341_ has joined #openstack-neutron16:37
*** david-lyle has quit IRC16:37
*** sticker_ is now known as 17WAAQNWW16:37
*** amuller_ has joined #openstack-neutron16:37
*** woodburn1 has quit IRC16:37
*** mriedem_meeting has quit IRC16:37
*** serverascode has quit IRC16:37
*** stevemar has quit IRC16:37
*** hoangcx2 has joined #openstack-neutron16:37
*** mrhillsman has quit IRC16:37
*** clarkb has quit IRC16:37
*** stevemar has joined #openstack-neutron16:37
*** rtheis_ has joined #openstack-neutron16:37
*** sticker_ has joined #openstack-neutron16:37
*** banix has quit IRC16:37
*** zkassab has quit IRC16:37
*** boden has quit IRC16:37
*** banix_ is now known as banix16:37
*** Jeffrey4l has quit IRC16:37
*** boden_ is now known as boden16:37
*** stevebak` has quit IRC16:37
*** med_ has quit IRC16:37
*** stajkowski1 has quit IRC16:37
*** nicolasbock has joined #openstack-neutron16:37
*** bkopilov has quit IRC16:37
*** cbits has quit IRC16:37
*** claudiub has quit IRC16:37
*** reedip has quit IRC16:37
*** otherwiseguy has quit IRC16:37
*** 14WAAHO67 has joined #openstack-neutron16:37
*** alaski_ has joined #openstack-neutron16:37
*** tflynn has quit IRC16:37
*** bzhao has quit IRC16:37
*** avico has quit IRC16:37
*** krtaylor has quit IRC16:37
*** dsneddon_lunch has quit IRC16:37
*** danofsatx has quit IRC16:37
*** pckizer has joined #openstack-neutron16:37
*** roaet has joined #openstack-neutron16:37
*** janzian has quit IRC16:37
*** rcarrillocruz has quit IRC16:37
*** dosaboy has quit IRC16:37
*** lennyb has quit IRC16:37
*** hoonetorg has quit IRC16:37
*** bcafarel has quit IRC16:37
*** mnaser has quit IRC16:37
*** cgoncalves has quit IRC16:37
*** ivc_ has quit IRC16:37
*** BobBall_ has quit IRC16:37
*** pckizer has quit IRC16:37
*** pckizer has joined #openstack-neutron16:37
*** fzdarsky has joined #openstack-neutron16:37
*** cgoncalves has joined #openstack-neutron16:37
*** dsneddon_lunch has joined #openstack-neutron16:37
*** dmellado has quit IRC16:37
*** woodburn has joined #openstack-neutron16:37
*** amuller has quit IRC16:38
*** avico has joined #openstack-neutron16:38
*** tongli has quit IRC16:38
*** anteaya has quit IRC16:38
*** sticker has quit IRC16:38
*** eezhova has quit IRC16:38
*** dkehn_ has joined #openstack-neutron16:38
*** bcafarel has joined #openstack-neutron16:38
*** alaski_ is now known as alaski16:38
*** stajkowski1 has joined #openstack-neutron16:38
*** njohnston has joined #openstack-neutron16:38
*** crose has quit IRC16:38
*** sshank has quit IRC16:38
*** liusheng has quit IRC16:38
*** g3ek has quit IRC16:38
*** malloc83 has quit IRC16:38
*** ramishra has quit IRC16:38
*** clayton has quit IRC16:38
*** f0o has quit IRC16:38
*** gouthamr has quit IRC16:38
*** nherciu_ has quit IRC16:38
*** leifz has joined #openstack-neutron16:38
*** vjmorale has quit IRC16:38
*** sudipto has quit IRC16:38
*** krtaylor has joined #openstack-neutron16:38
*** anteaya has joined #openstack-neutron16:38
*** plopix has joined #openstack-neutron16:38
*** rickflare has joined #openstack-neutron16:38
*** tlian has quit IRC16:38
*** zzzeek has quit IRC16:38
*** tonytan4ever has quit IRC16:38
*** irenab_ has joined #openstack-neutron16:38
*** x58 has quit IRC16:38
*** roaet_ has quit IRC16:38
*** pdr has joined #openstack-neutron16:38
*** jckasper_ has joined #openstack-neutron16:38
*** eezhova_ has joined #openstack-neutron16:38
*** Alex_Stef_ has joined #openstack-neutron16:38
*** jlvillal_ has joined #openstack-neutron16:38
*** ganeshnalawade has quit IRC16:38
*** irenab has quit IRC16:38
*** shihanzhang has quit IRC16:38
*** xek has quit IRC16:38
*** irenab_ is now known as irenab16:38
*** x58 has joined #openstack-neutron16:38
*** akamyshnikova__ has joined #openstack-neutron16:38
*** Alex_Stef_ has quit IRC16:38
*** Alex_Stef_ has joined #openstack-neutron16:38
*** lennyb has joined #openstack-neutron16:38
*** hoonetorg has joined #openstack-neutron16:38
*** dmellado has joined #openstack-neutron16:38
*** links has quit IRC16:38
*** hwoarang_ has quit IRC16:38
*** danofsatx has joined #openstack-neutron16:38
*** jheroux has quit IRC16:38
*** rossella_s has quit IRC16:38
*** hwoarang has joined #openstack-neutron16:38
*** ltomasbo has joined #openstack-neutron16:38
*** korzen has joined #openstack-neutron16:38
*** clarkb has joined #openstack-neutron16:38
*** pdr is now known as Guest3978716:38
*** martink2 has joined #openstack-neutron16:38
*** sudipto has joined #openstack-neutron16:39
openstackgerritNakul Dahiwade proposed openstack/neutron-lib: api-ref: Fix api-ref for subnetpools  https://review.openstack.org/37117216:39
*** liusheng has joined #openstack-neutron16:39
*** jlvillal_ is now known as jlvillal16:39
*** nherciu_ has joined #openstack-neutron16:39
*** obondarev_ has joined #openstack-neutron16:39
*** rcarrillocruz has joined #openstack-neutron16:39
*** ramishra has joined #openstack-neutron16:39
*** obondarev has quit IRC16:39
*** obondarev_ is now known as obondarev16:39
*** jprovazn has joined #openstack-neutron16:39
*** jlvillal is now known as Guest9547716:39
*** 17WAAQNWW has quit IRC16:40
*** gregwork has quit IRC16:40
*** yuanying has quit IRC16:40
*** mrhillsman has joined #openstack-neutron16:40
*** dansmith has joined #openstack-neutron16:40
*** janzian has joined #openstack-neutron16:40
*** ganeshnalawade has joined #openstack-neutron16:40
*** zhenguo_ is now known as zhenguo16:40
*** haplo37 has joined #openstack-neutron16:40
*** sshank has joined #openstack-neutron16:40
*** gouthamr has joined #openstack-neutron16:41
*** yee379 has quit IRC16:41
*** yamamoto has quit IRC16:41
*** ircuser-1 has quit IRC16:41
*** yuanying has joined #openstack-neutron16:41
*** yamamoto has joined #openstack-neutron16:42
*** stevebaker has joined #openstack-neutron16:42
*** shshank has joined #openstack-neutron16:42
*** rtheis has joined #openstack-neutron16:44
*** banix_ has joined #openstack-neutron16:44
*** shihanzhang has joined #openstack-neutron16:44
*** mdurrant_ has joined #openstack-neutron16:44
*** yamahata has joined #openstack-neutron16:44
*** ildikov has joined #openstack-neutron16:44
*** dosaboy has joined #openstack-neutron16:44
*** yamamoto_ has joined #openstack-neutron16:45
*** kriskend__ has joined #openstack-neutron16:45
*** apuimedo has quit IRC16:45
*** yuanying_ has joined #openstack-neutron16:45
*** clayton has joined #openstack-neutron16:46
*** yee379 has joined #openstack-neutron16:46
*** sudswas__ has joined #openstack-neutron16:46
*** amuller has joined #openstack-neutron16:46
*** yamahata has quit IRC16:46
*** Guest66676 has quit IRC16:46
*** alex_xu has quit IRC16:46
*** grumpycatt has quit IRC16:46
*** amuller_ has quit IRC16:46
*** banix has quit IRC16:46
*** woodburn1 has joined #openstack-neutron16:46
*** grumpycatt has joined #openstack-neutron16:46
*** cburgess_ has joined #openstack-neutron16:46
*** eezhova has joined #openstack-neutron16:46
*** banix_ is now known as banix16:46
*** nherciu__ has joined #openstack-neutron16:47
*** ganeshnalawade has quit IRC16:47
*** lennyb has quit IRC16:47
*** zkassab_ has quit IRC16:47
*** boden has quit IRC16:47
*** irenab_ has joined #openstack-neutron16:47
*** zkassab_ has joined #openstack-neutron16:47
*** rubasov has quit IRC16:47
*** martink2 has quit IRC16:47
*** hoangcx2 has quit IRC16:47
*** cburgess has quit IRC16:47
*** sindhude has quit IRC16:47
*** 14WAAHO67 has quit IRC16:47
*** ivasilevskaya has joined #openstack-neutron16:47
*** BlackDex has quit IRC16:47
*** sudipto has quit IRC16:47
*** viniciusarcanjo_ has quit IRC16:47
*** zhhuabj_ has quit IRC16:47
*** slaweq has quit IRC16:47
*** liusheng has quit IRC16:47
*** pckizer has quit IRC16:47
*** kriskend_ has quit IRC16:47
*** zeus has quit IRC16:47
*** slaweq_ has quit IRC16:47
*** evrardjp has quit IRC16:47
*** mdurrant__ has quit IRC16:47
*** danofsatx has quit IRC16:47
*** Alex_Stef__ has joined #openstack-neutron16:47
*** g3ek has joined #openstack-neutron16:47
*** sdague has quit IRC16:47
*** rbradfor has quit IRC16:47
*** nherciu_ has quit IRC16:47
*** bcafarel has quit IRC16:47
*** adziarkach has joined #openstack-neutron16:47
*** hoangcx has joined #openstack-neutron16:47
*** rbradfor has joined #openstack-neutron16:47
*** _oanson has quit IRC16:47
*** iranzo has quit IRC16:47
*** hieulq has quit IRC16:47
*** dmellado_ has joined #openstack-neutron16:47
*** sindhu has quit IRC16:47
*** rtheis_ has quit IRC16:48
*** rubasov1 has joined #openstack-neutron16:48
*** gouthamr has quit IRC16:48
*** sticker_ has quit IRC16:48
*** shz has quit IRC16:48
*** briancurtin has quit IRC16:48
*** BlackDex_ has joined #openstack-neutron16:48
*** mrhillsman has quit IRC16:48
*** fzdarsky has quit IRC16:48
*** dsneddon_lunch has quit IRC16:48
*** kuromagi has quit IRC16:48
*** jamielennox has quit IRC16:48
*** vkmc has quit IRC16:48
*** Guest39787 has quit IRC16:48
*** zzzeek has joined #openstack-neutron16:48
*** dansmith has quit IRC16:48
*** x58 has quit IRC16:48
*** irenab has quit IRC16:48
*** alex_xu_ has joined #openstack-neutron16:48
*** gouthamr_ has joined #openstack-neutron16:48
*** yuanying has quit IRC16:48
*** sshank has quit IRC16:48
*** Guest95477 has quit IRC16:48
*** Alex_Stef_ has quit IRC16:48
*** eezhova_ has quit IRC16:48
*** jckasper_ has quit IRC16:48
*** adziarkach__ has quit IRC16:48
*** x58 has joined #openstack-neutron16:48
*** dansmith has joined #openstack-neutron16:48
*** obondarev has quit IRC16:48
*** alex_xu_ has quit IRC16:48
*** alex_xu_ has joined #openstack-neutron16:48
*** vkmc- has joined #openstack-neutron16:48
*** irenab_ is now known as irenab16:48
*** dmellado has quit IRC16:48
*** woodburn has quit IRC16:48
*** logan- has quit IRC16:48
*** rcarrillocruz has quit IRC16:48
*** pdr- has joined #openstack-neutron16:48
*** yamahata has joined #openstack-neutron16:48
*** anteaya has quit IRC16:48
*** bsv has quit IRC16:48
*** yamamoto has quit IRC16:48
*** bcafarel has joined #openstack-neutron16:48
*** pckizer has joined #openstack-neutron16:48
*** jckasper has joined #openstack-neutron16:48
*** f0o has joined #openstack-neutron16:48
*** pckizer has quit IRC16:48
*** pckizer has joined #openstack-neutron16:48
*** med_ has joined #openstack-neutron16:48
*** dsneddon_ has joined #openstack-neutron16:48
*** kuromagi has joined #openstack-neutron16:48
*** dansmith is now known as Guest374716:48
*** haleyb_ has quit IRC16:48
*** vkmc- is now known as vkmc16:48
*** hieulq has joined #openstack-neutron16:48
*** vkmc has quit IRC16:48
*** vkmc has joined #openstack-neutron16:48
*** med_ is now known as Guest4406416:48
*** boden_ has joined #openstack-neutron16:48
*** mickeys has joined #openstack-neutron16:48
*** rcarrillocruz has joined #openstack-neutron16:48
*** jamielennox has joined #openstack-neutron16:48
*** bkopilov has joined #openstack-neutron16:49
*** reedip has joined #openstack-neutron16:49
*** otherwiseguy has joined #openstack-neutron16:49
*** iranzo has joined #openstack-neutron16:50
*** liusheng has joined #openstack-neutron16:50
*** thorst has joined #openstack-neutron16:50
*** lennyb has joined #openstack-neutron16:50
*** viniciusarcanjo_ has joined #openstack-neutron16:50
*** zhhuabj_ has joined #openstack-neutron16:50
*** haleyb_ has joined #openstack-neutron16:50
*** anteaya has joined #openstack-neutron16:50
*** danofsatx has joined #openstack-neutron16:50
*** jheroux has joined #openstack-neutron16:51
*** crose has joined #openstack-neutron16:51
*** tflynn has joined #openstack-neutron16:51
*** codebauss has joined #openstack-neutron16:51
*** mnaser has joined #openstack-neutron16:51
*** jianghuaw has quit IRC16:51
*** jklare has quit IRC16:51
*** links has joined #openstack-neutron16:51
*** kbringard has joined #openstack-neutron16:51
*** codebauss is now known as mrhillsman16:52
*** rossella_s has joined #openstack-neutron16:52
*** Guest3747 is now known as dansmith16:52
*** zeus has joined #openstack-neutron16:53
*** evrardjp has joined #openstack-neutron16:53
*** cgoncalves has quit IRC16:53
*** bfernando has quit IRC16:53
*** zeus is now known as Guest6643016:53
*** vjmorale has joined #openstack-neutron16:53
*** bsv has joined #openstack-neutron16:53
*** cgoncalves has joined #openstack-neutron16:53
*** jianghuaw has joined #openstack-neutron16:53
*** logan- has joined #openstack-neutron16:54
*** patrickeast has joined #openstack-neutron16:54
*** bsv is now known as Guest4580016:54
*** apuimedo has joined #openstack-neutron16:54
*** slaweq has joined #openstack-neutron16:55
*** asingh_ has joined #openstack-neutron16:55
*** ivar-lazzaro has joined #openstack-neutron16:56
*** hieulq__ has quit IRC16:56
*** jlvillal has joined #openstack-neutron16:56
*** jlvillal has quit IRC16:56
*** jlvillal has joined #openstack-neutron16:57
*** Guest66666 has joined #openstack-neutron16:58
*** Alex_Stef__ has quit IRC16:58
*** jklare has joined #openstack-neutron16:58
*** sdague has joined #openstack-neutron16:58
*** mriedem has joined #openstack-neutron16:58
*** gvrangan has quit IRC16:59
*** sindhude has joined #openstack-neutron16:59
*** salv-orlando has joined #openstack-neutron16:59
*** BobBall has joined #openstack-neutron16:59
*** BobBall is now known as Guest7562417:00
*** rajinir has quit IRC17:00
*** _oanson has joined #openstack-neutron17:00
*** slaweq_ has joined #openstack-neutron17:00
*** tflynn has quit IRC17:00
*** Guest66430 is now known as zeus`17:02
*** reedip has quit IRC17:02
*** zeus` is now known as zeus17:02
*** zeus has quit IRC17:02
*** zeus has joined #openstack-neutron17:02
*** reedip has joined #openstack-neutron17:03
*** ircuser-1 has joined #openstack-neutron17:03
*** armax has joined #openstack-neutron17:03
manjeetstest17:04
*** jpena is now known as jpena|off17:04
*** ralonsoh has quit IRC17:04
*** frontrunner has joined #openstack-neutron17:06
dasmmanjeets: works17:06
*** adziarkach_ has joined #openstack-neutron17:07
manjeetsthanks dasm I lost connection to freenode for a sec was testing my connection17:07
*** Esha has joined #openstack-neutron17:08
*** nherciu_ has joined #openstack-neutron17:08
*** jckasper_ has joined #openstack-neutron17:08
*** mickeys_ has joined #openstack-neutron17:08
*** irenab_ has joined #openstack-neutron17:09
*** woodburn1 has quit IRC17:10
*** bcafarel has quit IRC17:10
*** njohnston has quit IRC17:10
*** Guest44064 has quit IRC17:10
*** zkassab_ has quit IRC17:11
*** zeus has quit IRC17:11
*** adziarkach has quit IRC17:11
*** nherciu__ has quit IRC17:11
*** thorst_ has joined #openstack-neutron17:11
*** hoangcx has quit IRC17:11
*** apuimedo has quit IRC17:11
*** logan- has quit IRC17:11
*** stevemar has quit IRC17:11
*** ivasilevskaya has quit IRC17:11
*** stevemar has joined #openstack-neutron17:11
*** kbringard1 has joined #openstack-neutron17:11
*** ircuser-1 has quit IRC17:11
*** sdague has quit IRC17:11
*** asingh_ has quit IRC17:11
*** patrickeast has quit IRC17:11
*** dmellado_ has quit IRC17:11
*** alaski has quit IRC17:11
*** haleyb_ has quit IRC17:11
*** mnaser has quit IRC17:11
*** rbradfor has quit IRC17:11
*** zkassab_ has joined #openstack-neutron17:11
*** John341_ has quit IRC17:11
*** ivasilevskaya has joined #openstack-neutron17:11
*** frontrunner has quit IRC17:11
*** jheroux has quit IRC17:11
*** liusheng has quit IRC17:11
*** bkopilov has quit IRC17:11
*** ramishra has quit IRC17:11
*** thorst has quit IRC17:11
*** x58 has quit IRC17:11
*** mickeys has quit IRC17:11
*** x58 has joined #openstack-neutron17:11
*** dansmith has quit IRC17:11
*** links has quit IRC17:11
*** gouthamr_ has quit IRC17:11
*** gopenshaw has quit IRC17:11
*** jckasper has quit IRC17:12
*** irenab has quit IRC17:12
*** zhhuabj_ has quit IRC17:12
*** jamielennox has quit IRC17:12
*** dsneddon_ has quit IRC17:12
*** irenab_ is now known as irenab17:12
*** Guest66666 has quit IRC17:12
*** dsneddon__ has joined #openstack-neutron17:12
*** jraju has joined #openstack-neutron17:12
*** jklare has quit IRC17:12
*** woodburn has joined #openstack-neutron17:12
*** njohnston_ has joined #openstack-neutron17:12
*** kbringard has quit IRC17:12
*** pdr- has quit IRC17:12
*** shshank has quit IRC17:12
*** clarkb has quit IRC17:12
*** jklare has joined #openstack-neutron17:12
*** bcafarel_ has joined #openstack-neutron17:12
*** otherwiseguy has quit IRC17:12
*** clarkb has joined #openstack-neutron17:12
*** cgoncalves has quit IRC17:12
*** boden_ has quit IRC17:12
*** gopenshaw_ has joined #openstack-neutron17:12
*** armax has quit IRC17:12
*** iranzo has quit IRC17:12
*** bkopilov_ has joined #openstack-neutron17:12
*** jheroux has joined #openstack-neutron17:12
*** _oanson has quit IRC17:12
*** pdr- has joined #openstack-neutron17:12
*** gouthamr has joined #openstack-neutron17:12
*** liusheng has joined #openstack-neutron17:12
*** ircuser-1 has joined #openstack-neutron17:12
*** tonytan_brb has quit IRC17:12
*** apuimedo_ has joined #openstack-neutron17:12
*** rbradfor has joined #openstack-neutron17:12
*** _oanson has joined #openstack-neutron17:12
*** dmellado has joined #openstack-neutron17:12
*** logan- has joined #openstack-neutron17:12
*** apuimedo_ is now known as apuimedo17:12
*** dansmith has joined #openstack-neutron17:13
*** sdague has joined #openstack-neutron17:13
*** iranzo has joined #openstack-neutron17:14
*** iranzo has joined #openstack-neutron17:14
*** frontrunner has joined #openstack-neutron17:14
*** zhhuabj_ has joined #openstack-neutron17:14
*** alaski has joined #openstack-neutron17:14
*** jamielennox has joined #openstack-neutron17:14
*** otherwiseguy has joined #openstack-neutron17:14
*** mnaser has joined #openstack-neutron17:15
*** ivasilevskaya1 has joined #openstack-neutron17:15
*** hoangcx has joined #openstack-neutron17:15
*** ivasilevskaya has quit IRC17:15
*** boden has joined #openstack-neutron17:16
*** zeus has joined #openstack-neutron17:17
*** harlowja has joined #openstack-neutron17:17
*** ircuser-1 has quit IRC17:17
*** Guest66666 has joined #openstack-neutron17:17
openstackgerritNate Johnston proposed openstack/neutron-fwaas: Remove reference to third-party drivers in readme  https://review.openstack.org/37792617:17
Esha ihrachys and kevinbenton : Could you provide input on https://bugs.launchpad.net/neutron/+bug/162530517:17
openstackLaunchpad bug 1625305 in neutron "neutron-openvswitch-agent is crashing due to KeyError in _restore_local_vlan_map()" [High,New]17:17
*** patrickeast has joined #openstack-neutron17:17
EshaThe agent always returns the same tag for flat networks even if they are created by different agent instances17:18
*** ircuser-1 has joined #openstack-neutron17:18
*** ramishra has joined #openstack-neutron17:19
*** gouthamr_ has joined #openstack-neutron17:19
EshaAlso if the same agent is used then too 2 vms on same flat network get tag 217:19
Eshais this how it should work?17:19
*** armax has joined #openstack-neutron17:20
*** apuimedo_ has joined #openstack-neutron17:20
*** woodburn1 has joined #openstack-neutron17:20
*** mmalik4 has joined #openstack-neutron17:20
*** ivasilevskaya1 has quit IRC17:21
*** tflynn has joined #openstack-neutron17:21
ihrachysjlibosva: http://logs.openstack.org/26/377626/1/check/gate-tempest-dsvm-neutron-full-ubuntu-xenial/b6953d4/logs/screen-q-dhcp.txt.gz?#_2016-09-27_12_21_25_12917:21
*** ivasilevskaya has joined #openstack-neutron17:21
*** grumpycatt has quit IRC17:21
*** grumpycatt has joined #openstack-neutron17:21
*** dmellado_ has joined #openstack-neutron17:21
*** haplo37_ has quit IRC17:21
*** korzen_ has joined #openstack-neutron17:21
*** alex_xu has joined #openstack-neutron17:21
*** dmellado has quit IRC17:21
*** kbringard1 has quit IRC17:21
*** stevemar has quit IRC17:21
*** f0o has quit IRC17:21
*** stevemar has joined #openstack-neutron17:21
*** korzen has quit IRC17:21
*** kbringard has joined #openstack-neutron17:21
*** leifz- has joined #openstack-neutron17:21
*** zeus is now known as Guest4538517:21
*** rodrigod` has joined #openstack-neutron17:21
*** rbradfor has quit IRC17:21
*** mjblack has quit IRC17:21
*** diegows has quit IRC17:21
ihrachysarmax: I see those address already in use failures long before17:21
*** harlowja_ has joined #openstack-neutron17:22
*** devvesa_ has joined #openstack-neutron17:22
ihrachysarmax: around 9/2017:22
ihrachysf.e http://logs.openstack.org/88/373088/2/gate/gate-tempest-dsvm-neutron-full-ubuntu-xenial/acb94fa/logs/screen-q-dhcp.txt.gz?17:22
*** sneti_ has joined #openstack-neutron17:22
*** leifz has quit IRC17:22
*** alex_xu_ has quit IRC17:22
*** stevebaker has quit IRC17:22
*** x58 has quit IRC17:22
*** BlackDex_ has quit IRC17:22
*** leifz- is now known as leifz17:22
*** zzzeek has quit IRC17:22
*** devvesa has quit IRC17:22
*** krtaylor has quit IRC17:22
*** x58 has joined #openstack-neutron17:22
*** danofsatx has quit IRC17:22
*** harlowja has quit IRC17:22
*** Guest45385 has quit IRC17:22
*** logan- has quit IRC17:22
*** jheroux has quit IRC17:22
*** dsneddon__ has quit IRC17:22
ihrachysarmax: jlibosva is looking at whether kill and immediate spin up of dnsmasq results in that same error17:22
*** Guest66676 has joined #openstack-neutron17:22
*** apuimedo has quit IRC17:22
*** woodburn has quit IRC17:22
*** jklare has quit IRC17:22
*** apuimedo_ is now known as apuimedo17:22
*** stevebak` has joined #openstack-neutron17:22
*** frontrunner has quit IRC17:22
*** clarkb has quit IRC17:22
*** bcafarel_ has quit IRC17:22
*** mnaser has quit IRC17:22
*** Guest66666 has quit IRC17:22
*** zhhuabj_ has quit IRC17:22
*** bkopilov_ has quit IRC17:22
*** gouthamr has quit IRC17:22
*** jianghuaw has quit IRC17:22
*** yamahata has quit IRC17:22
*** frontrunner has joined #openstack-neutron17:22
*** salv-orl_ has joined #openstack-neutron17:22
*** zhhuabj_ has joined #openstack-neutron17:22
*** f0o has joined #openstack-neutron17:22
*** krtaylor has joined #openstack-neutron17:22
*** jklare has joined #openstack-neutron17:22
*** mlavalle1 has joined #openstack-neutron17:22
*** zeus- has joined #openstack-neutron17:23
*** jjheroux has joined #openstack-neutron17:23
*** serverascode has joined #openstack-neutron17:23
*** haplo37_ has joined #openstack-neutron17:23
*** bkopilov_ has joined #openstack-neutron17:23
*** sshank has joined #openstack-neutron17:23
*** rbradfor has joined #openstack-neutron17:23
*** clarkb has joined #openstack-neutron17:23
*** jianghuaw has joined #openstack-neutron17:23
*** dsneddon__ has joined #openstack-neutron17:23
*** danofsatx-ghost has joined #openstack-neutron17:23
*** zeus- is now known as zeus`17:24
*** zzzeek has joined #openstack-neutron17:24
*** cgoncalves has joined #openstack-neutron17:24
*** david-lyle_ is now known as david-lyle17:24
*** danofsatx-ghost is now known as danofsatx17:25
*** s3wong has quit IRC17:25
*** ivasilevskaya has quit IRC17:25
*** salv-orlando has quit IRC17:25
*** haplo37| has joined #openstack-neutron17:25
*** safchain_ has joined #openstack-neutron17:25
*** bcafarel_ has joined #openstack-neutron17:25
*** cu5_ has joined #openstack-neutron17:27
*** rossella_ has joined #openstack-neutron17:27
*** haplo37 has quit IRC17:28
*** jprovazn has quit IRC17:28
*** dane_leblanc__ has quit IRC17:28
*** mlavalle has quit IRC17:28
*** rodrigods has quit IRC17:28
*** johndperkins has quit IRC17:28
*** cu5 has quit IRC17:28
*** safchain has quit IRC17:28
*** safchain_ is now known as safchain17:28
*** logan- has joined #openstack-neutron17:28
davidshaihrachys: Quick question, should out of tree extensions use object versioning?17:29
ihrachysdavidsha: what do you mean17:29
dasmalraddarla_: hey. i've read your response about tenant/project. i've read eavesdrops from today's meeting and i don't see amotoki or ihrachys suggestions to leave it, without change.17:29
ihrachysdasm: that's only because I suck17:29
dasmalraddarla_: i've suggested to reuse HenryG's work, and rebase your patch on top of his.17:29
*** kbringard1 has joined #openstack-neutron17:30
*** John341 has joined #openstack-neutron17:30
dasmihrachys: so, you're saying to just leave metering without any change? https://review.openstack.org/#/c/376976/17:31
*** salv-orlando has joined #openstack-neutron17:31
*** kevo has joined #openstack-neutron17:31
dasmihrachys: newly promoted Drivers Team member doesn't suck :P17:31
*** akamyshnikova_ has joined #openstack-neutron17:31
ihrachysdasm: I was thinking, this page documents metering extension, so it should contain tenant_id17:32
davidshaihrachys: for example, should networking-sfc have versioned objects to accommodate a rolling upgrades?17:32
ihrachysnot project_id17:32
*** frontrunner2 has joined #openstack-neutron17:32
ihrachysthat is provided by another extension17:32
*** Hassen has quit IRC17:32
ihrachys(that is enabled by default in new installations, but still)17:32
ihrachysdavidsha: ideally, they would work on it. realistically, I don't expect it to happen.17:32
*** x58 has quit IRC17:32
*** rossella_s has quit IRC17:32
*** lennyb has quit IRC17:32
*** akamyshnikova__ has quit IRC17:32
*** prateek_ has quit IRC17:32
*** f0o has quit IRC17:32
*** kbringard has quit IRC17:32
*** stevemar has quit IRC17:32
*** kuromagi has quit IRC17:32
*** kuromagi has joined #openstack-neutron17:32
*** stevebaker has joined #openstack-neutron17:32
*** leifz has quit IRC17:32
*** mtreinish has quit IRC17:33
*** parora has joined #openstack-neutron17:33
*** stevebaker has quit IRC17:33
*** stevebaker has joined #openstack-neutron17:33
*** safchain_ has joined #openstack-neutron17:33
ihrachysdavidsha: and that's ok. we work towards having some basic neutron setup to roll. once there, we may see how other plugins behave17:33
*** mjblack has joined #openstack-neutron17:33
*** logan- has quit IRC17:33
*** zeus` has quit IRC17:33
*** harlowja_ has quit IRC17:33
*** sdague has quit IRC17:33
*** leifz has joined #openstack-neutron17:33
*** f0o has joined #openstack-neutron17:33
dasmihrachys: gotcha. but then, if you'll look into HenryG's work: https://review.openstack.org/#/c/372857/6/api-ref/source/v2/metering.inc you can see that doc is gonna be updated to reflect project_id change (even in metering extension).17:33
johnsomihrachys Can you bless this for us? https://review.openstack.org/#/c/37790917:33
davidshaihrachys: ack, was working on a dummy L2/L3 extension for a presentation at the summit and was wondering should I include it.17:33
*** frontrunner has quit IRC17:33
*** stevebak` has quit IRC17:33
*** hoangcx has quit IRC17:33
*** jklare_ has joined #openstack-neutron17:33
*** safchain has quit IRC17:33
*** jklare has quit IRC17:34
*** zhhuabj_ has quit IRC17:34
*** salv-orl_ has quit IRC17:34
*** rcarrillocruz has quit IRC17:34
*** safchain_ is now known as safchain17:34
*** stevemar has joined #openstack-neutron17:34
*** jprovazn has joined #openstack-neutron17:34
*** harlowja has joined #openstack-neutron17:34
dasmihrachys: so, in this case, probably HenryG should include alraddarla_'s change?17:34
davidshaihrachys: you're getting busy now so I'll leave you be, congrats on making drivers!17:34
*** rmcall has joined #openstack-neutron17:35
*** sdague has joined #openstack-neutron17:35
*** rcarrillocruz has joined #openstack-neutron17:35
*** x58 has joined #openstack-neutron17:35
*** zhhuabj_ has joined #openstack-neutron17:35
*** mnaser has joined #openstack-neutron17:36
*** BlackDex has joined #openstack-neutron17:36
*** johndperkins has joined #openstack-neutron17:36
*** xgerman has joined #openstack-neutron17:36
*** baoli has joined #openstack-neutron17:36
ihrachysjohnsom: +117:36
*** banix has quit IRC17:36
johnsomThank you sir17:36
ihrachysdavidsha: tnx17:37
*** diegows has joined #openstack-neutron17:37
ihrachysdasm: I don't mind. I don't review the shit, so it's up to you folks actually :)17:37
*** davidsha has quit IRC17:37
ihrachysI was asked, I gave my point of view, but I don't insist :)17:37
dasmhehe17:37
alraddarla_I will do what i need to :) Just need to know what that is.17:37
alraddarla_dasm , I just wasn't sure since I was hearing conflicting messages17:38
*** zeus- has joined #openstack-neutron17:38
*** sindhu has joined #openstack-neutron17:38
dasmalraddarla_: as you can see, there are completely different point of views :D17:38
*** cu5_ is now known as cu517:38
*** logan- has joined #openstack-neutron17:38
*** sambetts is now known as sambetts|afk17:39
*** kbringard has joined #openstack-neutron17:39
*** zeus- is now known as zeus`17:39
*** aswadr_ has joined #openstack-neutron17:39
*** zeus` is now known as zeus17:39
*** abhiraut has joined #openstack-neutron17:39
*** zeus has quit IRC17:39
*** zeus has joined #openstack-neutron17:39
*** mtreinish has joined #openstack-neutron17:40
*** lennyb has joined #openstack-neutron17:40
*** rmcall has quit IRC17:41
*** x58 has quit IRC17:41
*** harlowja has quit IRC17:42
*** sudipto_ has quit IRC17:42
*** sudswas__ has quit IRC17:42
*** rodrigod` is now known as rodrigods17:42
*** rodrigods has quit IRC17:42
*** rodrigods has joined #openstack-neutron17:42
*** kbringard1 has quit IRC17:43
*** med_ has joined #openstack-neutron17:44
*** med_ is now known as Guest7927817:45
alraddarla_dasm: if it comes down to it would the entire parameters.yaml file need to be changed to match up with HenryG's change?17:45
openstackgerritYushiro FURUKAWA proposed openstack/python-neutronclient: Add FWaaS V2 commands for OSC plugin  https://review.openstack.org/35158217:46
*** lezbar has quit IRC17:46
*** x58 has joined #openstack-neutron17:47
*** harlowja has joined #openstack-neutron17:47
*** lezbar has joined #openstack-neutron17:47
*** njohnston_ is now known as njohnston17:48
*** hoangcx has joined #openstack-neutron17:48
*** parora has quit IRC17:49
*** x58 has left #openstack-neutron17:50
*** asingh_ has joined #openstack-neutron17:50
*** mvk has joined #openstack-neutron17:51
*** gvrangan has joined #openstack-neutron17:51
*** parora has joined #openstack-neutron17:52
*** Swami has joined #openstack-neutron17:52
*** rajinir has joined #openstack-neutron17:52
*** dsneddon__ has quit IRC17:52
*** tonytan4ever has joined #openstack-neutron17:53
*** dsneddon__ has joined #openstack-neutron17:53
*** gregwork has joined #openstack-neutron17:53
dasmalraddarla_: are you talking about this change? https://review.openstack.org/#/c/372857/6/api-ref/source/v2/parameters.yaml17:54
dasmalraddarla_: or in your code?17:54
*** jraju has quit IRC17:54
amullerdougwig: re: v1->v2 thing17:55
alraddarla_dasm: ah, yes. I somehow looked over that file in his list of changes. Must need more coffee.17:55
amullerdougwig: is the upgrade supposed to be ran by operators? You're using the term developers on Gerrit17:55
dasmalraddarla_: i need to re-look into this change, but according to me, all places with tenant_id (except your, lately added) are covered.17:56
*** claudiub has joined #openstack-neutron17:57
*** iyamahat has joined #openstack-neutron17:57
*** aswadr_ has quit IRC17:58
*** martink2 has joined #openstack-neutron17:58
*** krtaylor has left #openstack-neutron17:59
*** thorst_ has quit IRC17:59
*** briancurtin has joined #openstack-neutron18:00
*** prateek_ has joined #openstack-neutron18:02
alraddarla_dasm: sounds good. Also, apologize if this is a simple question (I am new), but can you clarify what you mean by rebase my patch on top of his? Would I wait for his patch set to get merged and then use project_id instead?18:02
dasmalraddarla_: sure. gimme sec, i'll providedoc for it.18:02
*** thorst_ has joined #openstack-neutron18:03
dasmalraddarla_: here you have described workflow: http://docs.openstack.org/infra/manual/developers.html#adding-a-dependency18:03
dasmalraddarla_: and, unfortunately if you're rebasing your changes on top of others, then it's required to merge first thing, to be able to merge second one.18:04
*** Guest45800 has quit IRC18:04
dasmalthough, it shouldn't be a problem, because this doc change should be merged pretty soon (i hope so :P)18:05
*** bsv has joined #openstack-neutron18:05
*** yamahata has joined #openstack-neutron18:05
*** bsv is now known as Guest7651718:05
*** parora has quit IRC18:06
*** yee3794 has joined #openstack-neutron18:06
*** yee379 has quit IRC18:07
alraddarla_dasm: okay :) Should I wait for that to get merged before pushing a new patch set on mine?18:07
*** iyamahat has quit IRC18:07
jlibosvaihrachys: id doesn't even happen during boot of an instance18:07
dasmalraddarla_: you can do this right now, without waiting. if the other patch would be merged, (it could happen, if you would wait longer), then you just need to rebase on top of master, and it would be ready to go.18:08
*** tonytan_brb has joined #openstack-neutron18:08
alraddarla_Okay awesome. Thanks for your help dasm18:08
dasmalraddarla_: np.18:09
*** zhhuabj_ has quit IRC18:10
*** grumpycatt has quit IRC18:10
*** grumpycatt has joined #openstack-neutron18:10
*** harlowja has quit IRC18:10
*** gvrangan has quit IRC18:10
*** xgerman has quit IRC18:10
*** jklare_ has quit IRC18:10
*** safchain has quit IRC18:10
*** patrickeast_ has joined #openstack-neutron18:10
*** haplo37| has quit IRC18:10
*** serverascode has quit IRC18:10
*** gvrangan has joined #openstack-neutron18:10
*** mtreinish_ has joined #openstack-neutron18:10
*** haplo37- has joined #openstack-neutron18:10
*** patrickeast_ has quit IRC18:10
*** patrickeast_ has joined #openstack-neutron18:10
*** tonytan4ever has quit IRC18:10
*** mvk has quit IRC18:10
*** Guest79278 has quit IRC18:10
*** lennyb has quit IRC18:10
*** hieulq has quit IRC18:10
*** BlackDex has quit IRC18:10
*** rcarrillocruz has quit IRC18:10
*** BlackDex has joined #openstack-neutron18:10
*** safchain has joined #openstack-neutron18:11
*** mvk has joined #openstack-neutron18:11
*** jprovazn_ has joined #openstack-neutron18:11
*** sdague has quit IRC18:11
*** thorst_ has quit IRC18:11
*** abhiraut has quit IRC18:11
*** mtreinish has quit IRC18:11
*** mtreinish_ is now known as mtreinish18:11
*** njohnston has quit IRC18:11
*** joshua has joined #openstack-neutron18:11
*** diegows has quit IRC18:11
*** jprovazn has quit IRC18:11
*** diegows has joined #openstack-neutron18:11
*** jklare has joined #openstack-neutron18:11
*** danofsatx has quit IRC18:11
*** njohnston has joined #openstack-neutron18:11
*** joshua is now known as Guest4431418:11
*** serverascode has joined #openstack-neutron18:12
*** danofsatx has joined #openstack-neutron18:12
*** stevemar_ has joined #openstack-neutron18:12
*** sdague has joined #openstack-neutron18:13
*** rcarrillocruz has joined #openstack-neutron18:13
*** lennyb has joined #openstack-neutron18:13
HenryGdasm: thanks for helping the new-comers18:15
HenryGihrachys: I have taken over as oslo liason. OK to ping you if I need help?18:16
dasmHenryG: np. glad to help.18:17
dasmHenryG: congrats with oslo liason!18:17
*** stevemar_ is now known as stevemar__18:17
HenryGdasm: I am not sure it's something to be congratulated for?18:17
dasmHenryG: hmm... you're right. so, maybe i should rephrase: congratulate to have less time for anything else :D18:18
HenryGdasm: :P18:18
*** stevemar__ has quit IRC18:18
*** tidwellr has joined #openstack-neutron18:20
*** stevemar____ has joined #openstack-neutron18:20
*** hoangcx2 has joined #openstack-neutron18:20
*** patrickeast_ has quit IRC18:20
*** f0o has quit IRC18:20
*** viniciusarcanjo_ has quit IRC18:21
*** hoangcx has quit IRC18:21
*** diegows has quit IRC18:21
*** diegows has joined #openstack-neutron18:21
*** Guest44314 has quit IRC18:21
*** viniciusarcanjo_ has joined #openstack-neutron18:22
*** hynekm has joined #openstack-neutron18:22
*** f0o has joined #openstack-neutron18:22
*** gvrangan has quit IRC18:22
ihrachysHenryG: yay, cool. thanks a lot.18:22
ihrachysHenryG: let's talk duties thru during the week so that nothing slips thru. I will ping you. thanks again.18:23
*** Guest44314 has joined #openstack-neutron18:23
ihrachysarmax: jlibosva: kevinbenton: carl_baldwin: http://lists.openstack.org/pipermail/openstack-dev/2016-September/104635.html18:24
*** harlowja has joined #openstack-neutron18:24
carl_baldwinihrachys: ack18:24
*** thorst_ has joined #openstack-neutron18:25
jlibosvareminds me I still owe on brain dump18:25
*** tidwellr has quit IRC18:25
carl_baldwinihrachys: logstash can only see back 7 days so the 20th will be the earliest you'll see anything.18:25
armaxihrachys: you forgot the Neutron tag18:25
ihrachysarmax: fuck18:25
armaxihrachys: see?18:25
armaxihrachys: that’s what happens when people rush18:26
ihrachyslemme add it18:26
*** mkolesni_ has joined #openstack-neutron18:26
*** tidwellr has joined #openstack-neutron18:26
*** patrickeast_ has joined #openstack-neutron18:28
*** ihrachys has quit IRC18:28
*** ndahiwade has joined #openstack-neutron18:29
carl_baldwinihrachys: I didn't notice the lack of Neutron tag because my mailer still tagged the message with Neutron. Must have seen "neutron" in the body. Oh well, you're not the first to forget a tag. :)18:29
openstackgerritManjeet Singh Bhatia proposed openstack/neutron: Integrate SubnetRoute OVO,  https://review.openstack.org/37711218:29
*** mjblack has quit IRC18:29
*** viniciusarcanjo_ has quit IRC18:29
*** diegows has quit IRC18:30
*** viniciusarcanjo_ has joined #openstack-neutron18:30
*** dsneddon__ is now known as dsneddon18:31
*** mjblack has joined #openstack-neutron18:31
*** dsneddon has quit IRC18:31
*** dsneddon has joined #openstack-neutron18:31
*** xgerman has joined #openstack-neutron18:32
*** dsneddon has quit IRC18:32
*** dsneddon has joined #openstack-neutron18:32
*** dane_leblanc__ has joined #openstack-neutron18:32
*** haleyb_ has joined #openstack-neutron18:33
*** yamahata has quit IRC18:34
*** salv-orlando has quit IRC18:35
*** thorst_ has quit IRC18:35
*** parora has joined #openstack-neutron18:35
*** sdake has quit IRC18:35
*** thorst_ has joined #openstack-neutron18:36
*** thorst_ has quit IRC18:36
*** thorst_ has joined #openstack-neutron18:36
*** prateek_ has quit IRC18:37
*** mkolesni_ has quit IRC18:39
*** logan- has quit IRC18:39
*** ndahiwade has quit IRC18:39
*** viniciusarcanjo_ has quit IRC18:40
*** jjheroux has quit IRC18:40
*** prateek has joined #openstack-neutron18:40
*** jjheroux has joined #openstack-neutron18:41
*** viniciusarcanjo_ has joined #openstack-neutron18:41
*** parora has quit IRC18:41
openstackgerritManjeet Singh Bhatia proposed openstack/neutron: Add OVO for dns Objects  https://review.openstack.org/33469518:41
*** diegows has joined #openstack-neutron18:42
*** logan- has joined #openstack-neutron18:42
*** med_ has joined #openstack-neutron18:43
*** med_ is now known as Guest4087618:44
*** obondarev has joined #openstack-neutron18:44
*** prateek has quit IRC18:46
*** prateek has joined #openstack-neutron18:46
*** jlibosva has quit IRC18:46
*** sdake has joined #openstack-neutron18:49
*** eezhova has quit IRC18:49
*** devvesa_ has quit IRC18:49
*** abhiraut has joined #openstack-neutron18:49
*** slaweq_ has quit IRC18:50
*** thorst_ has quit IRC18:50
*** irenab_ has joined #openstack-neutron18:51
openstackgerritManjeet Singh Bhatia proposed openstack/neutron: Add OVO for FloatingIPDNS  https://review.openstack.org/36974418:51
openstackgerritManjeet Singh Bhatia proposed openstack/neutron: Add OVO for dns Objects  https://review.openstack.org/33469518:51
openstackgerritManjeet Singh Bhatia proposed openstack/neutron: Introduce ovo objects for ports  https://review.openstack.org/35136818:51
*** irenab has quit IRC18:52
*** irenab_ is now known as irenab18:52
*** iyamahat has joined #openstack-neutron18:53
openstackgerritManjeet Singh Bhatia proposed openstack/neutron: Introduce ovo objects for ports  https://review.openstack.org/35136818:53
*** banix has joined #openstack-neutron18:55
*** mkolesni_ has joined #openstack-neutron18:55
*** thorst_ has joined #openstack-neutron18:56
*** dane_leblanc__ has quit IRC18:57
*** ankur-gupta-f has joined #openstack-neutron18:59
*** prateek_ has joined #openstack-neutron19:00
*** stevemar____ has quit IRC19:02
*** prateek has quit IRC19:03
*** tidwellr has quit IRC19:04
*** tidwellr has joined #openstack-neutron19:04
*** john-davidge has joined #openstack-neutron19:04
*** haleyb_ has quit IRC19:05
openstackgerritShashank Kumar Shankar proposed openstack/neutron: [WIP] Integration of Port Binding Level OVO.  https://review.openstack.org/37441819:06
openstackgerritSwaminathan Vasudevan proposed openstack/neutron: DVR: Create router to fip namespace connection based on gateway state  https://review.openstack.org/28375719:07
openstackgerritSwaminathan Vasudevan proposed openstack/neutron: DVR: Add static routes to FIP namespace  https://review.openstack.org/30806819:07
openstackgerritSwaminathan Vasudevan proposed openstack/neutron: DVR: Add forwarding routes based on address_scopes  https://review.openstack.org/35506219:07
*** flaviof has quit IRC19:10
*** sdake has quit IRC19:10
*** iyamahat_ has joined #openstack-neutron19:11
*** mkolesni_ has quit IRC19:11
*** haplo37- has quit IRC19:11
*** john-dav_ has joined #openstack-neutron19:11
*** john-davidge has quit IRC19:11
*** abhiraut has quit IRC19:11
*** johndperkins has quit IRC19:11
*** abhiraut has joined #openstack-neutron19:11
*** john-dav_ has quit IRC19:11
*** johndperkins has joined #openstack-neutron19:11
*** srobert has joined #openstack-neutron19:11
*** haplo37- has joined #openstack-neutron19:12
*** iyamahat has quit IRC19:12
*** Guest76517 has quit IRC19:12
*** zzzeek has quit IRC19:12
*** bsv has joined #openstack-neutron19:12
*** zzzeek has joined #openstack-neutron19:12
*** bsv is now known as Guest8010919:13
*** salv-orlando has joined #openstack-neutron19:13
*** flaviof has joined #openstack-neutron19:14
*** patrickeast has quit IRC19:14
*** patrickeast_ is now known as patrickeast19:14
*** Esha has quit IRC19:16
*** iyamahat_ has quit IRC19:18
*** salv-orlando has quit IRC19:18
openstackgerritboden proposed openstack/neutron-lib: Improve callback notification interface  https://review.openstack.org/34655419:21
openstackgerritJohn Perkins proposed openstack/neutron: Agent common config  https://review.openstack.org/34304519:23
*** ihrachys has joined #openstack-neutron19:24
*** pdr- has quit IRC19:25
*** hoangcx2 has quit IRC19:26
*** logan- has quit IRC19:26
*** sindhu has quit IRC19:26
*** serverascode has quit IRC19:27
*** briancurtin has quit IRC19:27
*** stevemar has quit IRC19:27
*** kuromagi has quit IRC19:27
*** kuromagi has joined #openstack-neutron19:27
*** mdurrant has joined #openstack-neutron19:27
*** f0o has quit IRC19:27
*** leifz has quit IRC19:27
*** clarkb has quit IRC19:27
*** mlavalle1 has quit IRC19:27
*** wolverineav has quit IRC19:27
*** sindhu has joined #openstack-neutron19:27
*** jlvillal has quit IRC19:27
*** sindhu has quit IRC19:27
*** sindhu has joined #openstack-neutron19:27
*** mlavalle1 has joined #openstack-neutron19:27
*** Guest40876 has quit IRC19:27
*** dsneddon has quit IRC19:27
*** prateek_ has quit IRC19:27
*** BlackDex has quit IRC19:27
*** xgerman has quit IRC19:27
*** mrhillsman has quit IRC19:27
*** leifz has joined #openstack-neutron19:27
*** johndperkins has quit IRC19:27
*** dsneddon has joined #openstack-neutron19:27
*** slaweq_ has joined #openstack-neutron19:27
*** mdurrant_ has quit IRC19:27
*** serverascode has joined #openstack-neutron19:27
*** wolverineav has joined #openstack-neutron19:28
*** lucasagomes is now known as lucas-afk19:28
*** clarkb has joined #openstack-neutron19:28
*** rkukura has quit IRC19:29
*** mrhillsman has joined #openstack-neutron19:29
*** f0o has joined #openstack-neutron19:30
*** patrickeast_ has joined #openstack-neutron19:30
*** trevormc has quit IRC19:30
*** stevemar has joined #openstack-neutron19:30
*** jroll has quit IRC19:31
openstackgerritMerged openstack/neutron-fwaas: Fix import path for l3_config  https://review.openstack.org/37767419:31
*** jlvillal has joined #openstack-neutron19:32
*** mdurrant_ has joined #openstack-neutron19:32
*** pdr has joined #openstack-neutron19:32
*** pdr is now known as Guest3949119:32
*** patrickeast__ has joined #openstack-neutron19:32
*** eliqiao has quit IRC19:33
*** sgordon has quit IRC19:34
*** sambetts|afk has quit IRC19:34
*** ajo has quit IRC19:34
*** logan- has joined #openstack-neutron19:34
*** sinh has quit IRC19:34
*** aignatov has quit IRC19:34
*** mdbooth has quit IRC19:34
*** ianw has quit IRC19:35
*** freerunner has quit IRC19:35
*** mkoderer__ has quit IRC19:35
*** Lehtu has quit IRC19:35
*** tonyb has quit IRC19:35
*** jamespd_ has quit IRC19:35
*** adreznec has quit IRC19:35
*** neiljerram has quit IRC19:35
*** obondarev_ has joined #openstack-neutron19:35
*** fpan has quit IRC19:35
*** rdo_ has quit IRC19:35
*** sgran has quit IRC19:35
*** flaviof has quit IRC19:35
*** patrickeast has quit IRC19:35
*** leifz has quit IRC19:35
*** stevebaker has quit IRC19:35
*** kuromagi has quit IRC19:35
*** viniciusarcanjo_ has quit IRC19:35
*** leifz has joined #openstack-neutron19:35
*** patrickeast__ is now known as patrickeast19:35
ihrachyskevinbenton: how come do we even end up constructing that '/opt/stack/data/neutron/external/pids/ea141299-ce07-4ff7-9a03-7a1b7a75a371.pid' pid file name?19:35
*** mrhillsman has quit IRC19:35
*** dsneddon has quit IRC19:35
*** serverascode has quit IRC19:35
*** sindhu has quit IRC19:35
*** rajinir has quit IRC19:35
*** dkehn_ has quit IRC19:35
*** rha has quit IRC19:35
*** prometheanfire has quit IRC19:35
*** ankur-gupta-f has quit IRC19:36
*** mdbooth_ has joined #openstack-neutron19:36
*** haleyb_ has joined #openstack-neutron19:36
*** jamespd has joined #openstack-neutron19:36
ihrachyskevinbenton: it does not seem like belonging to dnsmasq process manager19:36
*** mdurrant has quit IRC19:36
*** obondarev has quit IRC19:36
*** mtreinish has quit IRC19:36
*** kbringard has quit IRC19:36
*** vkmc has quit IRC19:36
*** roaet has quit IRC19:36
*** bigjools has quit IRC19:36
*** viniciusarcanjo_ has joined #openstack-neutron19:36
*** obondarev_ is now known as obondarev19:36
*** gopenshaw_ has quit IRC19:36
*** stevemar has quit IRC19:36
*** patrickeast_ has quit IRC19:36
*** zzzeek has quit IRC19:36
*** Guest80109 has quit IRC19:36
*** tonyb_ has joined #openstack-neutron19:36
*** gopenshaw has joined #openstack-neutron19:36
*** kuromagi has joined #openstack-neutron19:36
*** sgran has joined #openstack-neutron19:36
*** eliqiao has joined #openstack-neutron19:36
*** mtreinish has joined #openstack-neutron19:36
*** adreznec has joined #openstack-neutron19:36
*** stevemar has joined #openstack-neutron19:36
*** neil_ has joined #openstack-neutron19:36
*** ajo has joined #openstack-neutron19:36
*** ianw has joined #openstack-neutron19:36
*** kbringard has joined #openstack-neutron19:37
*** freerunner has joined #openstack-neutron19:37
*** dkehn_ has joined #openstack-neutron19:37
*** vkmc has joined #openstack-neutron19:37
*** sambetts|afk has joined #openstack-neutron19:37
openstackgerritAnindita Das proposed openstack/neutron: Relocate RouterL3AgentBinding DB model  https://review.openstack.org/35571919:37
openstackgerritAnindita Das proposed openstack/neutron: OVO for RouterL3AgentBinding  https://review.openstack.org/36090819:37
*** sgordon has joined #openstack-neutron19:37
*** jroll has joined #openstack-neutron19:37
*** jroll has quit IRC19:37
*** jroll has joined #openstack-neutron19:37
*** krtaylor has joined #openstack-neutron19:37
*** aignatov has joined #openstack-neutron19:38
*** mkoderer__ has joined #openstack-neutron19:39
*** tidwellr has quit IRC19:39
*** stevebaker has joined #openstack-neutron19:39
*** bigjools has joined #openstack-neutron19:39
*** bigjools has joined #openstack-neutron19:39
*** roaet has joined #openstack-neutron19:39
*** lezbar has quit IRC19:40
*** rha has joined #openstack-neutron19:40
*** tidwellr has joined #openstack-neutron19:40
*** Lehtu has joined #openstack-neutron19:40
*** lezbar has joined #openstack-neutron19:40
*** fpan has joined #openstack-neutron19:41
*** johndperkins has joined #openstack-neutron19:41
ihrachyskevinbenton: ok I think I understand19:41
ihrachyskevinbenton: 'Unable to access /opt/stack/data/neutron/external/pids/ea141299-ce07-4ff7-9a03-7a1b7a75a371.pid' comes from metadata disablement, not from dnsmasq19:42
*** prometheanfire has joined #openstack-neutron19:42
*** mrhillsman has joined #openstack-neutron19:42
*** med_ has joined #openstack-neutron19:43
*** med_ is now known as Guest4578919:43
ihrachyskevinbenton: also note that the next restart for the dnsmasq process correctly extracts the PID from the file: http://logs.openstack.org/26/377626/1/check/gate-tempest-dsvm-neutron-full-ubuntu-xenial/b6953d4/logs/screen-q-dhcp.txt.gz#_2016-09-27_12_21_24_878 (you can compare it to PID of dnsmasq in syslog: http://logs.openstack.org/26/377626/1/check/gate-tempest-dsvm-neutron-full-ubuntu-xenial/b6953d4/logs/syslog.txt.gz#19:43
ihrachys_Sep_27_12_21_24)19:43
ihrachysso the process manager works fine.19:43
ihrachysonce we kill -9 the process, we remove the PID file, so it's expected that after that point there is no pid file for dnsmasq19:44
*** rvba` has quit IRC19:44
*** kfox1111 has quit IRC19:44
*** leifz has quit IRC19:44
*** kuromagi has quit IRC19:44
*** krtaylor has quit IRC19:44
*** viniciusarcanjo_ has quit IRC19:44
*** kuromagi has joined #openstack-neutron19:44
*** stevebaker has quit IRC19:44
*** jroll has quit IRC19:44
*** kbringard has quit IRC19:44
*** stevemar has quit IRC19:44
*** adreznec has quit IRC19:44
*** wolverineav has quit IRC19:44
*** leifz has joined #openstack-neutron19:44
*** rha has quit IRC19:44
*** krtaylor has joined #openstack-neutron19:44
*** wolverineav has joined #openstack-neutron19:44
*** haplo37- has quit IRC19:44
*** ajo has quit IRC19:45
*** jamespd has quit IRC19:45
*** f0o has quit IRC19:45
*** mdavidson has quit IRC19:45
*** mdbooth has joined #openstack-neutron19:45
*** mdbooth_ has quit IRC19:45
*** salv-orlando has joined #openstack-neutron19:45
*** tonytan_brb has quit IRC19:45
*** hoangcx has joined #openstack-neutron19:45
*** vkmc has quit IRC19:45
*** iyamahat_ has joined #openstack-neutron19:45
*** jheroux has joined #openstack-neutron19:45
*** gopenshaw has quit IRC19:45
*** gopenshaw has joined #openstack-neutron19:45
*** tidwellr1 has joined #openstack-neutron19:45
*** tidwellr has quit IRC19:45
*** mkoderer__ has quit IRC19:45
*** neil_ has quit IRC19:45
*** jjheroux has quit IRC19:45
*** jamespd_ has joined #openstack-neutron19:45
*** kbringard1 has joined #openstack-neutron19:46
*** adreznec_ has joined #openstack-neutron19:46
*** mkoderer__ has joined #openstack-neutron19:46
*** tidwellr1 has quit IRC19:46
*** tidwellr1 has joined #openstack-neutron19:46
*** adreznec_ is now known as adreznec19:46
*** neil__ has joined #openstack-neutron19:46
*** viniciusarcanjo_ has joined #openstack-neutron19:46
*** rha has joined #openstack-neutron19:46
*** stevebaker has joined #openstack-neutron19:46
*** vkmc has joined #openstack-neutron19:46
*** jroll has joined #openstack-neutron19:46
*** jroll has quit IRC19:46
*** jroll has joined #openstack-neutron19:46
*** prateek has joined #openstack-neutron19:46
*** dsneddon has joined #openstack-neutron19:47
*** bsv_ has joined #openstack-neutron19:47
*** ajo has joined #openstack-neutron19:47
*** sinh has joined #openstack-neutron19:47
*** f0o has joined #openstack-neutron19:47
*** rdo has joined #openstack-neutron19:47
*** haplo37- has joined #openstack-neutron19:47
*** rvba has joined #openstack-neutron19:47
*** rvba has joined #openstack-neutron19:47
*** patrickeast has quit IRC19:48
*** rkukura has joined #openstack-neutron19:48
*** krtaylor has left #openstack-neutron19:48
*** vhoward has quit IRC19:48
*** vhoward has joined #openstack-neutron19:49
*** kfox1111 has joined #openstack-neutron19:49
*** patrickeast has joined #openstack-neutron19:49
*** BlackDex has joined #openstack-neutron19:49
*** haleyb_ has quit IRC19:51
*** sindhu has joined #openstack-neutron19:51
*** flaviof has joined #openstack-neutron19:51
*** hynekm has quit IRC19:52
*** zzzeek has joined #openstack-neutron19:52
*** stevemar has joined #openstack-neutron19:52
openstackgerritNakul Dahiwade proposed openstack/neutron: OVO for NetworkDhcpAgentBinding  https://review.openstack.org/37045219:55
*** rajinir has joined #openstack-neutron19:56
*** sindhude__ has joined #openstack-neutron19:56
*** briancurtin has joined #openstack-neutron19:57
*** Esha has joined #openstack-neutron20:00
*** xgerman has joined #openstack-neutron20:01
*** serverascode has joined #openstack-neutron20:02
*** iranzo has quit IRC20:03
*** mhickey has joined #openstack-neutron20:10
*** patrickeast_ has joined #openstack-neutron20:13
*** sdake has joined #openstack-neutron20:13
openstackgerritSwaminathan Vasudevan proposed openstack/neutron: (WIP)DVR: Fix IPtables driver for metering with DVR routers  https://review.openstack.org/37710820:14
*** claudiub has quit IRC20:14
*** sindhude__ has quit IRC20:14
*** claudiub has joined #openstack-neutron20:14
*** julim has joined #openstack-neutron20:15
*** julim has quit IRC20:16
*** Esha has quit IRC20:18
*** obondarev has quit IRC20:20
*** patrickeast__ has joined #openstack-neutron20:21
openstackgerritIhar Hrachyshka proposed openstack/neutron: Introduce ovo objects for networks  https://review.openstack.org/26965820:21
*** iyamahat_ has quit IRC20:21
*** tonytan4ever has joined #openstack-neutron20:21
*** logan- has quit IRC20:21
*** adziarkach__ has joined #openstack-neutron20:21
*** jschwarz has quit IRC20:21
*** mkoderer___ has joined #openstack-neutron20:22
*** ujjain- has quit IRC20:22
*** j_king has quit IRC20:22
*** rvba` has joined #openstack-neutron20:22
*** frickler has quit IRC20:22
*** sai has quit IRC20:22
*** leifmadsen has quit IRC20:22
*** xgerman has quit IRC20:22
*** rajinir has quit IRC20:22
*** flaviof has quit IRC20:22
*** sindhu has quit IRC20:22
*** ankur-gupta-f1 has joined #openstack-neutron20:23
*** rvba has quit IRC20:23
*** wolverineav has quit IRC20:23
*** sambetts|afk has quit IRC20:23
*** martink2 has quit IRC20:23
*** kev0 has joined #openstack-neutron20:23
*** kuromagi has quit IRC20:23
*** kuromagi^ has joined #openstack-neutron20:23
*** wolverineav has joined #openstack-neutron20:23
*** sinh has quit IRC20:23
*** ajo has quit IRC20:23
*** dsneddon has quit IRC20:23
*** leifz has quit IRC20:23
*** dkehn_ has quit IRC20:23
*** kevo has quit IRC20:23
*** adziarkach_ has quit IRC20:23
*** dkehn_ has joined #openstack-neutron20:23
*** kbringard has joined #openstack-neutron20:23
*** mkolesni_ has joined #openstack-neutron20:23
*** zzzeek has quit IRC20:23
*** jroll has quit IRC20:23
*** vkmc has quit IRC20:23
*** mdbooth has quit IRC20:23
*** asingh_ has quit IRC20:23
*** j_king has joined #openstack-neutron20:23
*** sdake_ has joined #openstack-neutron20:23
*** ajo has joined #openstack-neutron20:23
*** jroll has joined #openstack-neutron20:23
*** jroll has quit IRC20:23
*** jroll has joined #openstack-neutron20:23
*** prateek has quit IRC20:23
*** patrickeast has quit IRC20:23
*** adreznec has quit IRC20:24
*** kbringard1 has quit IRC20:24
*** mkoderer__ has quit IRC20:24
*** rdo has quit IRC20:24
*** bsv_ has quit IRC20:24
*** stevebaker has quit IRC20:24
*** tidwellr1 has quit IRC20:24
*** gopenshaw has quit IRC20:24
*** leifz has joined #openstack-neutron20:24
*** sdake has quit IRC20:24
*** rdo has joined #openstack-neutron20:24
*** patrickeast__ is now known as patrickeast20:24
*** stevebak` has joined #openstack-neutron20:24
*** sinh has joined #openstack-neutron20:24
*** vkmc has joined #openstack-neutron20:24
*** sambetts|afk has joined #openstack-neutron20:24
*** gouthamr_ has quit IRC20:24
*** tbachman has quit IRC20:24
*** sai has joined #openstack-neutron20:24
*** adreznec has joined #openstack-neutron20:24
*** gouthamr has joined #openstack-neutron20:25
*** srobert has quit IRC20:25
*** leifmadsen has joined #openstack-neutron20:25
*** dsneddon has joined #openstack-neutron20:25
*** irenab has quit IRC20:26
*** gopenshaw has joined #openstack-neutron20:26
*** logan- has joined #openstack-neutron20:26
*** jschwarz has joined #openstack-neutron20:26
*** ujjain has joined #openstack-neutron20:27
*** ujjain has quit IRC20:27
*** ujjain has joined #openstack-neutron20:27
*** zzzeek has joined #openstack-neutron20:27
*** mdbooth has joined #openstack-neutron20:29
*** f0o|away has joined #openstack-neutron20:31
*** kevo has joined #openstack-neutron20:31
openstackgerritDarek Smigiel proposed openstack/neutron: Cleanup of SecurityGroup classes  https://review.openstack.org/36319820:31
*** jprovazn_ has quit IRC20:32
*** gopenshaw has quit IRC20:32
*** leifz has quit IRC20:32
*** kbringard has quit IRC20:32
*** f0o has quit IRC20:32
*** jschwarz has quit IRC20:32
*** sambetts|afk has quit IRC20:32
*** ajo has quit IRC20:32
*** serverascode has quit IRC20:32
*** kuromagi^ has quit IRC20:32
*** kuromagi has joined #openstack-neutron20:32
*** xgerman has joined #openstack-neutron20:32
*** tidwellr has joined #openstack-neutron20:32
*** adreznec has quit IRC20:32
*** sai has quit IRC20:32
*** kev0 has quit IRC20:32
*** briancurtin has quit IRC20:32
*** roaet has quit IRC20:32
*** mkolesni_ has quit IRC20:32
*** f0o|away is now known as f0o20:32
*** xgerman has quit IRC20:32
*** xgerman has joined #openstack-neutron20:32
*** tidwellr has quit IRC20:32
*** tidwellr has joined #openstack-neutron20:32
*** sambetts_ has joined #openstack-neutron20:32
*** jamespd_ has quit IRC20:33
*** mkolesni has joined #openstack-neutron20:33
*** jamespd has joined #openstack-neutron20:33
*** leifmadsen has quit IRC20:33
*** vkmc has quit IRC20:33
*** rdo has quit IRC20:33
*** jroll has quit IRC20:33
*** viniciusarcanjo_ has quit IRC20:33
*** jschwarz has joined #openstack-neutron20:33
*** viniciusarcanjo_ has joined #openstack-neutron20:33
*** rdo has joined #openstack-neutron20:33
*** leifmadsen_ has joined #openstack-neutron20:33
*** ajo has joined #openstack-neutron20:33
*** adreznec has joined #openstack-neutron20:33
*** sai has joined #openstack-neutron20:33
*** leifz has joined #openstack-neutron20:34
*** gopenshaw has joined #openstack-neutron20:34
*** jroll has joined #openstack-neutron20:34
*** jroll has quit IRC20:34
*** jroll has joined #openstack-neutron20:34
*** roaet has joined #openstack-neutron20:34
*** kbringard has joined #openstack-neutron20:34
*** vkmc has joined #openstack-neutron20:34
openstackgerritMohit Malik proposed openstack/neutron: Add OVO for AutoAllocatedTopology  https://review.openstack.org/35750620:35
*** sc68cal_ is now known as sc68cal20:35
*** bsv has joined #openstack-neutron20:35
*** bsv is now known as Guest6628220:36
*** frickler has joined #openstack-neutron20:37
*** vhoward has quit IRC20:38
*** jklare has quit IRC20:38
*** asingh_ has joined #openstack-neutron20:39
*** sindhu has joined #openstack-neutron20:40
*** yfried has joined #openstack-neutron20:40
*** quade1 has quit IRC20:40
*** shihanzhang has quit IRC20:42
*** jklare has joined #openstack-neutron20:42
*** shihanzhang has joined #openstack-neutron20:42
*** adziarkach_ has joined #openstack-neutron20:43
*** rajinir has joined #openstack-neutron20:43
*** serverascode has joined #openstack-neutron20:43
*** mkolesni_ has joined #openstack-neutron20:44
*** mdurrant__ has joined #openstack-neutron20:44
*** adreznec_ has joined #openstack-neutron20:44
*** patrickeast_ has quit IRC20:44
*** Anticimex has quit IRC20:44
*** todin has quit IRC20:44
*** ajo_ has joined #openstack-neutron20:44
*** jamespd_ has joined #openstack-neutron20:44
*** todin has joined #openstack-neutron20:44
*** roaet_ has joined #openstack-neutron20:44
*** ajo has quit IRC20:45
*** jamespd has quit IRC20:45
*** mkolesni has quit IRC20:45
*** gopenshaw_ has joined #openstack-neutron20:45
*** kuromagi^ has joined #openstack-neutron20:45
*** leifmadsen has joined #openstack-neutron20:45
*** ankur-gupta-f1 has quit IRC20:46
*** roaet has quit IRC20:46
*** gopenshaw has quit IRC20:46
*** adreznec has quit IRC20:46
*** leifz has quit IRC20:46
*** Guest66282 has quit IRC20:46
*** tidwellr has quit IRC20:46
*** xgerman has quit IRC20:46
*** dsneddon has quit IRC20:46
*** dkehn_ has quit IRC20:46
*** sdake_ has quit IRC20:46
*** wolverineav has quit IRC20:46
*** jamielennox has quit IRC20:46
*** sindhu has quit IRC20:46
*** vkmc has quit IRC20:46
*** jroll has quit IRC20:46
*** leifmadsen_ has quit IRC20:46
*** kuromagi has quit IRC20:46
*** rha has quit IRC20:46
*** Anticime1 has joined #openstack-neutron20:46
*** leifz has joined #openstack-neutron20:46
*** bsv_ has joined #openstack-neutron20:46
*** jroll has joined #openstack-neutron20:46
*** wolverineav has joined #openstack-neutron20:46
*** dkehn_ has joined #openstack-neutron20:46
*** adreznec_ is now known as adreznec20:46
*** krtaylor has joined #openstack-neutron20:46
*** jroll is now known as Guest4994520:46
*** adziarkach__ has quit IRC20:47
*** mdurrant_ has quit IRC20:47
*** briancurtin has joined #openstack-neutron20:47
*** sdake has joined #openstack-neutron20:47
*** Guest49945 is now known as jroll|dupe20:47
*** jroll|dupe has quit IRC20:47
*** jroll|dupe has joined #openstack-neutron20:47
*** rha has joined #openstack-neutron20:47
*** rha has quit IRC20:47
*** rha has joined #openstack-neutron20:47
*** dsneddon has joined #openstack-neutron20:48
*** ankur-gupta-f1 has joined #openstack-neutron20:48
*** quade1 has joined #openstack-neutron20:48
*** mkolesni_ has quit IRC20:49
*** vkmc has joined #openstack-neutron20:50
*** dane_leblanc__ has joined #openstack-neutron20:50
*** jamielennox has joined #openstack-neutron20:51
openstackgerritArmando Migliaccio proposed openstack/neutron: fullstack: VLAN aware VMs test  https://review.openstack.org/36900120:52
*** tidwellr has joined #openstack-neutron20:53
*** kev0 has joined #openstack-neutron20:53
*** kevo has quit IRC20:54
*** jroll|dupe is now known as jroll20:54
*** martink2 has joined #openstack-neutron20:55
*** flaviof has joined #openstack-neutron20:56
*** sindhu has joined #openstack-neutron20:56
*** abhiraut has quit IRC20:56
*** abhiraut has joined #openstack-neutron20:56
*** banix has quit IRC20:56
amullerarmax: re: https://review.openstack.org/#/c/369001/16/neutron/tests/fullstack/test_trunk.py@9820:57
armaxamuller: aye20:57
armaxI replied on the patch, did you see my last comment?20:57
amullerarmax: does vlan aware vms require disabling arp spoofing or what's the story there?20:57
amullerarmax: yes, we've moved on =p20:57
armaxamuller: ah ok :)20:57
armaxamuller: you want the fully story or the elevator pitch?20:57
amullerarmax: short version is fine20:58
amullerarmax: just wanted to make sure it makes sense to you20:58
armaxit does20:58
amullerok20:58
amulleris this a test only thing or prod too?20:58
armaxthe short story is that right now20:58
armaxwithout the guest being involved or the way kuba provisioned the subports20:59
*** patrickeast_ has joined #openstack-neutron20:59
armaxthe ICMP responses from the subports come with the sender being the parent MAC address20:59
armaxhence ARP spoofing prevention rules doing their job21:00
*** xgerman has joined #openstack-neutron21:00
armaxkuba was going to braindump this so that we can document this more extensively in the docs21:01
*** slaweq_ has quit IRC21:01
armaxalternatively we could create the subports with the same MAC of the parent and things should work fine, he said he was going to try it out locally21:01
armaxbut I haven’t heard back from him since21:01
armaxthe last time we spoke21:01
amullerin an actual linux based distro, when you add vlan interfaces on a nic does it copy the MAC?21:02
armaxamuller: I think you gotta give it the MAC, but i am not 100% sure21:03
amullerarmax: I just did a local test, seems it copies the MAC21:03
amullerarmax: I think I'm going to have to insist to create the subports with the parent port MAC...21:03
armaxwe thought about it21:04
armaxbut there may be a bug lurking in ovs-firewall21:04
armaxhttps://bugs.launchpad.net/neutron/+bug/162601021:04
openstackLaunchpad bug 1626010 in neutron "Connectivity problem on trunk parent with MAC reuse and openvswitch firewall driver" [High,Confirmed] - Assigned to Jakub Libosvar (libosvar)21:04
amullerright now it's using the noop or iptables firewall21:04
*** ijw has joined #openstack-neutron21:04
armaxthough right now the tests do not exercise firewall21:05
amullerthe test21:05
armaxso it should be fine21:05
amullerright21:05
armaxusing the same MAC would be fine, unless I am forgetting something21:05
armaxin fact that’s one of the suggestions I made in a previous PS21:05
amullerarmax: in our API, when you create a subport, does it get the same MAC as the parent port, or a new unique MAC?21:05
armaxyou create a regular port, then you take the UUID and use it to add a subport to a trunk21:06
amullerunique MAC I see21:06
amulleryeah21:06
amullerhrmm21:06
armaxso it’s up to the user21:06
armaxhe/she can use the same MAC of the parent port if desired21:06
armaxthing is, it depends on the use case21:06
armaxMACs may or may match21:07
amullerare you referring to containers in vms vs. vnfs?21:07
amullerI guess with containers in vms you want unique macs?21:07
armaxI was not referring to anything in particular21:08
*** woodburn1 has quit IRC21:08
*** mickeys_ has quit IRC21:08
armaxI am simply saying that the system being Neutron may be not the best place to decide what MAC a subport might need to have21:08
*** mickeys has joined #openstack-neutron21:08
amullerarmax: do we have strong use cases in mind for both cases?21:08
amulleror did we just not want to make a decision?21:08
armaxI think having this flexible keeps our options open21:09
*** mhickey has quit IRC21:09
*** g3ek has quit IRC21:10
armaxamuller: btw I think I understand why that trace is showing up21:13
amullerarmax: I'm still not clear why responses are coming from parent ports =/21:13
armaxthey are not21:13
armaxunless you mean the why the sender MAC is the parent's21:13
*** g3ek has joined #openstack-neutron21:13
amuller"the ICMP responses from the subports come with the sender being the parent MAC address"21:13
amullertrying to parse that21:14
armaxI suspect that has to do with how the fakevm works, kuba would be definitely in a better position to shed light on this21:15
*** eezhova has joined #openstack-neutron21:15
armaxand satisfy your thirst of knowledge21:15
*** patrickeast has quit IRC21:15
amullerarmax: OK I'll ask on Gerrit21:16
*** patrickeast_ is now known as patrickeast21:16
armaxyeah, it’s probably best to make sure we capture this with him21:17
amullerack21:18
armaxamuller: thanks for looking into this21:19
amullershould have reviewed this a while ago21:19
armaxwell21:21
armaxbetter late than never21:21
armaxI hope there’s nothing fundamentally wrong21:21
armaxI don’t think anyway21:22
*** gvrangan has joined #openstack-neutron21:22
*** sdake has quit IRC21:22
*** woodburn has joined #openstack-neutron21:23
dasmFrom https://github.com/openstack/neutron21:23
dasm   5514ba5..c9a5400  stable/newton -> origin/stable/newton21:23
dasmnewton oficially released?21:23
armaxdasm: rc1 has21:23
*** thorst_ has quit IRC21:23
dasmarmax: rc2 still pending?21:24
armaxdasm: it’s in the oven21:24
dasmarmax: ack. thanks21:24
*** thorst_ has joined #openstack-neutron21:24
*** padkrish has joined #openstack-neutron21:24
armaxhttps://review.openstack.org/#/c/376998/21:24
*** rawlin has joined #openstack-neutron21:26
dasmarmax: thanks21:26
dasmall bugs targeted for rc2 fixed: https://launchpad.net/neutron/+milestone/newton-rc221:28
dasm\o/21:29
*** thorst_ has quit IRC21:29
armaxdasm: the ones we could catch, yes :)21:30
dasmhehe21:30
*** yfried has quit IRC21:32
*** sterdnotshaken has joined #openstack-neutron21:33
*** yfried has joined #openstack-neutron21:33
*** gouthamr has quit IRC21:33
sterdnotshakenAnyone have any help you could give with this error we're getting in Horizon: "Error: Unable to connect to Neutron"21:34
dasmsterdnotshaken: you need to include more details: env, version of openstack, what's happening, did you check logs, etc.21:35
dasmsterdnotshaken: i didn't see this kind of message21:35
*** jheroux has quit IRC21:36
*** rtheis has quit IRC21:36
sterdnotshakenSorry… running Mitaka. I did check the log's and I can't find anything that points me in the correct direction. I can ssh to Horizon and telnet via tcp/9696 to the Neutron controller with no issues, so firewall issues seem to be a non-issue.21:36
dasmarmax: question about release. why neutron is tagged with c9a54002f2fdbd86e03fb266361ff482ea1c6c9f and not with latest change: c64b6295d9120372ab0c600c3cb087b6f2cbfc3c ?21:37
sterdnotshakenThe error message happen's when I log into Horizon and click on compute/instances…21:37
dasmarmax: nvm. i see why. c9 is latest one.21:38
armaxdasm:  c9 is the merge commit21:38
armaxon the stable branch21:38
armaxand that’s where we cut RC2 from21:39
dasmarmax: yeah. didn't notice master vs stable/newton.21:39
dasmsterdnotshaken: did you check apache logs?21:39
dasmarmax: ok. now we have official release :D21:39
dasm21:38:35 openstackgerrit | Merged openstack/releases: Release Neutron Newton RC2  https://review.openstack.org/37699821:39
dasm:D21:39
sterdnotshakenchecking…21:40
openstackgerritJames Anziano proposed openstack/neutron: Add api tempest tests for segments  https://review.openstack.org/35311521:43
*** kbringard has quit IRC21:44
*** tbachman has joined #openstack-neutron21:46
openstackgerritAradhana Singh proposed openstack/neutron: Refactoring config options for l3 ha agent opts  https://review.openstack.org/34624521:46
*** haleyb_ has joined #openstack-neutron21:47
openstackgerritAradhana Singh proposed openstack/neutron: Refactoring config options for l3 ha agent opts  https://review.openstack.org/34624521:48
*** yfried has quit IRC21:50
*** ijw has quit IRC21:50
*** haleyb_ has quit IRC21:52
*** iyamahat has joined #openstack-neutron21:52
*** ranjithd has joined #openstack-neutron21:53
*** ihrachys has quit IRC21:54
amullerarmax: ok, finished my review, gotta run now21:55
amullerarmax: nothing major overall it's in great shape and a pretty impressive effort on Kuba's part IMO21:55
*** kbringard has joined #openstack-neutron21:55
amullerit also would have been a nightmare to test without fullstack21:55
*** tonyb_ is now known as tonyb21:56
*** amuller has quit IRC21:57
*** jamesdenton has quit IRC21:58
*** nherciu_ has quit IRC21:58
*** ranjithd has quit IRC21:59
*** ranjithd has joined #openstack-neutron21:59
openstackgerritSwaminathan Vasudevan proposed openstack/neutron: (WIP)DVR: Fix IPtables driver for metering with DVR routers  https://review.openstack.org/37710822:02
*** sdague has quit IRC22:02
*** njohnston_ has joined #openstack-neutron22:06
*** janzian has quit IRC22:10
*** ijw has joined #openstack-neutron22:10
*** boden has quit IRC22:12
*** mriedem has quit IRC22:12
*** haplo37- has quit IRC22:12
*** haplo37- has joined #openstack-neutron22:14
*** salv-orlando has quit IRC22:15
*** ijw has quit IRC22:16
*** zkassab_ has quit IRC22:18
*** rawlin has quit IRC22:20
*** gvrangan has quit IRC22:20
*** ijw has joined #openstack-neutron22:21
*** Guest45789 is now known as med_22:22
*** med_ has quit IRC22:23
*** med_ has joined #openstack-neutron22:23
*** salv-orlando has joined #openstack-neutron22:23
*** s3wong has joined #openstack-neutron22:24
*** njohnston_ has quit IRC22:25
*** njohnston_ has joined #openstack-neutron22:26
*** ijw has quit IRC22:27
*** ranjithd has quit IRC22:27
*** baoli has quit IRC22:31
*** eezhova has quit IRC22:32
*** njohnston_ is now known as njohnston__22:33
*** SKipp_ has joined #openstack-neutron22:33
openstackgerritOpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements  https://review.openstack.org/37746922:34
openstackgerritOpenStack Proposal Bot proposed openstack/neutron-fwaas: Updated from global requirements  https://review.openstack.org/37747122:34
sterdnotshakenSo with Provider networking using Linux bridge, does every VM have it's own linux bridge, or do multiple VM's use the same Linux Bridge (assuming we add the VM's to the same network in Openstack) and Security Groups are applied for each VM on that single Linux bridge?22:35
*** vishwanathj has quit IRC22:36
*** ijw has joined #openstack-neutron22:36
*** ivar-laz_ has joined #openstack-neutron22:38
openstackgerritTrevor McCasland proposed openstack/neutron-lib: api-ref: Update local_id configuration  https://review.openstack.org/37806822:41
*** haleyb_ has joined #openstack-neutron22:41
*** ankur-gupta-f1 has left #openstack-neutron22:41
*** ivar-lazzaro has quit IRC22:42
*** tflynn_ has joined #openstack-neutron22:42
*** iyamahat has quit IRC22:43
*** amotoki has quit IRC22:43
*** tflynn has quit IRC22:45
*** salv-orlando has quit IRC22:46
*** frontrunner2 has quit IRC22:47
*** tflynn_ has quit IRC22:47
Sam-I-Amsterdnotshaken: vms on the same network use the same bridge22:48
Sam-I-Amiptables rules are applied on the bridge22:48
*** alex_xu has quit IRC22:50
*** haleyb_ has quit IRC22:52
*** alex_xu has joined #openstack-neutron22:52
*** jamesdenton has joined #openstack-neutron22:53
sterdnotshakenSam-I-Am: Thanks!!!22:53
*** jamesden_ has joined #openstack-neutron22:53
*** mmalik4 has quit IRC22:54
*** alraddarla_ has quit IRC22:55
*** sdake has joined #openstack-neutron22:56
*** lnicolas has joined #openstack-neutron22:56
*** trozet has joined #openstack-neutron22:57
*** jamesdenton has quit IRC22:57
*** ijw has quit IRC22:57
*** sdake_ has joined #openstack-neutron22:58
*** padkrish has quit IRC23:00
*** claudiub|2 has joined #openstack-neutron23:00
*** kbringard has quit IRC23:01
*** nicolasbock has quit IRC23:01
*** sdake has quit IRC23:01
*** padkrish has joined #openstack-neutron23:01
*** nicolasbock has joined #openstack-neutron23:02
*** claudiub has quit IRC23:03
*** SKipp_ has quit IRC23:03
openstackgerritAnindita Das proposed openstack/neutron: OVO for RouterL3AgentBinding  https://review.openstack.org/36090823:04
*** banix has joined #openstack-neutron23:05
*** kriskend__ has quit IRC23:07
*** sticker_ has joined #openstack-neutron23:10
*** dane_leblanc__ has quit IRC23:11
*** sticker_ is now known as sticker23:11
*** banix has quit IRC23:12
openstackgerritSindhu Devale proposed openstack/neutron: Relocate router route DB model  https://review.openstack.org/35479723:12
*** trozet has quit IRC23:13
*** trozet has joined #openstack-neutron23:14
*** banix has joined #openstack-neutron23:14
*** ijw has joined #openstack-neutron23:18
*** ijw has quit IRC23:19
*** ijw has joined #openstack-neutron23:19
*** markvoelker has quit IRC23:19
openstackgerritSindhu Devale proposed openstack/neutron: OVO for Router Route  https://review.openstack.org/35622323:21
*** ivar-laz_ has quit IRC23:28
openstackgerritArmando Migliaccio proposed openstack/neutron: Fix misleading error trace in trunk fullstack life cycle test  https://review.openstack.org/37808123:28
*** g3ek has quit IRC23:28
*** ivar-lazzaro has joined #openstack-neutron23:28
*** gvrangan has joined #openstack-neutron23:28
*** lezbar has quit IRC23:31
*** ijw has quit IRC23:31
*** lezbar has joined #openstack-neutron23:31
*** tidwellr has quit IRC23:32
openstackgerritAnindita Das proposed openstack/neutron: OVO for VlanAllocation  https://review.openstack.org/35666023:33
*** rcarrillocruz has quit IRC23:33
*** ijw has joined #openstack-neutron23:33
*** ijw has quit IRC23:34
*** ijw has joined #openstack-neutron23:34
*** rcarrillocruz has joined #openstack-neutron23:34
*** ijw has quit IRC23:36
*** baoli has joined #openstack-neutron23:37
*** g3ek has joined #openstack-neutron23:37
*** njohnston has quit IRC23:37
*** ijw has joined #openstack-neutron23:42
*** yushiro has joined #openstack-neutron23:44
*** Worry has joined #openstack-neutron23:44
*** Worry has quit IRC23:46
openstackgerritAnindita Das proposed openstack/neutron: OVO for VxlanAllocation and VxlanEndpoints  https://review.openstack.org/36250823:46
*** Swami has quit IRC23:46
*** EinstCrazy has joined #openstack-neutron23:47
*** EinstCrazy has quit IRC23:48
*** haleyb_ has joined #openstack-neutron23:48
*** frontrunner has joined #openstack-neutron23:49
manjeetskevinbenton, ping (reg added dns hook)23:50
*** hoangcx has quit IRC23:53
openstackgerritManjeet Singh Bhatia proposed openstack/neutron: Add api test for create update network and port with dns  https://review.openstack.org/35444723:53
*** salv-orlando has joined #openstack-neutron23:53
*** haleyb_ has quit IRC23:53
*** tonytan4ever has quit IRC23:55
openstackgerritManjeet Singh Bhatia proposed openstack/neutron: Add api test for create update network and port with dns  https://review.openstack.org/35444723:55
*** abhiraut has quit IRC23:56
*** salv-orlando has quit IRC23:58

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!