kevinbenton | haleyb: i notice we filter on permanent addresses | 00:00 |
---|---|---|
kevinbenton | haleyb: is there a chance a previously added one isn't in the permanent state? | 00:00 |
*** salv-orlando has joined #openstack-neutron | 00:01 | |
kevinbenton | haleyb: https://github.com/openstack/neutron/blob/master/neutron/agent/linux/interface.py#L114-L115 | 00:01 |
haleyb | kevinbenton: oh, i haven't seen that exact one, adding the IPv6 global | 00:02 |
kevinbenton | haleyb: does that 'global' keyword make it ignore namespaces? | 00:02 |
haleyb | kevinbenton: no, it's just the scope if the address | 00:03 |
kevinbenton | that's what i though | 00:03 |
kevinbenton | thought* | 00:03 |
*** fnaval has joined #openstack-neutron | 00:03 | |
*** reedip has joined #openstack-neutron | 00:03 | |
haleyb | i wonder if that devstack setting of accept_ra is doing this? but that's not in a namespace | 00:03 |
*** ijw has quit IRC | 00:04 | |
haleyb | kevinbenton: so this has tried more than once to add it | 00:04 |
kevinbenton | haleyb: yeah, it's happening on each reload | 00:04 |
kevinbenton | haleyb: so it doesn't even seem to be a race | 00:04 |
kevinbenton | that's why i wondered if our list call was ignoring something | 00:04 |
kevinbenton | haleyb: the one here: https://github.com/openstack/neutron/blob/master/neutron/agent/linux/interface.py#L114-L115 | 00:05 |
*** salv-orlando has quit IRC | 00:05 | |
haleyb | kevinbenton: this looks strange, although i think valid | 00:06 |
haleyb | http://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_771 | 00:06 |
*** Sukhdev_ has joined #openstack-neutron | 00:06 | |
*** Sukhdev has quit IRC | 00:07 | |
kevinbenton | haleyb: what's strange about it? | 00:07 |
kevinbenton | haleyb: oh, just the closeness of the subnets? | 00:07 |
haleyb | yeah, didn't know if it was some route issue, but i could run those two by hand locally just fine | 00:08 |
kevinbenton | yeah, i tried the same thing | 00:08 |
*** iyamahat has joined #openstack-neutron | 00:10 | |
*** wolverineav has joined #openstack-neutron | 00:12 | |
kevinbenton | haleyb: neutron/commit/d86f1b87f01c53c3e0b085086133b311e5bf3ab5 | 00:12 |
haleyb | i can only assume that it actually auto-configured the address - in which case "permanent" would miss it since it will be tagged dynamic | 00:12 |
kevinbenton | That just merged | 00:12 |
kevinbenton | It allows stateless v6 addresses to be added | 00:13 |
kevinbenton | Would that be the issue? | 00:13 |
kevinbenton | I didn't think v6 stateless would be auto configured for the dhcp agent | 00:13 |
*** ranjithd has quit IRC | 00:14 | |
haleyb | kevinbenton: if it sees an RA it will auto-configure if accept_ra is set, and it defaults to 1 | 00:14 |
*** jhershbe has quit IRC | 00:14 | |
kevinbenton | haleyb: ah, so it could be racing with an RA then? | 00:14 |
haleyb | yes, as soon as it's plugged it probably sees the RA, configures a "dynamic" address, then we try a static "permanent" one | 00:15 |
sterdnotshaken1 | Anyone know why you install the linuxbridge agent on the neutron controller node for provider networking? | 00:15 |
haleyb | so might need to set accept_ra=0 | 00:15 |
sterdnotshaken1 | It seems strange that the instructions have us configure linuxbridge_agent.ini on the controller node… | 00:16 |
*** wolverineav has quit IRC | 00:16 | |
*** wolverineav has joined #openstack-neutron | 00:17 | |
kevinbenton | haleyb: Yeah, because we want to prescribe addresses for dhcp agent in all of these cases I think | 00:17 |
*** gongysh has joined #openstack-neutron | 00:17 | |
*** ijw has joined #openstack-neutron | 00:18 | |
haleyb | kevinbenton: i'm assuming we can call configure_ipv6_ra from the interface driver when adding the interface? then tweak it to accept a value | 00:19 |
*** Swami has quit IRC | 00:20 | |
kevinbenton | haleyb: to make it the least invasive, can we just list the addresses including RA assigned things? | 00:20 |
haleyb | kevinbenton: or set the .default. one in the namespace when we create it? then the others will inherit | 00:21 |
*** trisq has joined #openstack-neutron | 00:21 | |
kevinbenton | haleyb: i think this needs to land in RC2 | 00:21 |
haleyb | kevinbenton: then i would try, 1) create dhcp namespace; 2) net.ipv6.conf.default.accept_ra=0 | 00:22 |
*** SKipp_ has quit IRC | 00:22 | |
kevinbenton | sterdnotshaken1: for the DHCP agent | 00:22 |
kevinbenton | sterdnotshaken1: it still needs an L2 agent to wire its ports | 00:22 |
*** wolverineav has quit IRC | 00:23 | |
*** trisq has quit IRC | 00:25 | |
*** ijw has quit IRC | 00:25 | |
kevinbenton | haleyb: where do we create the namespace? | 00:26 |
*** garyk has joined #openstack-neutron | 00:26 | |
haleyb | i thought you knew :) we do it in plug_new() | 00:27 |
kevinbenton | haleyb: is there any scenario where we would want to accept RAs? | 00:27 |
haleyb | ensure_namespace call, but putting something there would be invasive | 00:27 |
*** wu_ng has joined #openstack-neutron | 00:28 | |
sterdnotshaken1 | Thanks 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 from | 00:28 |
kevinbenton | sterdnotshaken1: 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 |
haleyb | kevinbenton: probably not in that namespace. i suppose your backup is to not use "permanent" although it seems a little hacky as a permanent solution | 00:29 |
kevinbenton | haleyb: you mean a non-permanant solutions ;) | 00:30 |
*** markvoelker has quit IRC | 00:30 | |
*** baojg has quit IRC | 00:32 | |
haleyb | kevinbenton: right, didn't see that coming :) | 00:32 |
sterdnotshaken1 | Ok, 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 |
kevinbenton | sterdnotshaken1: 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 there | 00:33 |
*** wolverineav has joined #openstack-neutron | 00:33 | |
sterdnotshaken1 | kevinbenton: ok, thanks for the help! | 00:34 |
kevinbenton | haleyb: yeah, it seems it's going to be invasive to put it in the plug call | 00:34 |
kevinbenton | haleyb: can you think of anything that needs an RA that might be using this call? | 00:34 |
kevinbenton | haleyb: this call = our interface plug method | 00:35 |
haleyb | kevinbenton: i think if you do it right after, even if the IP is there, changing accept_ra to zero will blow the address away | 00:35 |
haleyb | which would mean the agent could do it | 00:35 |
kevinbenton | haleyb: do you have an env where you can confirm it? | 00:35 |
haleyb | kevinbenton: i think i have a devstack around that i can destroy | 00:36 |
*** jhershbe has joined #openstack-neutron | 00:36 | |
*** sterdnotshaken1 has quit IRC | 00:36 | |
kevinbenton | haleyb: i'm trying to figure out a way to reliably repro this | 00:37 |
*** david-lyle_ has joined #openstack-neutron | 00:38 | |
haleyb | kevinbenton: strange, the existing dhcp namespace has a dynamic address already, code from last week | 00:38 |
haleyb | inet6 fd8e:558e:2a1b:0:f816:3eff:fe4a:e5ef/64 scope global mngtmpaddr dynamic | 00:38 |
kevinbenton | haleyb: right, but if that's on a stateless network | 00:38 |
kevinbenton | haleyb: we didn't try to add that explicitly in the dhcp agent | 00:39 |
kevinbenton | haleyb: until the merge this morning | 00:39 |
haleyb | it was configured via RA, let me change the accept_ra setting | 00:39 |
*** wolverineav has quit IRC | 00:39 | |
haleyb | it didn't go away | 00:40 |
kevinbenton | haleyb: yeah, i suspected it's like DHCP | 00:40 |
kevinbenton | haleyb: once you have the addr | 00:40 |
*** banix has joined #openstack-neutron | 00:40 | |
kevinbenton | haleyb: it's too late | 00:40 |
kevinbenton | haleyb: looks like a well-placed sleep reproduces this easily | 00:41 |
haleyb | oh, only if forwarding is set will changing that wipe it | 00:41 |
*** garyk has quit IRC | 00:41 | |
*** gongysh has quit IRC | 00:41 | |
*** david-lyle has quit IRC | 00:41 | |
*** hoangcx has joined #openstack-neutron | 00:42 | |
*** gvrangan has joined #openstack-neutron | 00:42 | |
haleyb | kevinbenton: slaac take 1-3 seconds, so that would do it | 00:42 |
*** thorst has joined #openstack-neutron | 00:42 | |
haleyb | kevinbenton: can you do an ensure_namespace in the agent, set the sysctl, then call plug() ? | 00:43 |
kevinbenton | haleyb: yeah, i see the l3 agent explicitly enables RA | 00:44 |
*** wolverineav has joined #openstack-neutron | 00:44 | |
haleyb | right before self.driver.plug() | 00:44 |
*** iyamahat has quit IRC | 00:44 | |
kevinbenton | haleyb: yeah, i'll give that a shot | 00:44 |
haleyb | kevinbenton: it might be assuming ovs_use_veth from reading plug_new() ? | 00:46 |
*** yfried has joined #openstack-neutron | 00:47 | |
kevinbenton | haleyb: net.ipv6.conf. is scoped to the namespace, right? | 00:47 |
haleyb | kevinbenton: yes | 00:48 |
*** wolverineav has quit IRC | 00:49 | |
*** ivar-laz_ has joined #openstack-neutron | 00:51 | |
kevinbenton | haleyb: yeah, looks like that did the trig | 00:53 |
kevinbenton | trick* | 00:53 |
kevinbenton | haleyb: patch coming up, would be good if i can get your review | 00:53 |
kevinbenton | haleyb: how much longer you on? | 00:53 |
*** mriedem is now known as mriedem_debate | 00:54 | |
*** ivar-lazzaro has quit IRC | 00:54 | |
*** mfuruta has joined #openstack-neutron | 00:54 | |
*** apdibbo has joined #openstack-neutron | 00:55 | |
*** wu_ng has quit IRC | 00:55 | |
*** ivar-laz_ has quit IRC | 00:56 | |
*** apdibbo has quit IRC | 00:59 | |
*** yamamot__ has joined #openstack-neutron | 01:01 | |
*** kevo has quit IRC | 01:01 | |
*** gvrangan has quit IRC | 01:01 | |
*** reedip has quit IRC | 01:01 | |
*** salv-orlando has joined #openstack-neutron | 01:02 | |
*** yfried has quit IRC | 01:03 | |
haleyb | kevinbenton: i will take my laptop downstairs and check in :30 | 01:06 |
*** salv-orlando has quit IRC | 01:06 | |
*** gongysh has joined #openstack-neutron | 01:07 | |
kevinbenton | haleyb: ok, patch is inbound | 01:07 |
kevinbenton | haleyb: just finished a test | 01:07 |
*** reedip has joined #openstack-neutron | 01:12 | |
*** abhiraut has quit IRC | 01:15 | |
*** EinstCrazy has joined #openstack-neutron | 01:15 | |
*** gvrangan has joined #openstack-neutron | 01:16 | |
*** wolverineav has joined #openstack-neutron | 01:16 | |
*** haleyb_ has joined #openstack-neutron | 01:17 | |
*** hieulq has joined #openstack-neutron | 01:18 | |
*** jhershbe has quit IRC | 01:21 | |
*** thorst has quit IRC | 01:21 | |
*** thorst has joined #openstack-neutron | 01:22 | |
*** jhershbe has joined #openstack-neutron | 01:24 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Disable 'accept_ras' in DHCP agent namespace https://review.openstack.org/377140 | 01:24 |
kevinbenton | haleyb: ^^ | 01:24 |
haleyb_ | kevinbenton: i will take a look, thanks | 01:25 |
*** ijw has joined #openstack-neutron | 01:26 | |
*** alex_xu has quit IRC | 01:27 | |
*** jhershbe has quit IRC | 01:28 | |
*** yedongcan has joined #openstack-neutron | 01:28 | |
*** sdake has quit IRC | 01:28 | |
*** banix has quit IRC | 01:30 | |
*** zhhuabj_ has quit IRC | 01:30 | |
*** alex_xu has joined #openstack-neutron | 01:31 | |
*** thorst has quit IRC | 01:31 | |
*** markvoelker has joined #openstack-neutron | 01:31 | |
*** s3wong has quit IRC | 01:32 | |
*** ivc_ has joined #openstack-neutron | 01:33 | |
*** ijw has quit IRC | 01:34 | |
*** baoli has joined #openstack-neutron | 01:34 | |
*** ijw has joined #openstack-neutron | 01:34 | |
*** wolverineav has quit IRC | 01:35 | |
*** harlowja has quit IRC | 01:35 | |
*** huanxie has joined #openstack-neutron | 01:35 | |
*** markvoelker has quit IRC | 01:36 | |
*** thorst has joined #openstack-neutron | 01:36 | |
*** thorst has quit IRC | 01:37 | |
*** tristanC has joined #openstack-neutron | 01:39 | |
*** ijw has quit IRC | 01:39 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Skip assigning address assigned as dynamic https://review.openstack.org/377142 | 01:39 |
haleyb_ | kevinbenton: just some nits on the first, what's the other one | 01:40 |
kevinbenton | haleyb: just an alternative if the first looks to scary for RC2 | 01:40 |
*** jckasper has quit IRC | 01:41 | |
*** jckasper has joined #openstack-neutron | 01:42 | |
*** wu_ng has joined #openstack-neutron | 01:42 | |
*** zhhuabj_ has joined #openstack-neutron | 01:42 | |
openstackgerrit | Hong Hui Xiao proposed openstack/neutron: Update metadata proxy when subnet add/delete https://review.openstack.org/293237 | 01:43 |
*** ivc_ has quit IRC | 01: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 course | 01:45 |
kevinbenton | haleyb: yeah, that's what i was thinking as well | 01:46 |
kevinbenton | haleyb: preference is definitely towards the first one | 01:46 |
*** viniciusarcanjo_ has quit IRC | 01:47 | |
*** wolverineav has joined #openstack-neutron | 01:48 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Disable 'accept_ra' in DHCP agent namespace https://review.openstack.org/377140 | 01:50 |
kevinbenton | haleyb: new rev with your changes ^^ | 01:50 |
openstackgerrit | Mohit Malik proposed openstack/neutron: Integration of OVO for Ipam https://review.openstack.org/365155 | 01:50 |
*** amotoki has joined #openstack-neutron | 01:51 | |
*** gvrangan has quit IRC | 01:51 | |
*** SKipp_ has joined #openstack-neutron | 01: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 locally | 01:55 |
*** bkopilov has quit IRC | 01:55 | |
*** wolverineav has quit IRC | 01:56 | |
*** banix has joined #openstack-neutron | 01:56 | |
*** trisq has joined #openstack-neutron | 01:59 | |
*** haplo37_ has quit IRC | 02:00 | |
*** banix has quit IRC | 02:01 | |
*** gvrangan has joined #openstack-neutron | 02:02 | |
*** banix has joined #openstack-neutron | 02:02 | |
*** haplo37_ has joined #openstack-neutron | 02:02 | |
*** banix has quit IRC | 02:02 | |
*** salv-orlando has joined #openstack-neutron | 02:03 | |
*** salv-orlando has quit IRC | 02:07 | |
*** thorst has joined #openstack-neutron | 02:07 | |
*** lujinluo has quit IRC | 02:09 | |
openstackgerrit | LIU Yulong proposed openstack/neutron-specs: Layer 3 IPs rate limit https://review.openstack.org/374506 | 02:09 |
*** wolverineav has joined #openstack-neutron | 02:09 | |
*** bzhao has joined #openstack-neutron | 02:13 | |
*** wolverineav has quit IRC | 02:14 | |
*** gvrangan has quit IRC | 02:15 | |
*** thorst has quit IRC | 02:16 | |
*** gvrangan has joined #openstack-neutron | 02:17 | |
openstackgerrit | Merged openstack/neutron: Fullstack: Add helper FakeFullstackMachinesList https://review.openstack.org/273775 | 02:19 |
openstackgerrit | Kengo Hobo proposed openstack/neutron: Disallow specifying too long name for meter-label https://review.openstack.org/351488 | 02:21 |
openstackgerrit | Yi Jing Zhu proposed openstack/neutron-vpnaas: [WIP] new VPNaaS agent for VPNaaS OVN https://review.openstack.org/351520 | 02:21 |
openstackgerrit | Merged openstack/neutron: Reduce log level for extensions not being supported https://review.openstack.org/373556 | 02:22 |
openstackgerrit | Merged openstack/neutron: Check for l3 agents count before router update https://review.openstack.org/351114 | 02:23 |
*** yamamot__ has quit IRC | 02:29 | |
*** jianghuaw has quit IRC | 02:29 | |
*** nicolasbock has quit IRC | 02:29 | |
*** wolverineav has joined #openstack-neutron | 02:29 | |
*** gvrangan has quit IRC | 02:30 | |
*** banix has joined #openstack-neutron | 02:32 | |
*** jianghuaw has joined #openstack-neutron | 02:32 | |
*** trozet has quit IRC | 02:36 | |
*** SKipp_ has quit IRC | 02:36 | |
*** SKipp_ has joined #openstack-neutron | 02:37 | |
*** banix has quit IRC | 02:39 | |
*** wolverineav has quit IRC | 02:40 | |
haleyb_ | kevinbenton: mind if i push an update to that ipv6 issue? | 02:43 |
*** yuanying has quit IRC | 02:47 | |
*** david-lyle_ has quit IRC | 02:48 | |
*** david-lyle has joined #openstack-neutron | 02:49 | |
openstackgerrit | Kengo Hobo proposed openstack/neutron: Handle label_id's DBReferenceError when creating label-rule https://review.openstack.org/359591 | 02:50 |
*** wu_ng has quit IRC | 02:50 | |
*** yuanying has joined #openstack-neutron | 02:50 | |
*** wu_ng has joined #openstack-neutron | 02:50 | |
*** sgordon` is now known as sgordon | 02:52 | |
*** baoli has quit IRC | 02:53 | |
*** sdake has joined #openstack-neutron | 02:55 | |
*** banix has joined #openstack-neutron | 02:56 | |
*** mriedem_debate has quit IRC | 02:59 | |
*** banix has quit IRC | 03:02 | |
*** sudipto has joined #openstack-neutron | 03:03 | |
*** sudipto_ has joined #openstack-neutron | 03:04 | |
sudipto_ | sorry a bit late | 03:04 |
*** david-lyle has quit IRC | 03:04 | |
*** banix has joined #openstack-neutron | 03:09 | |
*** bkopilov has joined #openstack-neutron | 03:09 | |
*** yamamot__ has joined #openstack-neutron | 03:10 | |
*** banix has quit IRC | 03:14 | |
*** lnicolas has quit IRC | 03:14 | |
*** thorst has joined #openstack-neutron | 03:14 | |
*** sdake has quit IRC | 03:15 | |
*** banix has joined #openstack-neutron | 03:15 | |
*** g3ek has quit IRC | 03:15 | |
*** banix has quit IRC | 03:17 | |
*** wolverineav has joined #openstack-neutron | 03:17 | |
*** banix has joined #openstack-neutron | 03:17 | |
*** armax has quit IRC | 03:19 | |
*** thorst has quit IRC | 03:21 | |
*** g3ek has joined #openstack-neutron | 03:21 | |
*** wolverineav has quit IRC | 03:21 | |
*** wolverineav has joined #openstack-neutron | 03:23 | |
kevinbenton | haleyb: still there? | 03:23 |
*** sdake has joined #openstack-neutron | 03:23 | |
haleyb_ | kevinbenton: yeah, it's failing a unit test but i have a fix i'm testing and will send i tout | 03:23 |
kevinbenton | haleyb: ack. Just finished dinner and heading home | 03:24 |
haleyb_ | kevinbenton: ok. i haven't run the entire suite, will let jenkins do that | 03:24 |
*** huanxie has quit IRC | 03:25 | |
openstackgerrit | Brian Haley proposed openstack/neutron: Disable 'accept_ra' in DHCP agent namespace https://review.openstack.org/377140 | 03:26 |
*** amotoki has quit IRC | 03:26 | |
*** yushiro has quit IRC | 03:27 | |
*** wolverineav has quit IRC | 03:27 | |
*** vishwanathj has quit IRC | 03:28 | |
*** wolverineav has joined #openstack-neutron | 03:29 | |
*** markvoelker has joined #openstack-neutron | 03:32 | |
*** wolverineav has quit IRC | 03:33 | |
*** yuanying has quit IRC | 03:37 | |
*** amotoki has joined #openstack-neutron | 03:37 | |
*** markvoelker has quit IRC | 03:38 | |
*** sshank has quit IRC | 03:38 | |
*** yarkot has quit IRC | 03:39 | |
*** johndperkins has quit IRC | 03:39 | |
*** sdake has quit IRC | 03:40 | |
*** sdake has joined #openstack-neutron | 03:41 | |
*** tflynn has joined #openstack-neutron | 03:42 | |
*** annp has joined #openstack-neutron | 03:42 | |
*** tflynn has quit IRC | 03:42 | |
*** tflynn has joined #openstack-neutron | 03:43 | |
*** wolverineav has joined #openstack-neutron | 03:44 | |
*** iyamahat has joined #openstack-neutron | 03:44 | |
*** zhhuabj_ has quit IRC | 03:44 | |
*** yarkot has joined #openstack-neutron | 03:45 | |
*** aswadr_ has joined #openstack-neutron | 03:45 | |
*** sdake has quit IRC | 03:47 | |
*** wolverineav has quit IRC | 03:48 | |
*** SKipp_ has quit IRC | 03:48 | |
*** amotoki has quit IRC | 03:49 | |
*** yuanying has joined #openstack-neutron | 03:50 | |
*** Sukhdev_ has quit IRC | 03:51 | |
*** rkukura has joined #openstack-neutron | 03:51 | |
*** johndperkins has joined #openstack-neutron | 03:51 | |
*** Sukhdev has joined #openstack-neutron | 03:51 | |
*** banix has quit IRC | 03:52 | |
*** hynekm has joined #openstack-neutron | 03:53 | |
*** ganeshnalawade has joined #openstack-neutron | 03:54 | |
*** gongysh has quit IRC | 03:54 | |
openstackgerrit | Nam Nguyen Hoai proposed openstack/neutron: Disallow specifying too long name and description for qos https://review.openstack.org/352200 | 03:55 |
*** amotoki has joined #openstack-neutron | 03:55 | |
*** jckasper has quit IRC | 03:55 | |
*** jckasper has joined #openstack-neutron | 03:56 | |
*** yushiro has joined #openstack-neutron | 03:57 | |
*** wolverineav has joined #openstack-neutron | 03:58 | |
*** tlian has quit IRC | 04:01 | |
*** zhhuabj_ has joined #openstack-neutron | 04:03 | |
*** jckasper has quit IRC | 04:04 | |
openstackgerrit | Shashank Kumar Shankar proposed openstack/neutron: [WIP] Integration of Port Binding Level OVO. https://review.openstack.org/374418 | 04:10 |
*** rmcall_ has joined #openstack-neutron | 04:13 | |
*** rmcall has quit IRC | 04:14 | |
*** rmcall_ is now known as rmcall | 04:14 | |
*** sdake has joined #openstack-neutron | 04:15 | |
openstackgerrit | Merged openstack/neutron: trunk: Log RPC communication https://review.openstack.org/375484 | 04:17 |
*** bzhao has quit IRC | 04:18 | |
*** amotoki has quit IRC | 04:18 | |
*** bzhao has joined #openstack-neutron | 04:18 | |
*** links has joined #openstack-neutron | 04:19 | |
*** lujinluo has joined #openstack-neutron | 04:21 | |
*** ivar-lazzaro has joined #openstack-neutron | 04:21 | |
*** thorst has joined #openstack-neutron | 04:21 | |
*** lujinluo has quit IRC | 04:22 | |
*** sdake_ has joined #openstack-neutron | 04:22 | |
*** lujinluo has joined #openstack-neutron | 04:23 | |
*** ganeshnalawade has quit IRC | 04:23 | |
*** sdake has quit IRC | 04:24 | |
*** vishwanathj has joined #openstack-neutron | 04:24 | |
*** ganeshnalawade has joined #openstack-neutron | 04:25 | |
*** thorst has quit IRC | 04:26 | |
*** shausy has joined #openstack-neutron | 04:27 | |
*** amotoki has joined #openstack-neutron | 04:28 | |
openstackgerrit | Shashank Kumar Shankar proposed openstack/neutron: Relocate Provisioning Block DB Model https://review.openstack.org/355611 | 04:30 |
*** ivar-lazzaro has quit IRC | 04:31 | |
kevinbenton | haleyb_: still there? | 04:34 |
kevinbenton | haleyb_: it looks like you changed the patch to revert a fix by skipping auto address subnets | 04:34 |
openstackgerrit | Kevin Benton proposed openstack/neutron: Disable 'accept_ra' in DHCP agent namespace https://review.openstack.org/377140 | 04:36 |
*** sudipto_ has quit IRC | 04:39 | |
*** sudipto has quit IRC | 04:39 | |
*** amotoki_ has joined #openstack-neutron | 04:39 | |
*** jprovazn has joined #openstack-neutron | 04:40 | |
*** sdake_ has quit IRC | 04:40 | |
*** ratailor has joined #openstack-neutron | 04:40 | |
*** haleyb_ has quit IRC | 04:41 | |
*** amotoki has quit IRC | 04:42 | |
*** ivar-lazzaro has joined #openstack-neutron | 04:43 | |
*** sdake has joined #openstack-neutron | 04:43 | |
*** ivar-lazzaro has quit IRC | 04:44 | |
*** gouthamr has quit IRC | 04:44 | |
*** sdake_ has joined #openstack-neutron | 04:46 | |
*** sdake has quit IRC | 04:48 | |
*** claudiub has joined #openstack-neutron | 04:48 | |
*** g3ek has quit IRC | 04:50 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Revert "Fixes for missing IPs on subnets in DHCP agent" https://review.openstack.org/377233 | 04:50 |
*** hynekm has quit IRC | 04:50 | |
*** ivar-lazzaro has joined #openstack-neutron | 04:52 | |
*** bks has joined #openstack-neutron | 04:52 | |
*** salv-orlando has joined #openstack-neutron | 04:54 | |
*** g3ek has joined #openstack-neutron | 04:56 | |
*** absubram has joined #openstack-neutron | 04:56 | |
openstackgerrit | IWAMOTO Toshihiro proposed openstack/neutron: Use conjunction for security group rules with remote_group_id https://review.openstack.org/333804 | 04:57 |
*** sdake_ has quit IRC | 04:58 | |
*** haleyb_ has joined #openstack-neutron | 05:01 | |
*** prateek_ has joined #openstack-neutron | 05:02 | |
liuyulong | armix | 05:02 |
liuyulong | armax | 05:03 |
*** ganeshnalawade has quit IRC | 05:04 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Disable 'accept_ra' in DHCP agent namespace https://review.openstack.org/377140 | 05:05 |
openstackgerrit | Kevin Benton proposed openstack/neutron: Skip assigning address assigned as dynamic https://review.openstack.org/377142 | 05:05 |
*** gvrangan has joined #openstack-neutron | 05:05 | |
*** pgadiya has joined #openstack-neutron | 05:05 | |
*** baoli has joined #openstack-neutron | 05:06 | |
*** ganeshnalawade has joined #openstack-neutron | 05:06 | |
*** diga has joined #openstack-neutron | 05:08 | |
*** gongysh has joined #openstack-neutron | 05:08 | |
*** korzen has joined #openstack-neutron | 05:09 | |
*** ganeshnalawade has quit IRC | 05:10 | |
*** baoli has quit IRC | 05:10 | |
*** Alex_Stef has joined #openstack-neutron | 05:11 | |
*** Sukhdev has quit IRC | 05:12 | |
*** pbandark has joined #openstack-neutron | 05:16 | |
*** rossella_s has quit IRC | 05:19 | |
*** rossella_s has joined #openstack-neutron | 05:19 | |
*** tonytan4ever has quit IRC | 05:20 | |
*** sudipto has joined #openstack-neutron | 05:20 | |
*** sudipto_ has joined #openstack-neutron | 05:20 | |
*** ganeshnalawade has joined #openstack-neutron | 05:21 | |
*** thorst has joined #openstack-neutron | 05:23 | |
*** ihrachys has joined #openstack-neutron | 05:25 | |
*** nmagnezi has joined #openstack-neutron | 05:27 | |
*** thorst has quit IRC | 05:32 | |
*** absubram has quit IRC | 05:33 | |
*** ekuris has joined #openstack-neutron | 05:34 | |
*** iwamoto has joined #openstack-neutron | 05:37 | |
*** claudiub has quit IRC | 05:49 | |
*** haleyb_ has quit IRC | 05:49 | |
*** rajinir has quit IRC | 05:55 | |
*** Worry has joined #openstack-neutron | 05:57 | |
*** moshele has joined #openstack-neutron | 05:58 | |
*** otherwiseguy has quit IRC | 06:00 | |
*** otherwiseguy has joined #openstack-neutron | 06:01 | |
*** ganesh has joined #openstack-neutron | 06:02 | |
*** ganesh is now known as gkadam | 06:02 | |
*** numans has joined #openstack-neutron | 06:03 | |
*** nherciu has joined #openstack-neutron | 06:05 | |
*** irenab has quit IRC | 06:07 | |
openstackgerrit | gengchc2 proposed openstack/neutron: Replace assertEqual(None, *) with assertIsNone in tests https://review.openstack.org/374594 | 06:08 |
*** kobis has joined #openstack-neutron | 06:10 | |
*** Worry has quit IRC | 06:16 | |
*** nmagnezi has quit IRC | 06:21 | |
openstackgerrit | chandanc proposed openstack/neutron: [WIP] IP Conntrack Manager changes for FWaaS v2 https://review.openstack.org/333338 | 06:23 |
*** tflynn has quit IRC | 06:27 | |
*** ganeshnalawade has quit IRC | 06:28 | |
*** ganeshnalawade has joined #openstack-neutron | 06:28 | |
*** nyechiel has joined #openstack-neutron | 06:29 | |
*** thorst has joined #openstack-neutron | 06:30 | |
openstackgerrit | Nam Nguyen Hoai proposed openstack/neutron: Disallow specifying too long name and description for qos https://review.openstack.org/352200 | 06:30 |
*** Alex_Stef has quit IRC | 06:30 | |
*** Worry has joined #openstack-neutron | 06:31 | |
*** iranzo has joined #openstack-neutron | 06:33 | |
*** tflynn has joined #openstack-neutron | 06:35 | |
*** thorst has quit IRC | 06:37 | |
*** obondarev has joined #openstack-neutron | 06:39 | |
*** hynekm has joined #openstack-neutron | 06:40 | |
*** gvrangan has quit IRC | 06:41 | |
*** pcaruana has joined #openstack-neutron | 06:45 | |
*** andreas_s has joined #openstack-neutron | 06:50 | |
*** wolverin_ has joined #openstack-neutron | 06:52 | |
*** Worry has quit IRC | 06:54 | |
*** obondarev has quit IRC | 06:55 | |
*** wolverineav has quit IRC | 06:56 | |
*** rcernin has joined #openstack-neutron | 06:59 | |
*** marst has quit IRC | 07:00 | |
*** salv-orl_ has joined #openstack-neutron | 07:01 | |
*** nyechiel has quit IRC | 07:02 | |
*** ihrachys has quit IRC | 07:02 | |
*** ihrachys has joined #openstack-neutron | 07:03 | |
*** salv-orlando has quit IRC | 07:04 | |
*** salv-orl_ has quit IRC | 07:05 | |
*** Worry has joined #openstack-neutron | 07:06 | |
*** tmorin has joined #openstack-neutron | 07:06 | |
openstackgerrit | Evgeny Fedoruk proposed openstack/neutron: Flavors meta templating implementation https://review.openstack.org/363016 | 07:09 |
*** anilvenkata has joined #openstack-neutron | 07:11 | |
*** ganeshnalawade has quit IRC | 07:12 | |
*** tonytan4ever has joined #openstack-neutron | 07:21 | |
*** Worry has quit IRC | 07:21 | |
*** ganeshnalawade has joined #openstack-neutron | 07:24 | |
*** ivar-lazzaro has quit IRC | 07:25 | |
*** xek has joined #openstack-neutron | 07:25 | |
*** yamahata has joined #openstack-neutron | 07:25 | |
*** tonytan4ever has quit IRC | 07:26 | |
*** claudiub has joined #openstack-neutron | 07:28 | |
*** iyamahat has quit IRC | 07:28 | |
*** marst has joined #openstack-neutron | 07:28 | |
*** yamahata has quit IRC | 07:32 | |
*** rmart04 has joined #openstack-neutron | 07:34 | |
*** thorst has joined #openstack-neutron | 07:35 | |
*** ganeshnalawade has quit IRC | 07:37 | |
*** ivar-lazzaro has joined #openstack-neutron | 07:37 | |
*** jlanoux has joined #openstack-neutron | 07:38 | |
*** nmagnezi has joined #openstack-neutron | 07:38 | |
*** nmagnezi_ has joined #openstack-neutron | 07:40 | |
*** thorst has quit IRC | 07:41 | |
*** irenab has joined #openstack-neutron | 07:42 | |
*** hoonetorg has quit IRC | 07:42 | |
*** miyagishi_t has joined #openstack-neutron | 07:43 | |
*** karthiks has quit IRC | 07:45 | |
*** anteaya has quit IRC | 07:48 | |
*** anteaya has joined #openstack-neutron | 07:49 | |
*** jpena|off is now known as jpena | 07:49 | |
*** bfernando has joined #openstack-neutron | 07:52 | |
jschwarz | akamyshnikova_, ping? | 07:58 |
*** ganeshnalawade has joined #openstack-neutron | 07:58 | |
*** hoonetorg has joined #openstack-neutron | 07:59 | |
*** eezhova has joined #openstack-neutron | 07:59 | |
*** zzzeek has quit IRC | 08:00 | |
*** zzzeek has joined #openstack-neutron | 08:00 | |
*** ihrachys has quit IRC | 08:00 | |
*** jckasper has joined #openstack-neutron | 08:01 | |
*** claudiub has quit IRC | 08:01 | |
*** ivar-lazzaro has quit IRC | 08:02 | |
anilvenkata | HenryG, ping | 08:03 |
*** jckasper has quit IRC | 08:06 | |
*** wolverineav has joined #openstack-neutron | 08:08 | |
*** ganeshnalawade has quit IRC | 08:09 | |
*** wolverin_ has quit IRC | 08:09 | |
*** jlibosva has joined #openstack-neutron | 08:11 | |
*** Esha has joined #openstack-neutron | 08:12 | |
Esha | I wanted to check about 1625305 | 08:13 |
Esha | https://bugs.launchpad.net/neutron/+bug/1625305 | 08:13 |
openstack | Launchpad bug 1625305 in neutron "neutron-openvswitch-agent is crashing due to KeyError in _restore_local_vlan_map()" [High,New] | 08:13 |
Esha | Kevin 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 |
Esha | This needs to be fixed | 08:15 |
*** s1061123_ has quit IRC | 08:16 | |
*** irenab has quit IRC | 08:18 | |
*** irenab has joined #openstack-neutron | 08:19 | |
*** s1061123 has joined #openstack-neutron | 08:19 | |
*** Alex_Stef has joined #openstack-neutron | 08:21 | |
*** tonytan4ever has joined #openstack-neutron | 08:22 | |
*** trisq has quit IRC | 08:23 | |
*** trisq has joined #openstack-neutron | 08:23 | |
*** obondarev has joined #openstack-neutron | 08:24 | |
*** Esha has quit IRC | 08:26 | |
*** tonytan4ever has quit IRC | 08:27 | |
*** roeyc has joined #openstack-neutron | 08:27 | |
*** nmagnezi_ has quit IRC | 08:32 | |
*** ihrachys has joined #openstack-neutron | 08:32 | |
kevinbenton | ihrachys: ping | 08:33 |
*** fnaval_ has joined #openstack-neutron | 08:35 | |
*** john-davidge has joined #openstack-neutron | 08:36 | |
*** davidsha has joined #openstack-neutron | 08:37 | |
openstackgerrit | chandanc proposed openstack/neutron: [WIP] IP Conntrack Manager changes for FWaaS v2 https://review.openstack.org/333338 | 08:38 |
*** fnaval has quit IRC | 08:38 | |
ihrachys | kevinbenton: howdy | 08:38 |
*** irenab has quit IRC | 08:39 | |
kevinbenton | ihrachys: ran into an issue with the DHCP fixes patch | 08:39 |
*** zhhuabj_ has quit IRC | 08:39 | |
*** mhickey has joined #openstack-neutron | 08:39 | |
ihrachys | neverending story. tell me. :) | 08:39 |
kevinbenton | ihrachys: now that we intentionally setup v6 interfaces, we can race with a v6 address assigned by RA | 08:40 |
kevinbenton | ihrachys: https://bugs.launchpad.net/neutron/+bug/1627902 | 08:40 |
openstack | Launchpad bug 1627902 in neutron "DHCP agent conflicting with dynamic IPv6 addresses" [High,Invalid] | 08:40 |
liuyulong | ajo, ping | 08:41 |
kevinbenton | ihrachys: 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 |
kevinbenton | ihrachys: armando doesn't care for them i guess | 08:41 |
kevinbenton | ihrachys: so he just wants to revert and leave the KeyError | 08:41 |
kevinbenton | ihrachys: https://review.openstack.org/#/c/377233/ | 08:41 |
ihrachys | kevinbenton: well I guess he is just tired of landing things that break other things. :))) | 08:42 |
ihrachys | let me look | 08:42 |
openstackgerrit | John Schwarz proposed openstack/neutron: scheduler: add retry indicators for bind_router() https://review.openstack.org/365326 | 08:44 |
ihrachys | kevinbenton: 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 |
kevinbenton | ihrachys: yeah, that would limit the keyerror issue to v6 networks | 08:45 |
ihrachys | kevinbenton: we should have split those two. now armax will push to revert both pieces that are largely independent | 08:46 |
*** yushiro has quit IRC | 08:46 | |
kevinbenton | ihrachys: yep | 08:47 |
*** hoonetorg has quit IRC | 08:51 | |
*** zhhuabj_ has joined #openstack-neutron | 08:52 | |
*** lujinluo has quit IRC | 08:54 | |
*** mfuruta has quit IRC | 08:59 | |
*** john51 has quit IRC | 09:00 | |
*** hoonetorg has joined #openstack-neutron | 09:02 | |
*** mickeys has quit IRC | 09:03 | |
*** fzdarsky|afk has joined #openstack-neutron | 09:04 | |
ajo | ihrachys, do you have a minute to have an eye https://review.openstack.org/#/c/374506/ for conversation around liuyulong rfe ? | 09:08 |
ihrachys | ajo: I will get there, but not today | 09:09 |
ajo | ihrachys, ack thanks | 09:09 |
ihrachys | ajo: there is release stuff on the plate that takes my attention | 09:09 |
ajo | ihrachys, of course, priorities are important | 09:09 |
*** viniciusarcanjo_ has joined #openstack-neutron | 09:09 | |
ihrachys | I also think that qos team has some work to do before considering more stuff | 09:10 |
ajo | ihrachys, feel free to direct me to any specific review which may need attention | 09:10 |
ajo | ihrachys, of course, | 09:10 |
ajo | ihrachys, but I think the RFE needs discussion, and it's current form will never fly | 09:10 |
ajo | so it's better that they shape things into something that fits the model, | 09:10 |
ajo | not that we intend to do it now | 09:10 |
*** fzdarsky|afk has quit IRC | 09:10 | |
ihrachys | ajo: right. but what's the benefit of discussing a thing now that won't get priority for the next cycle+? | 09:11 |
ajo | ihrachys, procrastinating with precrastination you know | 09:11 |
*** namnh has joined #openstack-neutron | 09:11 | |
ihrachys | ok, then enjoy :) | 09:11 |
*** sambetts|afk is now known as sambetts | 09:12 | |
liuyulong | ajo, ihrachys, thank you guys. : ) | 09:12 |
ajo | ihrachys, and I believe that we should not stop hearing people wishes, even if they are not realizable at this exact moment | 09:12 |
ihrachys | ajo: people should bring their troops with them | 09:12 |
ajo | ihrachys, and they will, they already have implementation, but IMO doesn't match the current models (that's my opinion), I'm giving them homework | 09:13 |
jschwarz | akamyshnikova_, this is a slippery bug :< | 09:13 |
ihrachys | ajo: well, not just for things they want, but also for things that are in the pipeline of the project. | 09:13 |
ajo | ihrachys, and, btw, you're totally right, that I should re-focus on the things I've on WIP and which are important | 09:14 |
ihrachys | anyhoo, I guess I better do some reviews instead of ranting | 09:14 |
ajo | ihrachys, :) | 09:14 |
*** iwamoto has quit IRC | 09:16 | |
ihrachys | kevinbenton: one thing I am wondering, why does the second attempt to set the same address for an interface even fails? | 09:18 |
ihrachys | I would expect the operation to be safely repeatable | 09:19 |
kevinbenton | ihrachys: the issue is that the RA has set the address | 09:19 |
*** matrohon has joined #openstack-neutron | 09:19 | |
kevinbenton | ihrachys: so it is of type 'dynamic' | 09:19 |
ihrachys | oh | 09:19 |
kevinbenton | ihrachys: so we list existing 'permanent' addresses and add what's missing | 09:19 |
kevinbenton | ihrachys: so every iteration will not see the dynamic one and fail | 09:19 |
kevinbenton | ihrachys: that's why the easy hacky fix was also to look for dynamic addresses and see if it existed in that list | 09:20 |
kevinbenton | before trying to add | 09:20 |
ihrachys | kevinbenton: so you say that 2nd attempt fails because of type difference? I can't reset an address if it's dynamic? | 09:21 |
kevinbenton | ihrachys: you can't try to add a static address to an interface if it has the same one as a dynamic address | 09:22 |
kevinbenton | ihrachys: you would have to remove the dynamic address first | 09:22 |
ihrachys | I see. now it's clear to me | 09:22 |
kevinbenton | ihrachys: the first attempt also fails because of the type difference | 09:22 |
kevinbenton | ihrachys: it's the same on each try | 09:22 |
kevinbenton | ihrachys: an invisible dynamic address that got added by a fast RA before we assigned the address manually | 09:22 |
kevinbenton | ihrachys: once it's assigned manually we are safe | 09:23 |
openstackgerrit | zhangyanxian proposed openstack/neutron: Update the guide info in add-availability-zone-4440cf00be7c54ba.yaml https://review.openstack.org/377400 | 09:23 |
kevinbenton | ihrachys: that's why it only fails sometimes (when the RA is very fast) | 09:23 |
openstackgerrit | zhangyanxian proposed openstack/neutron: Update the guide info in add-availability-zone-4440cf00be7c54ba.yaml https://review.openstack.org/377400 | 09:23 |
ihrachys | kevinbenton: 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 |
ihrachys | it's also making dhcp component depend on l3 component working | 09:25 |
kevinbenton | ihrachys: yeah, the fix that went in a long time ago that caused our issue in the first place shouldn't have gone in | 09:25 |
*** fzdarsky has joined #openstack-neutron | 09:25 | |
kevinbenton | ihrachys: https://review.openstack.org/#/c/149503/ | 09:25 |
ihrachys | basically, 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 |
kevinbenton | ihrachys: yep | 09:25 |
kevinbenton | ihrachys: that fix should have done what we are trying to do now rather than allow the DHCP to acquire its own address | 09:26 |
kevinbenton | ihrachys: as far as i can tell the DHCP agent has been broken on v6 for metadata since thing | 09:26 |
kevinbenton | ihrachys: since then* | 09:26 |
* ihrachys continues collecting uncovered test cases lately | 09:27 | |
*** jlanoux_ has joined #openstack-neutron | 09:27 | |
kevinbenton | ihrachys: yeah, the metadata one is tricky since we don't force metadata on the DHCP agent in the gate | 09:27 |
kevinbenton | ihrachys: and all of the tests where we reach a VM involve a router so metadata is hosted by it | 09:27 |
ihrachys | we have fullstack to model different setups | 09:27 |
*** mvk has quit IRC | 09:27 | |
*** reedip has quit IRC | 09:28 | |
kevinbenton | right | 09:28 |
*** namnh has quit IRC | 09:28 | |
ihrachys | kevinbenton: I think functionally you can't have dhcpv6-stateless server without an RA trigger | 09:28 |
*** namnh has joined #openstack-neutron | 09:29 | |
ihrachys | so it's not a real usability issue; ping should have worked nevertheless | 09:29 |
kevinbenton | ihrachys: well if they were using an L3 backend that didn't have metadata so they were using force_metadata | 09:29 |
kevinbenton | ihrachys: it wouldn't have worked from what i can tell | 09:30 |
*** jlanoux has quit IRC | 09:30 | |
ihrachys | yeah. it's just a very special case. :) | 09:30 |
kevinbenton | ihrachys: which i think is the case for OVN | 09:30 |
kevinbenton | ihrachys: once they do native L3 | 09:30 |
kevinbenton | ihrachys: https://review.openstack.org/#/c/375729/2/devstack/lib/networking-ovn | 09:31 |
*** miyagishi_t has quit IRC | 09:32 | |
openstackgerrit | gengchc2 proposed openstack/neutron: Replace assertEqual(None, *) with assertIsNone in tests https://review.openstack.org/374594 | 09:32 |
openstackgerrit | Moshe Levi proposed openstack/neutron: [WIP] OVS offload POC https://review.openstack.org/275616 | 09:35 |
*** gongysh has quit IRC | 09:35 | |
*** Worry has joined #openstack-neutron | 09:37 | |
*** roeyc has quit IRC | 09:39 | |
*** reedip has joined #openstack-neutron | 09:39 | |
*** namnh has quit IRC | 09:42 | |
*** thorst has joined #openstack-neutron | 09:44 | |
openstackgerrit | Hynek Mlnarik proposed openstack/neutron: Connectivity tests for OVS agent failures/restarts https://review.openstack.org/353373 | 09:44 |
openstackgerrit | zhangyanxian proposed openstack/neutron: Update the guide info in add-availability-zone-4440cf00be7c54ba.yaml https://review.openstack.org/377400 | 09:46 |
*** Worry has quit IRC | 09:47 | |
*** thorst has quit IRC | 09:51 | |
*** irenab has joined #openstack-neutron | 09:53 | |
*** annp has quit IRC | 09:54 | |
*** jlvillal has quit IRC | 09:56 | |
*** haplo37_ has quit IRC | 09:56 | |
*** diga has quit IRC | 09:57 | |
*** avico- has quit IRC | 09:57 | |
openstackgerrit | Jakub Libosvar proposed openstack/neutron: fullstack: VLAN aware VMs test https://review.openstack.org/369001 | 09:57 |
*** mvk has joined #openstack-neutron | 09:58 | |
*** avico has joined #openstack-neutron | 09:58 | |
*** haplo37_ has joined #openstack-neutron | 09:59 | |
*** jlvillal has joined #openstack-neutron | 09:59 | |
*** jlibosva has quit IRC | 10:00 | |
*** zeus has quit IRC | 10:01 | |
*** zeus has joined #openstack-neutron | 10:02 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements https://review.openstack.org/377469 | 10:02 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron-dynamic-routing: Updated from global requirements https://review.openstack.org/373765 | 10:02 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron-fwaas: Updated from global requirements https://review.openstack.org/377471 | 10:02 |
*** zeus is now known as Guest71546 | 10:02 | |
*** donghao has joined #openstack-neutron | 10:02 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron-lib: Updated from global requirements https://review.openstack.org/377474 | 10:02 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron-vpnaas: Updated from global requirements https://review.openstack.org/377475 | 10:03 |
*** EinstCrazy has quit IRC | 10:03 | |
*** EinstCrazy has joined #openstack-neutron | 10:04 | |
*** zhhuabj_ has quit IRC | 10:05 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/os-vif: Updated from global requirements https://review.openstack.org/377527 | 10:06 |
*** irenab has quit IRC | 10:07 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-neutronclient: Updated from global requirements https://review.openstack.org/371124 | 10:07 |
*** irenab has joined #openstack-neutron | 10:07 | |
*** sdague has joined #openstack-neutron | 10:08 | |
*** EinstCrazy has quit IRC | 10:08 | |
*** obondarev has quit IRC | 10:09 | |
*** gongysh has joined #openstack-neutron | 10:10 | |
*** yedongcan has quit IRC | 10:10 | |
*** yedongcan has joined #openstack-neutron | 10:11 | |
*** wu_ng has quit IRC | 10:11 | |
*** obondarev has joined #openstack-neutron | 10:13 | |
openstackgerrit | chandanc proposed openstack/neutron: [WIP] IP Conntrack Manager changes for FWaaS v2 https://review.openstack.org/333338 | 10:16 |
*** yedongcan has left #openstack-neutron | 10:16 | |
*** liuyulong is now known as yulong|away | 10:17 | |
*** irenab has quit IRC | 10:17 | |
*** yamamot__ has quit IRC | 10:20 | |
*** zhhuabj_ has joined #openstack-neutron | 10:22 | |
*** tonytan4ever has joined #openstack-neutron | 10:23 | |
*** diga has joined #openstack-neutron | 10:24 | |
*** ralonsoh has joined #openstack-neutron | 10:25 | |
*** sdake has joined #openstack-neutron | 10:27 | |
*** tonytan4ever has quit IRC | 10:28 | |
*** roeyc has joined #openstack-neutron | 10:28 | |
*** obondarev has quit IRC | 10:31 | |
*** gongysh has quit IRC | 10:34 | |
*** hoangcx has quit IRC | 10:36 | |
*** boden has joined #openstack-neutron | 10:36 | |
*** obondarev has joined #openstack-neutron | 10:37 | |
*** portdirect has quit IRC | 10:39 | |
*** salv-orlando has joined #openstack-neutron | 10:39 | |
*** scottda has quit IRC | 10:40 | |
*** jlanoux has joined #openstack-neutron | 10:46 | |
*** tbachman has quit IRC | 10:48 | |
openstackgerrit | John Schwarz proposed openstack/neutron: scheduler: add retry indicators for bind_router() https://review.openstack.org/365326 | 10:49 |
*** jlanoux_ has quit IRC | 10:49 | |
*** thorst has joined #openstack-neutron | 10:49 | |
*** nicolasbock has joined #openstack-neutron | 10:50 | |
*** nmagnezi_ has joined #openstack-neutron | 10:55 | |
*** nmagnezi has quit IRC | 10:55 | |
*** thorst has quit IRC | 10:56 | |
*** mhickey has quit IRC | 10:57 | |
*** rtheis has joined #openstack-neutron | 10:57 | |
*** garyk has joined #openstack-neutron | 11:00 | |
*** obondarev has quit IRC | 11:01 | |
sbelous | manjeets, ping | 11:01 |
*** nmagnezi_ has quit IRC | 11:02 | |
*** nmagnezi has joined #openstack-neutron | 11:02 | |
*** yamamoto has joined #openstack-neutron | 11:02 | |
rtheis | ihrachys: could you take a look at https://review.openstack.org/#/c/375529/ for networking-ovn rc2? | 11:03 |
*** sudipto has quit IRC | 11:06 | |
*** sudipto_ has quit IRC | 11:06 | |
*** ekuris has quit IRC | 11:06 | |
rtheis | kevinbenton: 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-neutron | 11:07 | |
*** sdake has quit IRC | 11:12 | |
*** mhickey has joined #openstack-neutron | 11:12 | |
*** haleyb_ has joined #openstack-neutron | 11:12 | |
*** devvesa has joined #openstack-neutron | 11:12 | |
*** yamamoto has quit IRC | 11:13 | |
haleyb_ | kevinbenton: i changed it to pass the unit tests | 11:13 |
*** devvesa has quit IRC | 11:13 | |
*** devvesa has joined #openstack-neutron | 11:14 | |
*** liuyulong has joined #openstack-neutron | 11:14 | |
*** devvesa has quit IRC | 11:15 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Disable 'accept_ra' in DHCP agent namespace https://review.openstack.org/377140 | 11:15 |
*** devvesa has joined #openstack-neutron | 11:15 | |
kevinbenton | haleyb_: https://review.openstack.org/#/c/377140/2..3/neutron/agent/linux/dhcp.py | 11:16 |
kevinbenton | haleyb_: you added that conditional back on L1380 | 11:16 |
kevinbenton | haleyb_: was that intentional? | 11:16 |
*** ivc_ has joined #openstack-neutron | 11:16 | |
*** devvesa has quit IRC | 11:16 | |
kevinbenton | rtheis: yeah, stick with the workaround until we get this figured out | 11:16 |
*** nherciu_ has joined #openstack-neutron | 11:17 | |
kevinbenton | rtheis: armando wants to revert | 11:17 |
rtheis | kevinbenton: ack | 11:17 |
haleyb_ | kevinbenton: yes, it seemed necessary to pass the tests, did it break something else? | 11:17 |
rtheis | kevinbenton: could you review https://review.openstack.org/#/c/374852/ for networking-ovn rc2 when you have time today | 11:18 |
rtheis | thanks | 11:18 |
kevinbenton | haleyb_: yeah, that undoes the fix that made the change in the first place | 11:18 |
kevinbenton | haleyb_: if we skip ipv6 addresses, the agent doesn't know about them and metadata breaks | 11:18 |
*** anilvenkata is now known as anilvenkata_afk | 11:18 | |
kevinbenton | haleyb_: i had reduced it down to is_slaac here: https://review.openstack.org/#/c/375791/10/neutron/agent/linux/dhcp.py | 11:19 |
haleyb_ | i didn't see the original bug, but why does metadata care about ipv6? | 11:19 |
kevinbenton | haleyb_: just subnet map iteration stuff | 11:19 |
*** nherciu has quit IRC | 11:19 | |
kevinbenton | haleyb_: it expects there to be an IP for each subnet a port has | 11:19 |
*** hoangcx has quit IRC | 11:20 | |
haleyb_ | oh, couldn't just 'if ip_versionn ==6 continue' ? | 11:20 |
kevinbenton | haleyb_: although if we assume there will never be ipv6 support for metadata, it might be just as easy to skip | 11:20 |
kevinbenton | yeah | 11:20 |
*** hoangcx has joined #openstack-neutron | 11: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 hack | 11:21 |
kevinbenton | haleyb_: oh, the fix would be trivial i think | 11:22 |
kevinbenton | haleyb_: the issue is a stupid branch statement | 11:22 |
kevinbenton | haleyb_: that is wrong | 11:22 |
kevinbenton | haleyb_: there already is subnet.ip_version == 4 | 11:23 |
kevinbenton | haleyb_: but self.conf.force_metadata shortcuts it | 11:23 |
*** yamamoto has joined #openstack-neutron | 11:24 | |
haleyb_ | minefield :( | 11:24 |
kevinbenton | haleyb_: 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-up | 11:25 | |
*** jpena is now known as jpena|lunch | 11:25 | |
haleyb_ | kevinbenton: i did not expect that answer | 11:27 |
*** mhickey has quit IRC | 11:27 | |
kevinbenton | haleyb_: yep, apparently neither did the reviewers or implementer :) | 11:27 |
*** salv-orlando has quit IRC | 11:27 | |
haleyb_ | gotta run and infuse myself with coffee | 11:29 |
*** moshele has quit IRC | 11:30 | |
*** moshele has joined #openstack-neutron | 11:31 | |
*** moshele has quit IRC | 11:32 | |
openstackgerrit | Lu lei proposed openstack/neutron: Remove --omit agrument in run_test.sh https://review.openstack.org/377621 | 11:33 |
kevinbenton | ihrachys: i'm confused by your comment here https://review.openstack.org/#/c/377233/1 | 11:33 |
kevinbenton | ihrachys: both changes were part of eliminating the keyerrors in that map | 11:34 |
*** sudipto has joined #openstack-neutron | 11:38 | |
*** sudipto_ has joined #openstack-neutron | 11:39 | |
*** salv-orlando has joined #openstack-neutron | 11:40 | |
*** shz has quit IRC | 11:41 | |
*** shihanzhang has joined #openstack-neutron | 11:43 | |
*** pgadiya has quit IRC | 11:43 | |
ihrachys | kevinbenton: but not in the same scenario? | 11:45 |
ihrachys | kevinbenton: those are two separate ones, right? | 11:45 |
kevinbenton | ihrachys: right, but they both led to the same KeyError in the bug report | 11:45 |
*** obondarev has joined #openstack-neutron | 11:45 | |
ihrachys | kevinbenton: 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 |
openstackgerrit | Kevin Benton proposed openstack/neutron: Correct fix for IPv6 auto address interfaces https://review.openstack.org/377626 | 11:49 |
kevinbenton | ihrachys: ^^ | 11:49 |
*** haleyb_ has quit IRC | 11:49 | |
*** bkopilov has quit IRC | 11:50 | |
ihrachys | kevinbenton: oh well. I think I saw that in https://review.openstack.org/#/c/372259/ | 11:50 |
*** jlibosva has joined #openstack-neutron | 11:50 | |
kevinbenton | ihrachys: yeah, the only reason we would want the other approaches is if we think metadata will ever get v6 support | 11:51 |
kevinbenton | ihrachys: but if that happens we would need different routes, etc anyway | 11:51 |
kevinbenton | ihrachys: yeah, that patch would also fix it | 11:51 |
kevinbenton | ihrachys: up to you how you think we should proceed | 11:52 |
*** thorst has joined #openstack-neutron | 11:53 | |
ihrachys | kevinbenton: honestly, it seems like stylistically the other patch is better. it simplifies the conditional that apparently grew out of proportion | 11:53 |
ihrachys | we could land Armando's revert and that patch, that would give us the fix | 11:54 |
kevinbenton | and then we are left with keyerrors | 11:55 |
*** garyk has quit IRC | 11:55 | |
ihrachys | ah right, server still misbehaving | 11:55 |
kevinbenton | but at least they wouldn't be fatal, they would just be the ones from the ipam races | 11:55 |
*** pgadiya has joined #openstack-neutron | 11:56 | |
*** amuller has joined #openstack-neutron | 12:00 | |
*** jamesdenton has quit IRC | 12:01 | |
kevinbenton | ihrachys: do we not allow host-routes on v6 subnets? | 12:01 |
kevinbenton | ihrachys: because this skips it https://review.openstack.org/#/c/372259/1/neutron/agent/linux/dhcp.py | 12:02 |
*** ratailor has quit IRC | 12:02 | |
*** jckasper has joined #openstack-neutron | 12:02 | |
*** bzhao has quit IRC | 12:03 | |
*** bzhao has joined #openstack-neutron | 12:03 | |
ihrachys | kevinbenton: neither before the patch. the option is written under is_4 conditional | 12:04 |
kevinbenton | ihrachys: no | 12:04 |
*** sandanar_ has joined #openstack-neutron | 12:04 | |
*** rmart04_ has joined #openstack-neutron | 12:04 | |
ihrachys | kevinbenton: sorry, distracted by a meeting, I will check later. | 12:04 |
kevinbenton | ihrachys: https://review.openstack.org/#/c/372259/1/neutron/agent/linux/dhcp.py@890 | 12:04 |
kevinbenton | ihrachys: but it does seem like we don't do anything with them | 12:05 |
kevinbenton | ihrachys: no worries | 12:05 |
*** narayrak has joined #openstack-neutron | 12:05 | |
kevinbenton | ihrachys: just noticing more weird differences between the versions :) | 12:05 |
*** moshele has joined #openstack-neutron | 12:05 | |
*** ekuris has joined #openstack-neutron | 12:06 | |
*** kumarb has joined #openstack-neutron | 12:06 | |
*** davidsha has quit IRC | 12:06 | |
*** rcarrillocruz has quit IRC | 12:06 | |
*** bks has quit IRC | 12:06 | |
*** liusheng has quit IRC | 12:06 | |
*** liusheng has joined #openstack-neutron | 12:07 | |
*** rcarrillocruz has joined #openstack-neutron | 12:07 | |
*** rmart04 has quit IRC | 12:07 | |
*** rmart04_ is now known as rmart04 | 12:07 | |
*** jckasper has quit IRC | 12:07 | |
ihrachys | kevinbenton: yes, I was referring to that - we collect them but then don't write it out for ipv4 subnets | 12:08 |
*** rodrigods has quit IRC | 12:12 | |
*** rodrigods has joined #openstack-neutron | 12:12 | |
openstackgerrit | Paul Michali proposed openstack/neutron-vpnaas: Fix import breakage in functional test https://review.openstack.org/377654 | 12:14 |
*** davidsha has joined #openstack-neutron | 12:15 | |
*** gouthamr has joined #openstack-neutron | 12:16 | |
*** sudipto_ has quit IRC | 12:16 | |
*** sudipto has quit IRC | 12:16 | |
*** sudipto has joined #openstack-neutron | 12:17 | |
*** tpsilva has joined #openstack-neutron | 12:18 | |
*** hynekm has quit IRC | 12:20 | |
*** obondarev has quit IRC | 12:24 | |
*** jpena|lunch is now known as jpena | 12:24 | |
*** hynekm has joined #openstack-neutron | 12:26 | |
*** obondarev has joined #openstack-neutron | 12:27 | |
*** sdake has joined #openstack-neutron | 12:28 | |
*** liuyulong has quit IRC | 12:29 | |
*** markvoelker has joined #openstack-neutron | 12:29 | |
*** matrohon has quit IRC | 12:30 | |
*** edmondsw has joined #openstack-neutron | 12:30 | |
*** portdirect has joined #openstack-neutron | 12:33 | |
*** yamamoto has quit IRC | 12:33 | |
openstackgerrit | Ukesh Kumar proposed openstack/neutron: metering-label-rule doesn't need 'tenant_id' https://review.openstack.org/377664 | 12:34 |
*** baoli has joined #openstack-neutron | 12:36 | |
*** haleyb_ has joined #openstack-neutron | 12:40 | |
*** yamamoto has joined #openstack-neutron | 12:40 | |
*** SKipp_ has joined #openstack-neutron | 12:41 | |
*** anilvenkata_afk is now known as anilvenkata | 12:42 | |
*** salv-orlando has quit IRC | 12:45 | |
*** brad_behle has joined #openstack-neutron | 12:46 | |
*** fnaval_ has quit IRC | 12:49 | |
*** matrohon has joined #openstack-neutron | 12:49 | |
*** fnaval has joined #openstack-neutron | 12:50 | |
*** ganeshnalawade has joined #openstack-neutron | 12:50 | |
*** kumarb has quit IRC | 12:50 | |
openstackgerrit | Yushiro FURUKAWA proposed openstack/neutron-fwaas: Fix import path for l3_config https://review.openstack.org/377674 | 12:51 |
*** ganeshnalawade has quit IRC | 12:52 | |
*** ganeshnalawade has joined #openstack-neutron | 12:52 | |
*** roeyc has quit IRC | 12:53 | |
*** obondarev has quit IRC | 12:53 | |
*** claudiub has joined #openstack-neutron | 12:53 | |
*** fnaval has quit IRC | 12:54 | |
*** ganeshnalawade has quit IRC | 12:54 | |
*** tonytan4ever has joined #openstack-neutron | 12:54 | |
*** jckasper has joined #openstack-neutron | 12:55 | |
*** david-lyle has joined #openstack-neutron | 12:56 | |
*** moshele has quit IRC | 12:56 | |
*** tlian has joined #openstack-neutron | 12:56 | |
*** tonytan4ever has quit IRC | 12:57 | |
*** baoli_ has joined #openstack-neutron | 12:58 | |
*** zkassab has joined #openstack-neutron | 12:58 | |
*** cbits has joined #openstack-neutron | 13:00 | |
*** tonytan4ever has joined #openstack-neutron | 13:00 | |
*** baoli has quit IRC | 13:01 | |
*** janzian has joined #openstack-neutron | 13:02 | |
*** jckasper has quit IRC | 13:03 | |
*** tbachman has joined #openstack-neutron | 13:04 | |
*** roeyc has joined #openstack-neutron | 13:06 | |
*** roeyc has quit IRC | 13:07 | |
*** absubram has joined #openstack-neutron | 13:07 | |
*** diga has quit IRC | 13:08 | |
*** obondarev has joined #openstack-neutron | 13:09 | |
*** jckasper has joined #openstack-neutron | 13:10 | |
*** rmcall has quit IRC | 13:10 | |
*** pgadiya has quit IRC | 13:11 | |
*** yamamoto has quit IRC | 13:12 | |
*** fnaval has joined #openstack-neutron | 13:12 | |
*** salv-orlando has joined #openstack-neutron | 13:12 | |
*** roeyc has joined #openstack-neutron | 13:12 | |
*** SKipp_ has quit IRC | 13:14 | |
haleyb_ | kevinbenton: so with that new change does the dhcp namespace still auto-configure an IPv6 address? | 13:15 |
kevinbenton | haleyb_: yes, goes back to previous behavior | 13:15 |
kevinbenton | haleyb_: we don't try to set the v6 address | 13:15 |
*** trisq has quit IRC | 13:16 | |
haleyb_ | kevinbenton: is that something we should fix in ocata? putting the accept_ra code in place? | 13:17 |
kevinbenton | haleyb_: 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 weird | 13:17 |
kevinbenton | haleyb_: make it more consistent between the two | 13:18 |
haleyb_ | right, even though it works because we set the MAC it seems wrong to rely on the RA | 13:19 |
*** rossella_s has quit IRC | 13:19 | |
*** hynekm has quit IRC | 13:19 | |
*** mriedem has joined #openstack-neutron | 13:19 | |
*** rossella_s has joined #openstack-neutron | 13:20 | |
*** Guest71546 is now known as zeus | 13:20 | |
*** zeus has quit IRC | 13:20 | |
*** zeus has joined #openstack-neutron | 13:20 | |
kevinbenton | haleyb_: yeah, there isn't anything too wrong with it. just inconsistent way that we handle addressing | 13:20 |
kevinbenton | haleyb_: just for simplicity it would be nice if we just always set the address | 13:20 |
haleyb_ | kevinbenton: i agree, can fix it when the dust settles on newton | 13:21 |
*** jheroux has joined #openstack-neutron | 13:21 | |
Sam-I-Am | moo./ | 13:22 |
* haleyb_ didn't bring any hay | 13:22 | |
Sam-I-Am | hay is for horses | 13:22 |
*** hynekm has joined #openstack-neutron | 13:22 | |
Sam-I-Am | this cow eats bacon | 13:22 |
*** tongli has joined #openstack-neutron | 13:23 | |
*** gvrangan has joined #openstack-neutron | 13:24 | |
*** jckasper has quit IRC | 13:24 | |
*** jckasper has joined #openstack-neutron | 13:25 | |
sbelous | amuller, ping | 13:26 |
*** irenab has joined #openstack-neutron | 13:26 | |
*** korzen has quit IRC | 13:26 | |
haleyb_ | Sam-I-Am: you must have noticed the IPv6 talk... | 13:27 |
*** jckasper has quit IRC | 13:27 | |
*** jckasper has joined #openstack-neutron | 13:28 | |
*** mlavalle has joined #openstack-neutron | 13:28 | |
*** absubram has quit IRC | 13:29 | |
Sam-I-Am | i did | 13:29 |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: Relocate L3 DB Models https://review.openstack.org/348562 | 13:30 |
haleyb_ | Sam-I-Am: it's really just internal address in the dhcp namespace, should be statically configured but isn't | 13:31 |
*** prateek_ has quit IRC | 13:32 | |
*** obondarev has quit IRC | 13:34 | |
Sam-I-Am | so it's getting ra'd ? | 13:34 |
*** obondarev has joined #openstack-neutron | 13:35 | |
*** hynekm has quit IRC | 13:35 | |
*** yamamoto has joined #openstack-neutron | 13:35 | |
*** yamamoto has quit IRC | 13:35 | |
haleyb_ | Sam-I-Am: yes, so we need to fix that | 13:38 |
*** yamamoto has joined #openstack-neutron | 13:38 | |
anilvenkata | HenryG, ping | 13:40 |
*** alraddarla_ has joined #openstack-neutron | 13:40 | |
*** scottda has joined #openstack-neutron | 13:40 | |
Sam-I-Am | yeah, 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 infra | 13:40 |
haleyb_ | kevinbenton: i'm fine with https://review.openstack.org/#/c/377626/ want i +A ? then it has to get to RC2 | 13:41 |
*** vnogin has joined #openstack-neutron | 13:41 | |
*** lilintan has joined #openstack-neutron | 13:42 | |
*** salv-orl_ has joined #openstack-neutron | 13: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 it | 13:42 |
Sam-I-Am | on a private net, i think instances get the ips they are assigned | 13:43 |
*** bkopilov has joined #openstack-neutron | 13:43 | |
*** fnaval has quit IRC | 13:43 | |
*** woodburn has quit IRC | 13:43 | |
*** _oanson has joined #openstack-neutron | 13:44 | |
*** fnaval has joined #openstack-neutron | 13:44 | |
*** mugsie__ is now known as mugsie | 13:45 | |
*** jamesdenton has joined #openstack-neutron | 13:45 | |
*** salv-orlando has quit IRC | 13:46 | |
*** oanson has quit IRC | 13:46 | |
haleyb_ | Sam-I-Am: right, but it sees the RA and auto-configures, is that what you were saying ^^ | 13:47 |
Sam-I-Am | lemmie boot an instance and see | 13:48 |
*** jpena is now known as jpena|off | 13:48 | |
*** jpena|off is now known as jpena | 13:48 | |
*** woodburn has joined #openstack-neutron | 13:49 | |
Sam-I-Am | so, 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 IRC | 13:49 | |
haleyb_ | Sam-I-Am: does it have "dynamic" flag set? | 13:49 |
Sam-I-Am | on what? | 13:49 |
haleyb_ | ip -6 a | 13:49 |
*** hoangcx has joined #openstack-neutron | 13:50 | |
*** shausy has quit IRC | 13:50 | |
*** gkadam has quit IRC | 13:50 | |
haleyb_ | fdxx::1 ... dynamic | 13:50 |
Sam-I-Am | hold on, poking at instance | 13:50 |
*** hichihara has joined #openstack-neutron | 13:50 | |
*** rossella_ has joined #openstack-neutron | 13:51 | |
*** rossella_ has quit IRC | 13:51 | |
haleyb_ | neutron will compute the address based on the prefix and mac, but the instance will configure it | 13:51 |
Sam-I-Am | ah ok, so thats how it knows. | 13:52 |
Sam-I-Am | ra isnt super complex :) | 13:52 |
*** liuyulong has joined #openstack-neutron | 13:53 | |
haleyb | nope. somewhere in ipv6_utils there's an address generator, and that's used to populate the DB | 13:53 |
*** kriskend has joined #openstack-neutron | 13:55 | |
*** sbelous_ has quit IRC | 13:56 | |
*** rajinir has joined #openstack-neutron | 13:56 | |
*** hoangcx has quit IRC | 13:57 | |
*** yamahata has joined #openstack-neutron | 13:57 | |
*** yamahata has quit IRC | 13:57 | |
*** iyamahat has joined #openstack-neutron | 13:58 | |
*** yamahata has joined #openstack-neutron | 13:58 | |
*** hoangcx has joined #openstack-neutron | 13:58 | |
*** trisq has joined #openstack-neutron | 13:59 | |
*** dane_leblanc_ has joined #openstack-neutron | 14:00 | |
*** dane_leblanc__ has joined #openstack-neutron | 14:01 | |
*** yb has joined #openstack-neutron | 14:01 | |
*** ivasilevskaya has joined #openstack-neutron | 14:02 | |
*** banix has joined #openstack-neutron | 14:04 | |
*** dane_leblanc_ has quit IRC | 14:04 | |
jschwarz | haleyb, 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 IRC | 14:06 | |
Sam-I-Am | haleyb: i guess the key here is trying all this with dhcpv6. | 14:07 |
Sam-I-Am | with slaac, the dhcp ns doesnt even get a v6 address on the subnet | 14:08 |
haleyb | Sam-I-Am: it does in private networks | 14:08 |
Sam-I-Am | it didn't here, at least not with slaac | 14:09 |
haleyb | jschwarz: i will look after meeting, but i now have 6 meetings today, how to managers do it? :) | 14:09 |
haleyb | Sam-I-Am: this is from my dhcp namespace on the tap device | 14:10 |
haleyb | inet6 fd8e:558e:2a1b:0:f816:3eff:fe4a:e5ef/64 scope global mngtmpaddr dynamic | 14:10 |
jschwarz | haleyb, with great sufferings come great responsibility | 14:10 |
haleyb | suffering is right | 14:10 |
Sam-I-Am | haleyb: oh, *now* it has one. it didnt for a while. | 14:11 |
haleyb | jschwarz: so i still have the same problem with those methods, i'lll bet the nsx plugin (or some other private one) could get broken | 14:12 |
haleyb | Sam-I-Am: depending on the config RAs could be minutes in-between | 14:12 |
Sam-I-Am | this is just the defaults | 14:12 |
jschwarz | haleyb, that's... their fault for being private, then? ;-) | 14:12 |
haleyb | Sam-I-Am: is that a provider setup? | 14:13 |
haleyb | jschwarz: ask garyk about stuff like this, we've accidentally broken nsx a few times | 14:14 |
*** ganeshnalawade has joined #openstack-neutron | 14:14 | |
*** ganeshnalawade has quit IRC | 14:16 | |
*** ganeshnalawade has joined #openstack-neutron | 14:16 | |
Sam-I-Am | haleyb: this is a provider net + a selfservice net | 14:16 |
haleyb | Sam-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 previous | 14:19 |
*** john-dav_ has joined #openstack-neutron | 14:20 | |
*** john-davidge has quit IRC | 14:20 | |
*** john-dav_ is now known as john-davidge | 14:20 | |
*** ekuris has quit IRC | 14:22 | |
Sam-I-Am | haleyb: dhcp ns | 14:23 |
*** sdake has quit IRC | 14:24 | |
*** sudipto_ has joined #openstack-neutron | 14:24 | |
*** vhoward has joined #openstack-neutron | 14:26 | |
haleyb | Sam-I-Am: i don't know then, i figured the port would be added to the bridge before it's brought up | 14:26 |
*** banix has quit IRC | 14:28 | |
openstackgerrit | KATO Tomoyuki proposed openstack/neutron-lib: [api-ref] configure LogABug feature https://review.openstack.org/377741 | 14:28 |
*** viniciusarcanjo_ has quit IRC | 14:30 | |
*** viniciusarcanjo_ has joined #openstack-neutron | 14:30 | |
*** tbachman has quit IRC | 14:30 | |
*** prateek has joined #openstack-neutron | 14:31 | |
*** banix has joined #openstack-neutron | 14:32 | |
*** amotoki_ has quit IRC | 14:33 | |
*** brad_behle has quit IRC | 14:33 | |
*** brad_behle has joined #openstack-neutron | 14:34 | |
*** amotoki__ has joined #openstack-neutron | 14:35 | |
*** iyamahat has quit IRC | 14:37 | |
*** sdake has joined #openstack-neutron | 14:37 | |
*** tflynn has quit IRC | 14:37 | |
*** anilvenkata has quit IRC | 14:38 | |
*** marst has quit IRC | 14:38 | |
*** yb has quit IRC | 14:39 | |
rtheis | ihrachys: could you take a look at https://review.openstack.org/#/c/375529/ for networking-ovn rc2? | 14:40 |
boden | HenryG 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 time | 14:40 |
HenryG | boden: ack | 14:40 |
*** obondarev has quit IRC | 14:41 | |
*** john-davidge has quit IRC | 14:43 | |
*** wolverin_ has joined #openstack-neutron | 14:44 | |
*** amotoki__ has quit IRC | 14:45 | |
*** john-davidge has joined #openstack-neutron | 14:45 | |
openstackgerrit | Merged openstack/neutron-vpnaas: Fix import breakage in functional test https://review.openstack.org/377654 | 14:47 |
*** wolverineav has quit IRC | 14:47 | |
*** hichihara has quit IRC | 14:49 | |
*** Esha has joined #openstack-neutron | 14:52 | |
Esha | Hi , I wanted to get some inputs on https://bugs.launchpad.net/neutron/+bug/1616357 | 14:52 |
openstack | Launchpad bug 1616357 in neutron "The Error Response REST API GET/POST on networks is not translated" [Undecided,New] | 14:52 |
*** marst has joined #openstack-neutron | 14:53 | |
*** john-davidge has quit IRC | 14:53 | |
*** sshank has joined #openstack-neutron | 14:53 | |
*** BobBall_ has joined #openstack-neutron | 14:53 | |
Esha | Its a valid defect and still seen in latest builds | 14: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-neutron | 14:56 | |
rajinir | Devstack fails with Bad subnets request: allocation_pools allowed only for specific subnet requests... ? | 14:56 |
rajinir | Has something changed? | 14:56 |
russellb | BobBall_: nope | 14:56 |
BobBall_ | russellb: Got source somewhere so I can have a look at what's going on? | 14:57 |
*** Hassen has joined #openstack-neutron | 14:57 | |
russellb | openstack-infra/reviewstats | 14:57 |
Hassen | Hi 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 IRC | 14:57 | |
russellb | the scripts are primitive | 14:58 |
russellb | "all" might be broken purely based on RAM consumption | 14:58 |
russellb | that requires putting the entire review history of *all* projects in memory | 14:58 |
*** yulong|away has quit IRC | 14:58 | |
BobBall_ | Oh awesome :) | 14:59 |
russellb | cinder shouldn't be broken at least | 14:59 |
BobBall_ | I suspect cinder repos aren't up to date? | 14:59 |
BobBall_ | Which would probably break all too? | 14:59 |
russellb | could be, i'm testing manually | 15:00 |
russellb | it also uses a primitive cache of review history ... writes pickled version to disk | 15:00 |
russellb | cinder one was corrupted, so that was probably the problem on that one | 15:00 |
BobBall_ | Ah - great | 15:02 |
*** gvrangan has quit IRC | 15:03 | |
*** mhickey has joined #openstack-neutron | 15:03 | |
*** mriedem is now known as mriedem_meeting | 15:05 | |
*** pcaruana has quit IRC | 15:06 | |
*** yamamoto has quit IRC | 15:06 | |
*** rcernin has quit IRC | 15:07 | |
russellb | BobBall_: give it another look in an hour or so and cinder should be there at least ... | 15:07 |
*** iyamahat has joined #openstack-neutron | 15:07 | |
BobBall_ | Awesome, thanks. | 15:08 |
*** Worry has joined #openstack-neutron | 15:08 | |
*** woodburn1 has joined #openstack-neutron | 15:10 | |
Hassen | Someone can help with DHCP issue ? | 15:11 |
*** tbachman has joined #openstack-neutron | 15:11 | |
*** woodburn has quit IRC | 15:12 | |
*** iyamahat has quit IRC | 15:13 | |
ihrachys | rtheis: +A | 15:14 |
rtheis | thx | 15:14 |
*** numans has quit IRC | 15:14 | |
*** amotoki has joined #openstack-neutron | 15:15 | |
*** lucasagomes is now known as lucas-hungry | 15:16 | |
*** haplo37__ has joined #openstack-neutron | 15:17 | |
*** openstackgerrit has quit IRC | 15:18 | |
rtheis | ihrachys, armax, kevinbenton: are we okay to close on the networking-ovn workaround in rc2 for dhcp? https://review.openstack.org/#/c/374852/ | 15:18 |
armax | rtheis: figuring it out now | 15:19 |
rtheis | ack | 15:19 |
*** openstackgerrit has joined #openstack-neutron | 15:19 | |
*** banix has quit IRC | 15:20 | |
*** crose has joined #openstack-neutron | 15:20 | |
armax | rtheis: it looks like ihrachys and kevinbenton have it all figure it out | 15:21 |
*** trevormc has joined #openstack-neutron | 15:23 | |
*** prateek_ has joined #openstack-neutron | 15:23 | |
*** banix has joined #openstack-neutron | 15:24 | |
ihrachys | rtheis: 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 order | 15:24 |
rtheis | ihrachys: thank you, let's hope you don't have to join an order :) | 15:25 |
*** ccard has joined #openstack-neutron | 15:25 | |
rtheis | ihrachys: so I should abandon the workaround for rc2? | 15:25 |
*** hoangcx has quit IRC | 15:26 | |
*** yamahata has quit IRC | 15:26 | |
ihrachys | rtheis: let's set it to WIP for newton | 15:26 |
ihrachys | rtheis: and revert once we are sure it's gone | 15:26 |
*** hoangcx has joined #openstack-neutron | 15:26 | |
ihrachys | rtheis: revert in master I mean | 15:26 |
*** prateek has quit IRC | 15:27 | |
*** andreas_s has quit IRC | 15:27 | |
rtheis | ihrachys: ack | 15:27 |
ihrachys | I set to WIP for now | 15:27 |
*** rmart04 has quit IRC | 15:28 | |
*** amotoki has quit IRC | 15:29 | |
*** Esha has quit IRC | 15:29 | |
*** liuyulong has quit IRC | 15:29 | |
*** kobis has quit IRC | 15:29 | |
*** sterdnotshaken has joined #openstack-neutron | 15:32 | |
*** blogan_ is now known as blogan | 15:33 | |
*** yamamoto has joined #openstack-neutron | 15:33 | |
*** tbachman has quit IRC | 15:33 | |
*** devvesa has joined #openstack-neutron | 15:39 | |
*** kriskend has quit IRC | 15:40 | |
*** kriskend has joined #openstack-neutron | 15:41 | |
*** Hassen has quit IRC | 15:41 | |
*** donghao has quit IRC | 15:41 | |
*** obondarev has joined #openstack-neutron | 15:41 | |
*** kriskend has quit IRC | 15:43 | |
frickler | rajinir: sounds similar to https://bugs.launchpad.net/trove/+bug/1628090 | 15:43 |
openstack | Launchpad 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 IRC | 15:43 | |
*** kriskend has joined #openstack-neutron | 15:43 | |
*** trisq has quit IRC | 15:44 | |
*** trisq has joined #openstack-neutron | 15:44 | |
*** roeyc has quit IRC | 15:45 | |
*** amotoki has joined #openstack-neutron | 15:45 | |
*** sandanar_ has quit IRC | 15:46 | |
*** obondarev has quit IRC | 15:48 | |
rajinir | <frickler: Any idea what I'm missing? Should I specify the SUBNETPOOL_PREFIX? | 15:50 |
*** hieulq_ has joined #openstack-neutron | 15:50 | |
*** wolverin_ has quit IRC | 15:51 | |
*** pbandark has quit IRC | 15:56 | |
*** tbachman has joined #openstack-neutron | 15:56 | |
*** tflynn has joined #openstack-neutron | 15:57 | |
*** mhickey has quit IRC | 15:58 | |
openstackgerrit | Victor Morales proposed openstack/neutron: Service Type to OVO https://review.openstack.org/304322 | 15:58 |
*** s3wong has joined #openstack-neutron | 16:00 | |
*** tbachman_ has joined #openstack-neutron | 16:01 | |
*** wolverineav has joined #openstack-neutron | 16:01 | |
*** tbachman has quit IRC | 16:02 | |
*** tbachman_ is now known as tbachman | 16:02 | |
*** Worry has quit IRC | 16:03 | |
*** haleyb_ has joined #openstack-neutron | 16:04 | |
*** haplo37_ has quit IRC | 16:05 | |
*** gvrangan has joined #openstack-neutron | 16:05 | |
*** lilintan has quit IRC | 16:06 | |
*** iyamahat has joined #openstack-neutron | 16:06 | |
*** obondarev has joined #openstack-neutron | 16:06 | |
davidsha | ajo: ping | 16:07 |
*** haplo37_ has joined #openstack-neutron | 16:07 | |
*** jlanoux has quit IRC | 16:08 | |
openstackgerrit | Anindita Das proposed openstack/neutron-lib: api-ref: Fix api-ref for service-providers https://review.openstack.org/358396 | 16:08 |
openstackgerrit | Aradhana Singh proposed openstack/neutron: OVO for Provisioning Block DB Model https://review.openstack.org/357488 | 16:10 |
*** brad_behle has quit IRC | 16:11 | |
*** salv-orl_ has quit IRC | 16:11 | |
*** salv-orlando has joined #openstack-neutron | 16:12 | |
*** matrohon has quit IRC | 16:12 | |
*** lucas-hungry is now known as lucasagomes | 16:16 | |
*** mvk has quit IRC | 16:17 | |
dougwig | boden: ack, and ty. | 16:19 |
*** sudipto_ has quit IRC | 16:19 | |
*** sudipto has quit IRC | 16:19 | |
openstackgerrit | Anindita Das proposed openstack/neutron: [WIP] Integration of RouterL3AgentBinding https://review.openstack.org/377074 | 16:20 |
*** sudipto has joined #openstack-neutron | 16:20 | |
*** sudipto_ has joined #openstack-neutron | 16:20 | |
*** ptoohill has quit IRC | 16:21 | |
*** Hassen has joined #openstack-neutron | 16:22 | |
Hassen | someone can help with a Linux DHPC issue ? | 16:22 |
Hassen | I need to open some securty group I think ... | 16:22 |
dasm | Hassen: could you describe your problem. Then someone could weigh in and maybe answer your question. | 16:23 |
dasm | Hassen: don't ask to ask, just ask. | 16:23 |
*** trisq has quit IRC | 16:24 | |
*** portdirect has quit IRC | 16:24 | |
Hassen | dasm sure I have a Ubuntu instance as DHCP and a client, my client can't receive is ip address | 16:24 |
openstackgerrit | Merged openstack/neutron-lib: Updated from global requirements https://review.openstack.org/377474 | 16:24 |
dasm | Hassen: what kind of env are you using? devstack? production env? | 16:25 |
Hassen | production env openstack liberty | 16:25 |
dasm | Hassen: did you check your logs? tried to verify if everything is working? | 16:25 |
dasm | Hassen: when did it start? did you change anything? | 16:26 |
Hassen | I can see the DHCPDISCOVERY on the logs | 16:26 |
openstackgerrit | Shashank Kumar Shankar proposed openstack/neutron: OVO for Provisioning Block DB Model https://review.openstack.org/357488 | 16:26 |
*** baoli_ has quit IRC | 16:26 | |
Hassen | dasm I added some security groups like UDP 67 and 68 | 16:27 |
*** iyamahat has quit IRC | 16:28 | |
openstackgerrit | Sindhu Devale proposed openstack/neutron: OVO for Router Route https://review.openstack.org/356223 | 16:28 |
Hassen | dasm on the DHCP server I have the DHCPDISCOVER and DHCPOFFER with my client machine name | 16:28 |
dasm | Hassen: i'm pretty sure, you're not required to have secgoup with udp, to receive dhcp offer | 16:28 |
Hassen | should I delete them ? | 16:29 |
*** igordcar1 has quit IRC | 16:29 | |
*** igordcard has joined #openstack-neutron | 16:29 | |
dasm | Hassen: are you able to verify if your logs for client machine, and check if it receives dhcp? | 16:30 |
dasm | Hassen: are you using two nics? maybe you're trying to reach vm, with nic which is down? | 16:30 |
*** ekarlso_ has quit IRC | 16:31 | |
Hassen | dasm i'm doing a tcpdum from my client and I can see some DHCP requesti on it | 16:31 |
*** fnaval_ has joined #openstack-neutron | 16:34 | |
*** bbzhao has joined #openstack-neutron | 16:34 | |
*** lezbar has joined #openstack-neutron | 16:34 | |
*** tonytan_brb has joined #openstack-neutron | 16:34 | |
*** tlian2 has joined #openstack-neutron | 16:34 | |
*** david-lyle_ has joined #openstack-neutron | 16:35 | |
*** tongli_ has joined #openstack-neutron | 16:35 | |
*** ababich1 has joined #openstack-neutron | 16:36 | |
*** kriskend_ has joined #openstack-neutron | 16:36 | |
*** zhenguo_ has joined #openstack-neutron | 16:36 | |
*** tmorin has quit IRC | 16:36 | |
*** xek_ has joined #openstack-neutron | 16:36 | |
*** zhenguo has quit IRC | 16:36 | |
*** ildikov has quit IRC | 16:36 | |
*** haplo37__ has quit IRC | 16:36 | |
*** njohnston has quit IRC | 16:36 | |
*** leifz has quit IRC | 16:36 | |
*** patrickeast has quit IRC | 16:36 | |
*** martink2 has quit IRC | 16:36 | |
*** kuromagi has quit IRC | 16:36 | |
*** hieulq__ has joined #openstack-neutron | 16:36 | |
*** jckasper has quit IRC | 16:36 | |
*** alaski has quit IRC | 16:36 | |
*** xgerman has quit IRC | 16:36 | |
*** kuromagi has joined #openstack-neutron | 16:36 | |
*** asingh_ has quit IRC | 16:36 | |
openstackgerrit | Manjeet Singh Bhatia proposed openstack/neutron: Relocate Metering DB models https://review.openstack.org/348757 | 16:36 |
*** shz has joined #openstack-neutron | 16:36 | |
*** armax has quit IRC | 16:36 | |
*** rtheis has quit IRC | 16:36 | |
*** Alex_Stef has quit IRC | 16:36 | |
*** ltomasbo has quit IRC | 16:36 | |
*** lezbar__ has quit IRC | 16:36 | |
*** dansmith has quit IRC | 16:36 | |
*** thorst has quit IRC | 16:37 | |
*** plopix has quit IRC | 16:37 | |
*** yee3793 has quit IRC | 16:37 | |
*** marst has quit IRC | 16:37 | |
*** fnaval has quit IRC | 16:37 | |
*** ivasilevskaya has quit IRC | 16:37 | |
*** aswadr_ has quit IRC | 16:37 | |
*** pckizer_ has quit IRC | 16:37 | |
*** dkehn_ has quit IRC | 16:37 | |
*** tobias-fiberdata has quit IRC | 16:37 | |
*** boden_ has joined #openstack-neutron | 16:37 | |
*** hieulq_ has quit IRC | 16:37 | |
*** kriskend has quit IRC | 16:37 | |
*** nicolasbock has quit IRC | 16:37 | |
*** jlvillal has quit IRC | 16:37 | |
*** fzdarsky has quit IRC | 16:37 | |
*** jprovazn has quit IRC | 16:37 | |
*** akamyshnikova_ has quit IRC | 16:37 | |
*** ndahiwade has quit IRC | 16:37 | |
*** rickflare has quit IRC | 16:37 | |
*** banix_ has joined #openstack-neutron | 16:37 | |
*** zkassab_ has joined #openstack-neutron | 16:37 | |
*** Kimmo__ has joined #openstack-neutron | 16:37 | |
*** narayrak has quit IRC | 16:37 | |
*** yee379 has joined #openstack-neutron | 16:37 | |
*** hoangcx has quit IRC | 16:37 | |
*** salv-orlando has quit IRC | 16:37 | |
*** Kimmo_ has quit IRC | 16:37 | |
*** Guest73334 has quit IRC | 16:37 | |
*** John341 has quit IRC | 16:37 | |
*** sticker_ has joined #openstack-neutron | 16:37 | |
*** ababich has quit IRC | 16:37 | |
*** John341_ has joined #openstack-neutron | 16:37 | |
*** david-lyle has quit IRC | 16:37 | |
*** sticker_ is now known as 17WAAQNWW | 16:37 | |
*** amuller_ has joined #openstack-neutron | 16:37 | |
*** woodburn1 has quit IRC | 16:37 | |
*** mriedem_meeting has quit IRC | 16:37 | |
*** serverascode has quit IRC | 16:37 | |
*** stevemar has quit IRC | 16:37 | |
*** hoangcx2 has joined #openstack-neutron | 16:37 | |
*** mrhillsman has quit IRC | 16:37 | |
*** clarkb has quit IRC | 16:37 | |
*** stevemar has joined #openstack-neutron | 16:37 | |
*** rtheis_ has joined #openstack-neutron | 16:37 | |
*** sticker_ has joined #openstack-neutron | 16:37 | |
*** banix has quit IRC | 16:37 | |
*** zkassab has quit IRC | 16:37 | |
*** boden has quit IRC | 16:37 | |
*** banix_ is now known as banix | 16:37 | |
*** Jeffrey4l has quit IRC | 16:37 | |
*** boden_ is now known as boden | 16:37 | |
*** stevebak` has quit IRC | 16:37 | |
*** med_ has quit IRC | 16:37 | |
*** stajkowski1 has quit IRC | 16:37 | |
*** nicolasbock has joined #openstack-neutron | 16:37 | |
*** bkopilov has quit IRC | 16:37 | |
*** cbits has quit IRC | 16:37 | |
*** claudiub has quit IRC | 16:37 | |
*** reedip has quit IRC | 16:37 | |
*** otherwiseguy has quit IRC | 16:37 | |
*** 14WAAHO67 has joined #openstack-neutron | 16:37 | |
*** alaski_ has joined #openstack-neutron | 16:37 | |
*** tflynn has quit IRC | 16:37 | |
*** bzhao has quit IRC | 16:37 | |
*** avico has quit IRC | 16:37 | |
*** krtaylor has quit IRC | 16:37 | |
*** dsneddon_lunch has quit IRC | 16:37 | |
*** danofsatx has quit IRC | 16:37 | |
*** pckizer has joined #openstack-neutron | 16:37 | |
*** roaet has joined #openstack-neutron | 16:37 | |
*** janzian has quit IRC | 16:37 | |
*** rcarrillocruz has quit IRC | 16:37 | |
*** dosaboy has quit IRC | 16:37 | |
*** lennyb has quit IRC | 16:37 | |
*** hoonetorg has quit IRC | 16:37 | |
*** bcafarel has quit IRC | 16:37 | |
*** mnaser has quit IRC | 16:37 | |
*** cgoncalves has quit IRC | 16:37 | |
*** ivc_ has quit IRC | 16:37 | |
*** BobBall_ has quit IRC | 16:37 | |
*** pckizer has quit IRC | 16:37 | |
*** pckizer has joined #openstack-neutron | 16:37 | |
*** fzdarsky has joined #openstack-neutron | 16:37 | |
*** cgoncalves has joined #openstack-neutron | 16:37 | |
*** dsneddon_lunch has joined #openstack-neutron | 16:37 | |
*** dmellado has quit IRC | 16:37 | |
*** woodburn has joined #openstack-neutron | 16:37 | |
*** amuller has quit IRC | 16:38 | |
*** avico has joined #openstack-neutron | 16:38 | |
*** tongli has quit IRC | 16:38 | |
*** anteaya has quit IRC | 16:38 | |
*** sticker has quit IRC | 16:38 | |
*** eezhova has quit IRC | 16:38 | |
*** dkehn_ has joined #openstack-neutron | 16:38 | |
*** bcafarel has joined #openstack-neutron | 16:38 | |
*** alaski_ is now known as alaski | 16:38 | |
*** stajkowski1 has joined #openstack-neutron | 16:38 | |
*** njohnston has joined #openstack-neutron | 16:38 | |
*** crose has quit IRC | 16:38 | |
*** sshank has quit IRC | 16:38 | |
*** liusheng has quit IRC | 16:38 | |
*** g3ek has quit IRC | 16:38 | |
*** malloc83 has quit IRC | 16:38 | |
*** ramishra has quit IRC | 16:38 | |
*** clayton has quit IRC | 16:38 | |
*** f0o has quit IRC | 16:38 | |
*** gouthamr has quit IRC | 16:38 | |
*** nherciu_ has quit IRC | 16:38 | |
*** leifz has joined #openstack-neutron | 16:38 | |
*** vjmorale has quit IRC | 16:38 | |
*** sudipto has quit IRC | 16:38 | |
*** krtaylor has joined #openstack-neutron | 16:38 | |
*** anteaya has joined #openstack-neutron | 16:38 | |
*** plopix has joined #openstack-neutron | 16:38 | |
*** rickflare has joined #openstack-neutron | 16:38 | |
*** tlian has quit IRC | 16:38 | |
*** zzzeek has quit IRC | 16:38 | |
*** tonytan4ever has quit IRC | 16:38 | |
*** irenab_ has joined #openstack-neutron | 16:38 | |
*** x58 has quit IRC | 16:38 | |
*** roaet_ has quit IRC | 16:38 | |
*** pdr has joined #openstack-neutron | 16:38 | |
*** jckasper_ has joined #openstack-neutron | 16:38 | |
*** eezhova_ has joined #openstack-neutron | 16:38 | |
*** Alex_Stef_ has joined #openstack-neutron | 16:38 | |
*** jlvillal_ has joined #openstack-neutron | 16:38 | |
*** ganeshnalawade has quit IRC | 16:38 | |
*** irenab has quit IRC | 16:38 | |
*** shihanzhang has quit IRC | 16:38 | |
*** xek has quit IRC | 16:38 | |
*** irenab_ is now known as irenab | 16:38 | |
*** x58 has joined #openstack-neutron | 16:38 | |
*** akamyshnikova__ has joined #openstack-neutron | 16:38 | |
*** Alex_Stef_ has quit IRC | 16:38 | |
*** Alex_Stef_ has joined #openstack-neutron | 16:38 | |
*** lennyb has joined #openstack-neutron | 16:38 | |
*** hoonetorg has joined #openstack-neutron | 16:38 | |
*** dmellado has joined #openstack-neutron | 16:38 | |
*** links has quit IRC | 16:38 | |
*** hwoarang_ has quit IRC | 16:38 | |
*** danofsatx has joined #openstack-neutron | 16:38 | |
*** jheroux has quit IRC | 16:38 | |
*** rossella_s has quit IRC | 16:38 | |
*** hwoarang has joined #openstack-neutron | 16:38 | |
*** ltomasbo has joined #openstack-neutron | 16:38 | |
*** korzen has joined #openstack-neutron | 16:38 | |
*** clarkb has joined #openstack-neutron | 16:38 | |
*** pdr is now known as Guest39787 | 16:38 | |
*** martink2 has joined #openstack-neutron | 16:38 | |
*** sudipto has joined #openstack-neutron | 16:39 | |
openstackgerrit | Nakul Dahiwade proposed openstack/neutron-lib: api-ref: Fix api-ref for subnetpools https://review.openstack.org/371172 | 16:39 |
*** liusheng has joined #openstack-neutron | 16:39 | |
*** jlvillal_ is now known as jlvillal | 16:39 | |
*** nherciu_ has joined #openstack-neutron | 16:39 | |
*** obondarev_ has joined #openstack-neutron | 16:39 | |
*** rcarrillocruz has joined #openstack-neutron | 16:39 | |
*** ramishra has joined #openstack-neutron | 16:39 | |
*** obondarev has quit IRC | 16:39 | |
*** obondarev_ is now known as obondarev | 16:39 | |
*** jprovazn has joined #openstack-neutron | 16:39 | |
*** jlvillal is now known as Guest95477 | 16:39 | |
*** 17WAAQNWW has quit IRC | 16:40 | |
*** gregwork has quit IRC | 16:40 | |
*** yuanying has quit IRC | 16:40 | |
*** mrhillsman has joined #openstack-neutron | 16:40 | |
*** dansmith has joined #openstack-neutron | 16:40 | |
*** janzian has joined #openstack-neutron | 16:40 | |
*** ganeshnalawade has joined #openstack-neutron | 16:40 | |
*** zhenguo_ is now known as zhenguo | 16:40 | |
*** haplo37 has joined #openstack-neutron | 16:40 | |
*** sshank has joined #openstack-neutron | 16:40 | |
*** gouthamr has joined #openstack-neutron | 16:41 | |
*** yee379 has quit IRC | 16:41 | |
*** yamamoto has quit IRC | 16:41 | |
*** ircuser-1 has quit IRC | 16:41 | |
*** yuanying has joined #openstack-neutron | 16:41 | |
*** yamamoto has joined #openstack-neutron | 16:42 | |
*** stevebaker has joined #openstack-neutron | 16:42 | |
*** shshank has joined #openstack-neutron | 16:42 | |
*** rtheis has joined #openstack-neutron | 16:44 | |
*** banix_ has joined #openstack-neutron | 16:44 | |
*** shihanzhang has joined #openstack-neutron | 16:44 | |
*** mdurrant_ has joined #openstack-neutron | 16:44 | |
*** yamahata has joined #openstack-neutron | 16:44 | |
*** ildikov has joined #openstack-neutron | 16:44 | |
*** dosaboy has joined #openstack-neutron | 16:44 | |
*** yamamoto_ has joined #openstack-neutron | 16:45 | |
*** kriskend__ has joined #openstack-neutron | 16:45 | |
*** apuimedo has quit IRC | 16:45 | |
*** yuanying_ has joined #openstack-neutron | 16:45 | |
*** clayton has joined #openstack-neutron | 16:46 | |
*** yee379 has joined #openstack-neutron | 16:46 | |
*** sudswas__ has joined #openstack-neutron | 16:46 | |
*** amuller has joined #openstack-neutron | 16:46 | |
*** yamahata has quit IRC | 16:46 | |
*** Guest66676 has quit IRC | 16:46 | |
*** alex_xu has quit IRC | 16:46 | |
*** grumpycatt has quit IRC | 16:46 | |
*** amuller_ has quit IRC | 16:46 | |
*** banix has quit IRC | 16:46 | |
*** woodburn1 has joined #openstack-neutron | 16:46 | |
*** grumpycatt has joined #openstack-neutron | 16:46 | |
*** cburgess_ has joined #openstack-neutron | 16:46 | |
*** eezhova has joined #openstack-neutron | 16:46 | |
*** banix_ is now known as banix | 16:46 | |
*** nherciu__ has joined #openstack-neutron | 16:47 | |
*** ganeshnalawade has quit IRC | 16:47 | |
*** lennyb has quit IRC | 16:47 | |
*** zkassab_ has quit IRC | 16:47 | |
*** boden has quit IRC | 16:47 | |
*** irenab_ has joined #openstack-neutron | 16:47 | |
*** zkassab_ has joined #openstack-neutron | 16:47 | |
*** rubasov has quit IRC | 16:47 | |
*** martink2 has quit IRC | 16:47 | |
*** hoangcx2 has quit IRC | 16:47 | |
*** cburgess has quit IRC | 16:47 | |
*** sindhude has quit IRC | 16:47 | |
*** 14WAAHO67 has quit IRC | 16:47 | |
*** ivasilevskaya has joined #openstack-neutron | 16:47 | |
*** BlackDex has quit IRC | 16:47 | |
*** sudipto has quit IRC | 16:47 | |
*** viniciusarcanjo_ has quit IRC | 16:47 | |
*** zhhuabj_ has quit IRC | 16:47 | |
*** slaweq has quit IRC | 16:47 | |
*** liusheng has quit IRC | 16:47 | |
*** pckizer has quit IRC | 16:47 | |
*** kriskend_ has quit IRC | 16:47 | |
*** zeus has quit IRC | 16:47 | |
*** slaweq_ has quit IRC | 16:47 | |
*** evrardjp has quit IRC | 16:47 | |
*** mdurrant__ has quit IRC | 16:47 | |
*** danofsatx has quit IRC | 16:47 | |
*** Alex_Stef__ has joined #openstack-neutron | 16:47 | |
*** g3ek has joined #openstack-neutron | 16:47 | |
*** sdague has quit IRC | 16:47 | |
*** rbradfor has quit IRC | 16:47 | |
*** nherciu_ has quit IRC | 16:47 | |
*** bcafarel has quit IRC | 16:47 | |
*** adziarkach has joined #openstack-neutron | 16:47 | |
*** hoangcx has joined #openstack-neutron | 16:47 | |
*** rbradfor has joined #openstack-neutron | 16:47 | |
*** _oanson has quit IRC | 16:47 | |
*** iranzo has quit IRC | 16:47 | |
*** hieulq has quit IRC | 16:47 | |
*** dmellado_ has joined #openstack-neutron | 16:47 | |
*** sindhu has quit IRC | 16:47 | |
*** rtheis_ has quit IRC | 16:48 | |
*** rubasov1 has joined #openstack-neutron | 16:48 | |
*** gouthamr has quit IRC | 16:48 | |
*** sticker_ has quit IRC | 16:48 | |
*** shz has quit IRC | 16:48 | |
*** briancurtin has quit IRC | 16:48 | |
*** BlackDex_ has joined #openstack-neutron | 16:48 | |
*** mrhillsman has quit IRC | 16:48 | |
*** fzdarsky has quit IRC | 16:48 | |
*** dsneddon_lunch has quit IRC | 16:48 | |
*** kuromagi has quit IRC | 16:48 | |
*** jamielennox has quit IRC | 16:48 | |
*** vkmc has quit IRC | 16:48 | |
*** Guest39787 has quit IRC | 16:48 | |
*** zzzeek has joined #openstack-neutron | 16:48 | |
*** dansmith has quit IRC | 16:48 | |
*** x58 has quit IRC | 16:48 | |
*** irenab has quit IRC | 16:48 | |
*** alex_xu_ has joined #openstack-neutron | 16:48 | |
*** gouthamr_ has joined #openstack-neutron | 16:48 | |
*** yuanying has quit IRC | 16:48 | |
*** sshank has quit IRC | 16:48 | |
*** Guest95477 has quit IRC | 16:48 | |
*** Alex_Stef_ has quit IRC | 16:48 | |
*** eezhova_ has quit IRC | 16:48 | |
*** jckasper_ has quit IRC | 16:48 | |
*** adziarkach__ has quit IRC | 16:48 | |
*** x58 has joined #openstack-neutron | 16:48 | |
*** dansmith has joined #openstack-neutron | 16:48 | |
*** obondarev has quit IRC | 16:48 | |
*** alex_xu_ has quit IRC | 16:48 | |
*** alex_xu_ has joined #openstack-neutron | 16:48 | |
*** vkmc- has joined #openstack-neutron | 16:48 | |
*** irenab_ is now known as irenab | 16:48 | |
*** dmellado has quit IRC | 16:48 | |
*** woodburn has quit IRC | 16:48 | |
*** logan- has quit IRC | 16:48 | |
*** rcarrillocruz has quit IRC | 16:48 | |
*** pdr- has joined #openstack-neutron | 16:48 | |
*** yamahata has joined #openstack-neutron | 16:48 | |
*** anteaya has quit IRC | 16:48 | |
*** bsv has quit IRC | 16:48 | |
*** yamamoto has quit IRC | 16:48 | |
*** bcafarel has joined #openstack-neutron | 16:48 | |
*** pckizer has joined #openstack-neutron | 16:48 | |
*** jckasper has joined #openstack-neutron | 16:48 | |
*** f0o has joined #openstack-neutron | 16:48 | |
*** pckizer has quit IRC | 16:48 | |
*** pckizer has joined #openstack-neutron | 16:48 | |
*** med_ has joined #openstack-neutron | 16:48 | |
*** dsneddon_ has joined #openstack-neutron | 16:48 | |
*** kuromagi has joined #openstack-neutron | 16:48 | |
*** dansmith is now known as Guest3747 | 16:48 | |
*** haleyb_ has quit IRC | 16:48 | |
*** vkmc- is now known as vkmc | 16:48 | |
*** hieulq has joined #openstack-neutron | 16:48 | |
*** vkmc has quit IRC | 16:48 | |
*** vkmc has joined #openstack-neutron | 16:48 | |
*** med_ is now known as Guest44064 | 16:48 | |
*** boden_ has joined #openstack-neutron | 16:48 | |
*** mickeys has joined #openstack-neutron | 16:48 | |
*** rcarrillocruz has joined #openstack-neutron | 16:48 | |
*** jamielennox has joined #openstack-neutron | 16:48 | |
*** bkopilov has joined #openstack-neutron | 16:49 | |
*** reedip has joined #openstack-neutron | 16:49 | |
*** otherwiseguy has joined #openstack-neutron | 16:49 | |
*** iranzo has joined #openstack-neutron | 16:50 | |
*** liusheng has joined #openstack-neutron | 16:50 | |
*** thorst has joined #openstack-neutron | 16:50 | |
*** lennyb has joined #openstack-neutron | 16:50 | |
*** viniciusarcanjo_ has joined #openstack-neutron | 16:50 | |
*** zhhuabj_ has joined #openstack-neutron | 16:50 | |
*** haleyb_ has joined #openstack-neutron | 16:50 | |
*** anteaya has joined #openstack-neutron | 16:50 | |
*** danofsatx has joined #openstack-neutron | 16:50 | |
*** jheroux has joined #openstack-neutron | 16:51 | |
*** crose has joined #openstack-neutron | 16:51 | |
*** tflynn has joined #openstack-neutron | 16:51 | |
*** codebauss has joined #openstack-neutron | 16:51 | |
*** mnaser has joined #openstack-neutron | 16:51 | |
*** jianghuaw has quit IRC | 16:51 | |
*** jklare has quit IRC | 16:51 | |
*** links has joined #openstack-neutron | 16:51 | |
*** kbringard has joined #openstack-neutron | 16:51 | |
*** codebauss is now known as mrhillsman | 16:52 | |
*** rossella_s has joined #openstack-neutron | 16:52 | |
*** Guest3747 is now known as dansmith | 16:52 | |
*** zeus has joined #openstack-neutron | 16:53 | |
*** evrardjp has joined #openstack-neutron | 16:53 | |
*** cgoncalves has quit IRC | 16:53 | |
*** bfernando has quit IRC | 16:53 | |
*** zeus is now known as Guest66430 | 16:53 | |
*** vjmorale has joined #openstack-neutron | 16:53 | |
*** bsv has joined #openstack-neutron | 16:53 | |
*** cgoncalves has joined #openstack-neutron | 16:53 | |
*** jianghuaw has joined #openstack-neutron | 16:53 | |
*** logan- has joined #openstack-neutron | 16:54 | |
*** patrickeast has joined #openstack-neutron | 16:54 | |
*** bsv is now known as Guest45800 | 16:54 | |
*** apuimedo has joined #openstack-neutron | 16:54 | |
*** slaweq has joined #openstack-neutron | 16:55 | |
*** asingh_ has joined #openstack-neutron | 16:55 | |
*** ivar-lazzaro has joined #openstack-neutron | 16:56 | |
*** hieulq__ has quit IRC | 16:56 | |
*** jlvillal has joined #openstack-neutron | 16:56 | |
*** jlvillal has quit IRC | 16:56 | |
*** jlvillal has joined #openstack-neutron | 16:57 | |
*** Guest66666 has joined #openstack-neutron | 16:58 | |
*** Alex_Stef__ has quit IRC | 16:58 | |
*** jklare has joined #openstack-neutron | 16:58 | |
*** sdague has joined #openstack-neutron | 16:58 | |
*** mriedem has joined #openstack-neutron | 16:58 | |
*** gvrangan has quit IRC | 16:59 | |
*** sindhude has joined #openstack-neutron | 16:59 | |
*** salv-orlando has joined #openstack-neutron | 16:59 | |
*** BobBall has joined #openstack-neutron | 16:59 | |
*** BobBall is now known as Guest75624 | 17:00 | |
*** rajinir has quit IRC | 17:00 | |
*** _oanson has joined #openstack-neutron | 17:00 | |
*** slaweq_ has joined #openstack-neutron | 17:00 | |
*** tflynn has quit IRC | 17:00 | |
*** Guest66430 is now known as zeus` | 17:02 | |
*** reedip has quit IRC | 17:02 | |
*** zeus` is now known as zeus | 17:02 | |
*** zeus has quit IRC | 17:02 | |
*** zeus has joined #openstack-neutron | 17:02 | |
*** reedip has joined #openstack-neutron | 17:03 | |
*** ircuser-1 has joined #openstack-neutron | 17:03 | |
*** armax has joined #openstack-neutron | 17:03 | |
manjeets | test | 17:04 |
*** jpena is now known as jpena|off | 17:04 | |
*** ralonsoh has quit IRC | 17:04 | |
*** frontrunner has joined #openstack-neutron | 17:06 | |
dasm | manjeets: works | 17:06 |
*** adziarkach_ has joined #openstack-neutron | 17:07 | |
manjeets | thanks dasm I lost connection to freenode for a sec was testing my connection | 17:07 |
*** Esha has joined #openstack-neutron | 17:08 | |
*** nherciu_ has joined #openstack-neutron | 17:08 | |
*** jckasper_ has joined #openstack-neutron | 17:08 | |
*** mickeys_ has joined #openstack-neutron | 17:08 | |
*** irenab_ has joined #openstack-neutron | 17:09 | |
*** woodburn1 has quit IRC | 17:10 | |
*** bcafarel has quit IRC | 17:10 | |
*** njohnston has quit IRC | 17:10 | |
*** Guest44064 has quit IRC | 17:10 | |
*** zkassab_ has quit IRC | 17:11 | |
*** zeus has quit IRC | 17:11 | |
*** adziarkach has quit IRC | 17:11 | |
*** nherciu__ has quit IRC | 17:11 | |
*** thorst_ has joined #openstack-neutron | 17:11 | |
*** hoangcx has quit IRC | 17:11 | |
*** apuimedo has quit IRC | 17:11 | |
*** logan- has quit IRC | 17:11 | |
*** stevemar has quit IRC | 17:11 | |
*** ivasilevskaya has quit IRC | 17:11 | |
*** stevemar has joined #openstack-neutron | 17:11 | |
*** kbringard1 has joined #openstack-neutron | 17:11 | |
*** ircuser-1 has quit IRC | 17:11 | |
*** sdague has quit IRC | 17:11 | |
*** asingh_ has quit IRC | 17:11 | |
*** patrickeast has quit IRC | 17:11 | |
*** dmellado_ has quit IRC | 17:11 | |
*** alaski has quit IRC | 17:11 | |
*** haleyb_ has quit IRC | 17:11 | |
*** mnaser has quit IRC | 17:11 | |
*** rbradfor has quit IRC | 17:11 | |
*** zkassab_ has joined #openstack-neutron | 17:11 | |
*** John341_ has quit IRC | 17:11 | |
*** ivasilevskaya has joined #openstack-neutron | 17:11 | |
*** frontrunner has quit IRC | 17:11 | |
*** jheroux has quit IRC | 17:11 | |
*** liusheng has quit IRC | 17:11 | |
*** bkopilov has quit IRC | 17:11 | |
*** ramishra has quit IRC | 17:11 | |
*** thorst has quit IRC | 17:11 | |
*** x58 has quit IRC | 17:11 | |
*** mickeys has quit IRC | 17:11 | |
*** x58 has joined #openstack-neutron | 17:11 | |
*** dansmith has quit IRC | 17:11 | |
*** links has quit IRC | 17:11 | |
*** gouthamr_ has quit IRC | 17:11 | |
*** gopenshaw has quit IRC | 17:11 | |
*** jckasper has quit IRC | 17:12 | |
*** irenab has quit IRC | 17:12 | |
*** zhhuabj_ has quit IRC | 17:12 | |
*** jamielennox has quit IRC | 17:12 | |
*** dsneddon_ has quit IRC | 17:12 | |
*** irenab_ is now known as irenab | 17:12 | |
*** Guest66666 has quit IRC | 17:12 | |
*** dsneddon__ has joined #openstack-neutron | 17:12 | |
*** jraju has joined #openstack-neutron | 17:12 | |
*** jklare has quit IRC | 17:12 | |
*** woodburn has joined #openstack-neutron | 17:12 | |
*** njohnston_ has joined #openstack-neutron | 17:12 | |
*** kbringard has quit IRC | 17:12 | |
*** pdr- has quit IRC | 17:12 | |
*** shshank has quit IRC | 17:12 | |
*** clarkb has quit IRC | 17:12 | |
*** jklare has joined #openstack-neutron | 17:12 | |
*** bcafarel_ has joined #openstack-neutron | 17:12 | |
*** otherwiseguy has quit IRC | 17:12 | |
*** clarkb has joined #openstack-neutron | 17:12 | |
*** cgoncalves has quit IRC | 17:12 | |
*** boden_ has quit IRC | 17:12 | |
*** gopenshaw_ has joined #openstack-neutron | 17:12 | |
*** armax has quit IRC | 17:12 | |
*** iranzo has quit IRC | 17:12 | |
*** bkopilov_ has joined #openstack-neutron | 17:12 | |
*** jheroux has joined #openstack-neutron | 17:12 | |
*** _oanson has quit IRC | 17:12 | |
*** pdr- has joined #openstack-neutron | 17:12 | |
*** gouthamr has joined #openstack-neutron | 17:12 | |
*** liusheng has joined #openstack-neutron | 17:12 | |
*** ircuser-1 has joined #openstack-neutron | 17:12 | |
*** tonytan_brb has quit IRC | 17:12 | |
*** apuimedo_ has joined #openstack-neutron | 17:12 | |
*** rbradfor has joined #openstack-neutron | 17:12 | |
*** _oanson has joined #openstack-neutron | 17:12 | |
*** dmellado has joined #openstack-neutron | 17:12 | |
*** logan- has joined #openstack-neutron | 17:12 | |
*** apuimedo_ is now known as apuimedo | 17:12 | |
*** dansmith has joined #openstack-neutron | 17:13 | |
*** sdague has joined #openstack-neutron | 17:13 | |
*** iranzo has joined #openstack-neutron | 17:14 | |
*** iranzo has joined #openstack-neutron | 17:14 | |
*** frontrunner has joined #openstack-neutron | 17:14 | |
*** zhhuabj_ has joined #openstack-neutron | 17:14 | |
*** alaski has joined #openstack-neutron | 17:14 | |
*** jamielennox has joined #openstack-neutron | 17:14 | |
*** otherwiseguy has joined #openstack-neutron | 17:14 | |
*** mnaser has joined #openstack-neutron | 17:15 | |
*** ivasilevskaya1 has joined #openstack-neutron | 17:15 | |
*** hoangcx has joined #openstack-neutron | 17:15 | |
*** ivasilevskaya has quit IRC | 17:15 | |
*** boden has joined #openstack-neutron | 17:16 | |
*** zeus has joined #openstack-neutron | 17:17 | |
*** harlowja has joined #openstack-neutron | 17:17 | |
*** ircuser-1 has quit IRC | 17:17 | |
*** Guest66666 has joined #openstack-neutron | 17:17 | |
openstackgerrit | Nate Johnston proposed openstack/neutron-fwaas: Remove reference to third-party drivers in readme https://review.openstack.org/377926 | 17:17 |
Esha | ihrachys and kevinbenton : Could you provide input on https://bugs.launchpad.net/neutron/+bug/1625305 | 17:17 |
openstack | Launchpad 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-neutron | 17:17 | |
Esha | The agent always returns the same tag for flat networks even if they are created by different agent instances | 17:18 |
*** ircuser-1 has joined #openstack-neutron | 17:18 | |
*** ramishra has joined #openstack-neutron | 17:19 | |
*** gouthamr_ has joined #openstack-neutron | 17:19 | |
Esha | Also if the same agent is used then too 2 vms on same flat network get tag 2 | 17:19 |
Esha | is this how it should work? | 17:19 |
*** armax has joined #openstack-neutron | 17:20 | |
*** apuimedo_ has joined #openstack-neutron | 17:20 | |
*** woodburn1 has joined #openstack-neutron | 17:20 | |
*** mmalik4 has joined #openstack-neutron | 17:20 | |
*** ivasilevskaya1 has quit IRC | 17:21 | |
*** tflynn has joined #openstack-neutron | 17:21 | |
ihrachys | jlibosva: 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_129 | 17:21 |
*** ivasilevskaya has joined #openstack-neutron | 17:21 | |
*** grumpycatt has quit IRC | 17:21 | |
*** grumpycatt has joined #openstack-neutron | 17:21 | |
*** dmellado_ has joined #openstack-neutron | 17:21 | |
*** haplo37_ has quit IRC | 17:21 | |
*** korzen_ has joined #openstack-neutron | 17:21 | |
*** alex_xu has joined #openstack-neutron | 17:21 | |
*** dmellado has quit IRC | 17:21 | |
*** kbringard1 has quit IRC | 17:21 | |
*** stevemar has quit IRC | 17:21 | |
*** f0o has quit IRC | 17:21 | |
*** stevemar has joined #openstack-neutron | 17:21 | |
*** korzen has quit IRC | 17:21 | |
*** kbringard has joined #openstack-neutron | 17:21 | |
*** leifz- has joined #openstack-neutron | 17:21 | |
*** zeus is now known as Guest45385 | 17:21 | |
*** rodrigod` has joined #openstack-neutron | 17:21 | |
*** rbradfor has quit IRC | 17:21 | |
*** mjblack has quit IRC | 17:21 | |
*** diegows has quit IRC | 17:21 | |
ihrachys | armax: I see those address already in use failures long before | 17:21 |
*** harlowja_ has joined #openstack-neutron | 17:22 | |
*** devvesa_ has joined #openstack-neutron | 17:22 | |
ihrachys | armax: around 9/20 | 17:22 |
ihrachys | f.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-neutron | 17:22 | |
*** leifz has quit IRC | 17:22 | |
*** alex_xu_ has quit IRC | 17:22 | |
*** stevebaker has quit IRC | 17:22 | |
*** x58 has quit IRC | 17:22 | |
*** BlackDex_ has quit IRC | 17:22 | |
*** leifz- is now known as leifz | 17:22 | |
*** zzzeek has quit IRC | 17:22 | |
*** devvesa has quit IRC | 17:22 | |
*** krtaylor has quit IRC | 17:22 | |
*** x58 has joined #openstack-neutron | 17:22 | |
*** danofsatx has quit IRC | 17:22 | |
*** harlowja has quit IRC | 17:22 | |
*** Guest45385 has quit IRC | 17:22 | |
*** logan- has quit IRC | 17:22 | |
*** jheroux has quit IRC | 17:22 | |
*** dsneddon__ has quit IRC | 17:22 | |
ihrachys | armax: jlibosva is looking at whether kill and immediate spin up of dnsmasq results in that same error | 17:22 |
*** Guest66676 has joined #openstack-neutron | 17:22 | |
*** apuimedo has quit IRC | 17:22 | |
*** woodburn has quit IRC | 17:22 | |
*** jklare has quit IRC | 17:22 | |
*** apuimedo_ is now known as apuimedo | 17:22 | |
*** stevebak` has joined #openstack-neutron | 17:22 | |
*** frontrunner has quit IRC | 17:22 | |
*** clarkb has quit IRC | 17:22 | |
*** bcafarel_ has quit IRC | 17:22 | |
*** mnaser has quit IRC | 17:22 | |
*** Guest66666 has quit IRC | 17:22 | |
*** zhhuabj_ has quit IRC | 17:22 | |
*** bkopilov_ has quit IRC | 17:22 | |
*** gouthamr has quit IRC | 17:22 | |
*** jianghuaw has quit IRC | 17:22 | |
*** yamahata has quit IRC | 17:22 | |
*** frontrunner has joined #openstack-neutron | 17:22 | |
*** salv-orl_ has joined #openstack-neutron | 17:22 | |
*** zhhuabj_ has joined #openstack-neutron | 17:22 | |
*** f0o has joined #openstack-neutron | 17:22 | |
*** krtaylor has joined #openstack-neutron | 17:22 | |
*** jklare has joined #openstack-neutron | 17:22 | |
*** mlavalle1 has joined #openstack-neutron | 17:22 | |
*** zeus- has joined #openstack-neutron | 17:23 | |
*** jjheroux has joined #openstack-neutron | 17:23 | |
*** serverascode has joined #openstack-neutron | 17:23 | |
*** haplo37_ has joined #openstack-neutron | 17:23 | |
*** bkopilov_ has joined #openstack-neutron | 17:23 | |
*** sshank has joined #openstack-neutron | 17:23 | |
*** rbradfor has joined #openstack-neutron | 17:23 | |
*** clarkb has joined #openstack-neutron | 17:23 | |
*** jianghuaw has joined #openstack-neutron | 17:23 | |
*** dsneddon__ has joined #openstack-neutron | 17:23 | |
*** danofsatx-ghost has joined #openstack-neutron | 17:23 | |
*** zeus- is now known as zeus` | 17:24 | |
*** zzzeek has joined #openstack-neutron | 17:24 | |
*** cgoncalves has joined #openstack-neutron | 17:24 | |
*** david-lyle_ is now known as david-lyle | 17:24 | |
*** danofsatx-ghost is now known as danofsatx | 17:25 | |
*** s3wong has quit IRC | 17:25 | |
*** ivasilevskaya has quit IRC | 17:25 | |
*** salv-orlando has quit IRC | 17:25 | |
*** haplo37| has joined #openstack-neutron | 17:25 | |
*** safchain_ has joined #openstack-neutron | 17:25 | |
*** bcafarel_ has joined #openstack-neutron | 17:25 | |
*** cu5_ has joined #openstack-neutron | 17:27 | |
*** rossella_ has joined #openstack-neutron | 17:27 | |
*** haplo37 has quit IRC | 17:28 | |
*** jprovazn has quit IRC | 17:28 | |
*** dane_leblanc__ has quit IRC | 17:28 | |
*** mlavalle has quit IRC | 17:28 | |
*** rodrigods has quit IRC | 17:28 | |
*** johndperkins has quit IRC | 17:28 | |
*** cu5 has quit IRC | 17:28 | |
*** safchain has quit IRC | 17:28 | |
*** safchain_ is now known as safchain | 17:28 | |
*** logan- has joined #openstack-neutron | 17:28 | |
davidsha | ihrachys: Quick question, should out of tree extensions use object versioning? | 17:29 |
ihrachys | davidsha: what do you mean | 17:29 |
dasm | alraddarla_: 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 |
ihrachys | dasm: that's only because I suck | 17:29 |
dasm | alraddarla_: i've suggested to reuse HenryG's work, and rebase your patch on top of his. | 17:29 |
*** kbringard1 has joined #openstack-neutron | 17:30 | |
*** John341 has joined #openstack-neutron | 17:30 | |
dasm | ihrachys: so, you're saying to just leave metering without any change? https://review.openstack.org/#/c/376976/ | 17:31 |
*** salv-orlando has joined #openstack-neutron | 17:31 | |
*** kevo has joined #openstack-neutron | 17:31 | |
dasm | ihrachys: newly promoted Drivers Team member doesn't suck :P | 17:31 |
*** akamyshnikova_ has joined #openstack-neutron | 17:31 | |
ihrachys | dasm: I was thinking, this page documents metering extension, so it should contain tenant_id | 17:32 |
davidsha | ihrachys: for example, should networking-sfc have versioned objects to accommodate a rolling upgrades? | 17:32 |
ihrachys | not project_id | 17:32 |
*** frontrunner2 has joined #openstack-neutron | 17:32 | |
ihrachys | that is provided by another extension | 17:32 |
*** Hassen has quit IRC | 17:32 | |
ihrachys | (that is enabled by default in new installations, but still) | 17:32 |
ihrachys | davidsha: ideally, they would work on it. realistically, I don't expect it to happen. | 17:32 |
*** x58 has quit IRC | 17:32 | |
*** rossella_s has quit IRC | 17:32 | |
*** lennyb has quit IRC | 17:32 | |
*** akamyshnikova__ has quit IRC | 17:32 | |
*** prateek_ has quit IRC | 17:32 | |
*** f0o has quit IRC | 17:32 | |
*** kbringard has quit IRC | 17:32 | |
*** stevemar has quit IRC | 17:32 | |
*** kuromagi has quit IRC | 17:32 | |
*** kuromagi has joined #openstack-neutron | 17:32 | |
*** stevebaker has joined #openstack-neutron | 17:32 | |
*** leifz has quit IRC | 17:32 | |
*** mtreinish has quit IRC | 17:33 | |
*** parora has joined #openstack-neutron | 17:33 | |
*** stevebaker has quit IRC | 17:33 | |
*** stevebaker has joined #openstack-neutron | 17:33 | |
*** safchain_ has joined #openstack-neutron | 17:33 | |
ihrachys | davidsha: and that's ok. we work towards having some basic neutron setup to roll. once there, we may see how other plugins behave | 17:33 |
*** mjblack has joined #openstack-neutron | 17:33 | |
*** logan- has quit IRC | 17:33 | |
*** zeus` has quit IRC | 17:33 | |
*** harlowja_ has quit IRC | 17:33 | |
*** sdague has quit IRC | 17:33 | |
*** leifz has joined #openstack-neutron | 17:33 | |
*** f0o has joined #openstack-neutron | 17:33 | |
dasm | ihrachys: 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 |
johnsom | ihrachys Can you bless this for us? https://review.openstack.org/#/c/377909 | 17:33 |
davidsha | ihrachys: 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 IRC | 17:33 | |
*** stevebak` has quit IRC | 17:33 | |
*** hoangcx has quit IRC | 17:33 | |
*** jklare_ has joined #openstack-neutron | 17:33 | |
*** safchain has quit IRC | 17:33 | |
*** jklare has quit IRC | 17:34 | |
*** zhhuabj_ has quit IRC | 17:34 | |
*** salv-orl_ has quit IRC | 17:34 | |
*** rcarrillocruz has quit IRC | 17:34 | |
*** safchain_ is now known as safchain | 17:34 | |
*** stevemar has joined #openstack-neutron | 17:34 | |
*** jprovazn has joined #openstack-neutron | 17:34 | |
*** harlowja has joined #openstack-neutron | 17:34 | |
dasm | ihrachys: so, in this case, probably HenryG should include alraddarla_'s change? | 17:34 |
davidsha | ihrachys: you're getting busy now so I'll leave you be, congrats on making drivers! | 17:34 |
*** rmcall has joined #openstack-neutron | 17:35 | |
*** sdague has joined #openstack-neutron | 17:35 | |
*** rcarrillocruz has joined #openstack-neutron | 17:35 | |
*** x58 has joined #openstack-neutron | 17:35 | |
*** zhhuabj_ has joined #openstack-neutron | 17:35 | |
*** mnaser has joined #openstack-neutron | 17:36 | |
*** BlackDex has joined #openstack-neutron | 17:36 | |
*** johndperkins has joined #openstack-neutron | 17:36 | |
*** xgerman has joined #openstack-neutron | 17:36 | |
*** baoli has joined #openstack-neutron | 17:36 | |
ihrachys | johnsom: +1 | 17:36 |
*** banix has quit IRC | 17:36 | |
johnsom | Thank you sir | 17:36 |
ihrachys | davidsha: tnx | 17:37 |
*** diegows has joined #openstack-neutron | 17:37 | |
ihrachys | dasm: I don't mind. I don't review the shit, so it's up to you folks actually :) | 17:37 |
*** davidsha has quit IRC | 17:37 | |
ihrachys | I was asked, I gave my point of view, but I don't insist :) | 17:37 |
dasm | hehe | 17: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 messages | 17:38 |
*** zeus- has joined #openstack-neutron | 17:38 | |
*** sindhu has joined #openstack-neutron | 17:38 | |
dasm | alraddarla_: as you can see, there are completely different point of views :D | 17:38 |
*** cu5_ is now known as cu5 | 17:38 | |
*** logan- has joined #openstack-neutron | 17:38 | |
*** sambetts is now known as sambetts|afk | 17:39 | |
*** kbringard has joined #openstack-neutron | 17:39 | |
*** zeus- is now known as zeus` | 17:39 | |
*** aswadr_ has joined #openstack-neutron | 17:39 | |
*** zeus` is now known as zeus | 17:39 | |
*** abhiraut has joined #openstack-neutron | 17:39 | |
*** zeus has quit IRC | 17:39 | |
*** zeus has joined #openstack-neutron | 17:39 | |
*** mtreinish has joined #openstack-neutron | 17:40 | |
*** lennyb has joined #openstack-neutron | 17:40 | |
*** rmcall has quit IRC | 17:41 | |
*** x58 has quit IRC | 17:41 | |
*** harlowja has quit IRC | 17:42 | |
*** sudipto_ has quit IRC | 17:42 | |
*** sudswas__ has quit IRC | 17:42 | |
*** rodrigod` is now known as rodrigods | 17:42 | |
*** rodrigods has quit IRC | 17:42 | |
*** rodrigods has joined #openstack-neutron | 17:42 | |
*** kbringard1 has quit IRC | 17:43 | |
*** med_ has joined #openstack-neutron | 17:44 | |
*** med_ is now known as Guest79278 | 17: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 |
openstackgerrit | Yushiro FURUKAWA proposed openstack/python-neutronclient: Add FWaaS V2 commands for OSC plugin https://review.openstack.org/351582 | 17:46 |
*** lezbar has quit IRC | 17:46 | |
*** x58 has joined #openstack-neutron | 17:47 | |
*** harlowja has joined #openstack-neutron | 17:47 | |
*** lezbar has joined #openstack-neutron | 17:47 | |
*** njohnston_ is now known as njohnston | 17:48 | |
*** hoangcx has joined #openstack-neutron | 17:48 | |
*** parora has quit IRC | 17:49 | |
*** x58 has left #openstack-neutron | 17:50 | |
*** asingh_ has joined #openstack-neutron | 17:50 | |
*** mvk has joined #openstack-neutron | 17:51 | |
*** gvrangan has joined #openstack-neutron | 17:51 | |
*** parora has joined #openstack-neutron | 17:52 | |
*** Swami has joined #openstack-neutron | 17:52 | |
*** rajinir has joined #openstack-neutron | 17:52 | |
*** dsneddon__ has quit IRC | 17:52 | |
*** tonytan4ever has joined #openstack-neutron | 17:53 | |
*** dsneddon__ has joined #openstack-neutron | 17:53 | |
*** gregwork has joined #openstack-neutron | 17:53 | |
dasm | alraddarla_: are you talking about this change? https://review.openstack.org/#/c/372857/6/api-ref/source/v2/parameters.yaml | 17:54 |
dasm | alraddarla_: or in your code? | 17:54 |
*** jraju has quit IRC | 17:54 | |
amuller | dougwig: re: v1->v2 thing | 17:55 |
alraddarla_ | dasm: ah, yes. I somehow looked over that file in his list of changes. Must need more coffee. | 17:55 |
amuller | dougwig: is the upgrade supposed to be ran by operators? You're using the term developers on Gerrit | 17:55 |
dasm | alraddarla_: 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-neutron | 17:57 | |
*** iyamahat has joined #openstack-neutron | 17:57 | |
*** aswadr_ has quit IRC | 17:58 | |
*** martink2 has joined #openstack-neutron | 17:58 | |
*** krtaylor has left #openstack-neutron | 17:59 | |
*** thorst_ has quit IRC | 17:59 | |
*** briancurtin has joined #openstack-neutron | 18:00 | |
*** prateek_ has joined #openstack-neutron | 18: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 |
dasm | alraddarla_: sure. gimme sec, i'll providedoc for it. | 18:02 |
*** thorst_ has joined #openstack-neutron | 18:03 | |
dasm | alraddarla_: here you have described workflow: http://docs.openstack.org/infra/manual/developers.html#adding-a-dependency | 18:03 |
dasm | alraddarla_: 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 IRC | 18:04 | |
dasm | although, 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-neutron | 18:05 | |
*** yamahata has joined #openstack-neutron | 18:05 | |
*** bsv is now known as Guest76517 | 18:05 | |
*** parora has quit IRC | 18:06 | |
*** yee3794 has joined #openstack-neutron | 18:06 | |
*** yee379 has quit IRC | 18: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 IRC | 18:07 | |
jlibosva | ihrachys: id doesn't even happen during boot of an instance | 18:07 |
dasm | alraddarla_: 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-neutron | 18:08 | |
alraddarla_ | Okay awesome. Thanks for your help dasm | 18:08 |
dasm | alraddarla_: np. | 18:09 |
*** zhhuabj_ has quit IRC | 18:10 | |
*** grumpycatt has quit IRC | 18:10 | |
*** grumpycatt has joined #openstack-neutron | 18:10 | |
*** harlowja has quit IRC | 18:10 | |
*** gvrangan has quit IRC | 18:10 | |
*** xgerman has quit IRC | 18:10 | |
*** jklare_ has quit IRC | 18:10 | |
*** safchain has quit IRC | 18:10 | |
*** patrickeast_ has joined #openstack-neutron | 18:10 | |
*** haplo37| has quit IRC | 18:10 | |
*** serverascode has quit IRC | 18:10 | |
*** gvrangan has joined #openstack-neutron | 18:10 | |
*** mtreinish_ has joined #openstack-neutron | 18:10 | |
*** haplo37- has joined #openstack-neutron | 18:10 | |
*** patrickeast_ has quit IRC | 18:10 | |
*** patrickeast_ has joined #openstack-neutron | 18:10 | |
*** tonytan4ever has quit IRC | 18:10 | |
*** mvk has quit IRC | 18:10 | |
*** Guest79278 has quit IRC | 18:10 | |
*** lennyb has quit IRC | 18:10 | |
*** hieulq has quit IRC | 18:10 | |
*** BlackDex has quit IRC | 18:10 | |
*** rcarrillocruz has quit IRC | 18:10 | |
*** BlackDex has joined #openstack-neutron | 18:10 | |
*** safchain has joined #openstack-neutron | 18:11 | |
*** mvk has joined #openstack-neutron | 18:11 | |
*** jprovazn_ has joined #openstack-neutron | 18:11 | |
*** sdague has quit IRC | 18:11 | |
*** thorst_ has quit IRC | 18:11 | |
*** abhiraut has quit IRC | 18:11 | |
*** mtreinish has quit IRC | 18:11 | |
*** mtreinish_ is now known as mtreinish | 18:11 | |
*** njohnston has quit IRC | 18:11 | |
*** joshua has joined #openstack-neutron | 18:11 | |
*** diegows has quit IRC | 18:11 | |
*** jprovazn has quit IRC | 18:11 | |
*** diegows has joined #openstack-neutron | 18:11 | |
*** jklare has joined #openstack-neutron | 18:11 | |
*** danofsatx has quit IRC | 18:11 | |
*** njohnston has joined #openstack-neutron | 18:11 | |
*** joshua is now known as Guest44314 | 18:11 | |
*** serverascode has joined #openstack-neutron | 18:12 | |
*** danofsatx has joined #openstack-neutron | 18:12 | |
*** stevemar_ has joined #openstack-neutron | 18:12 | |
*** sdague has joined #openstack-neutron | 18:13 | |
*** rcarrillocruz has joined #openstack-neutron | 18:13 | |
*** lennyb has joined #openstack-neutron | 18:13 | |
HenryG | dasm: thanks for helping the new-comers | 18:15 |
HenryG | ihrachys: I have taken over as oslo liason. OK to ping you if I need help? | 18:16 |
dasm | HenryG: np. glad to help. | 18:17 |
dasm | HenryG: congrats with oslo liason! | 18:17 |
*** stevemar_ is now known as stevemar__ | 18:17 | |
HenryG | dasm: I am not sure it's something to be congratulated for? | 18:17 |
dasm | HenryG: hmm... you're right. so, maybe i should rephrase: congratulate to have less time for anything else :D | 18:18 |
HenryG | dasm: :P | 18:18 |
*** stevemar__ has quit IRC | 18:18 | |
*** tidwellr has joined #openstack-neutron | 18:20 | |
*** stevemar____ has joined #openstack-neutron | 18:20 | |
*** hoangcx2 has joined #openstack-neutron | 18:20 | |
*** patrickeast_ has quit IRC | 18:20 | |
*** f0o has quit IRC | 18:20 | |
*** viniciusarcanjo_ has quit IRC | 18:21 | |
*** hoangcx has quit IRC | 18:21 | |
*** diegows has quit IRC | 18:21 | |
*** diegows has joined #openstack-neutron | 18:21 | |
*** Guest44314 has quit IRC | 18:21 | |
*** viniciusarcanjo_ has joined #openstack-neutron | 18:22 | |
*** hynekm has joined #openstack-neutron | 18:22 | |
*** f0o has joined #openstack-neutron | 18:22 | |
*** gvrangan has quit IRC | 18:22 | |
ihrachys | HenryG: yay, cool. thanks a lot. | 18:22 |
ihrachys | HenryG: 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-neutron | 18:23 | |
ihrachys | armax: jlibosva: kevinbenton: carl_baldwin: http://lists.openstack.org/pipermail/openstack-dev/2016-September/104635.html | 18:24 |
*** harlowja has joined #openstack-neutron | 18:24 | |
carl_baldwin | ihrachys: ack | 18:24 |
*** thorst_ has joined #openstack-neutron | 18:25 | |
jlibosva | reminds me I still owe on brain dump | 18:25 |
*** tidwellr has quit IRC | 18:25 | |
carl_baldwin | ihrachys: logstash can only see back 7 days so the 20th will be the earliest you'll see anything. | 18:25 |
armax | ihrachys: you forgot the Neutron tag | 18:25 |
ihrachys | armax: fuck | 18:25 |
armax | ihrachys: see? | 18:25 |
armax | ihrachys: that’s what happens when people rush | 18:26 |
ihrachys | lemme add it | 18:26 |
*** mkolesni_ has joined #openstack-neutron | 18:26 | |
*** tidwellr has joined #openstack-neutron | 18:26 | |
*** patrickeast_ has joined #openstack-neutron | 18:28 | |
*** ihrachys has quit IRC | 18:28 | |
*** ndahiwade has joined #openstack-neutron | 18:29 | |
carl_baldwin | ihrachys: 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 |
openstackgerrit | Manjeet Singh Bhatia proposed openstack/neutron: Integrate SubnetRoute OVO, https://review.openstack.org/377112 | 18:29 |
*** mjblack has quit IRC | 18:29 | |
*** viniciusarcanjo_ has quit IRC | 18:29 | |
*** diegows has quit IRC | 18:30 | |
*** viniciusarcanjo_ has joined #openstack-neutron | 18:30 | |
*** dsneddon__ is now known as dsneddon | 18:31 | |
*** mjblack has joined #openstack-neutron | 18:31 | |
*** dsneddon has quit IRC | 18:31 | |
*** dsneddon has joined #openstack-neutron | 18:31 | |
*** xgerman has joined #openstack-neutron | 18:32 | |
*** dsneddon has quit IRC | 18:32 | |
*** dsneddon has joined #openstack-neutron | 18:32 | |
*** dane_leblanc__ has joined #openstack-neutron | 18:32 | |
*** haleyb_ has joined #openstack-neutron | 18:33 | |
*** yamahata has quit IRC | 18:34 | |
*** salv-orlando has quit IRC | 18:35 | |
*** thorst_ has quit IRC | 18:35 | |
*** parora has joined #openstack-neutron | 18:35 | |
*** sdake has quit IRC | 18:35 | |
*** thorst_ has joined #openstack-neutron | 18:36 | |
*** thorst_ has quit IRC | 18:36 | |
*** thorst_ has joined #openstack-neutron | 18:36 | |
*** prateek_ has quit IRC | 18:37 | |
*** mkolesni_ has quit IRC | 18:39 | |
*** logan- has quit IRC | 18:39 | |
*** ndahiwade has quit IRC | 18:39 | |
*** viniciusarcanjo_ has quit IRC | 18:40 | |
*** jjheroux has quit IRC | 18:40 | |
*** prateek has joined #openstack-neutron | 18:40 | |
*** jjheroux has joined #openstack-neutron | 18:41 | |
*** viniciusarcanjo_ has joined #openstack-neutron | 18:41 | |
*** parora has quit IRC | 18:41 | |
openstackgerrit | Manjeet Singh Bhatia proposed openstack/neutron: Add OVO for dns Objects https://review.openstack.org/334695 | 18:41 |
*** diegows has joined #openstack-neutron | 18:42 | |
*** logan- has joined #openstack-neutron | 18:42 | |
*** med_ has joined #openstack-neutron | 18:43 | |
*** med_ is now known as Guest40876 | 18:44 | |
*** obondarev has joined #openstack-neutron | 18:44 | |
*** prateek has quit IRC | 18:46 | |
*** prateek has joined #openstack-neutron | 18:46 | |
*** jlibosva has quit IRC | 18:46 | |
*** sdake has joined #openstack-neutron | 18:49 | |
*** eezhova has quit IRC | 18:49 | |
*** devvesa_ has quit IRC | 18:49 | |
*** abhiraut has joined #openstack-neutron | 18:49 | |
*** slaweq_ has quit IRC | 18:50 | |
*** thorst_ has quit IRC | 18:50 | |
*** irenab_ has joined #openstack-neutron | 18:51 | |
openstackgerrit | Manjeet Singh Bhatia proposed openstack/neutron: Add OVO for FloatingIPDNS https://review.openstack.org/369744 | 18:51 |
openstackgerrit | Manjeet Singh Bhatia proposed openstack/neutron: Add OVO for dns Objects https://review.openstack.org/334695 | 18:51 |
openstackgerrit | Manjeet Singh Bhatia proposed openstack/neutron: Introduce ovo objects for ports https://review.openstack.org/351368 | 18:51 |
*** irenab has quit IRC | 18:52 | |
*** irenab_ is now known as irenab | 18:52 | |
*** iyamahat has joined #openstack-neutron | 18:53 | |
openstackgerrit | Manjeet Singh Bhatia proposed openstack/neutron: Introduce ovo objects for ports https://review.openstack.org/351368 | 18:53 |
*** banix has joined #openstack-neutron | 18:55 | |
*** mkolesni_ has joined #openstack-neutron | 18:55 | |
*** thorst_ has joined #openstack-neutron | 18:56 | |
*** dane_leblanc__ has quit IRC | 18:57 | |
*** ankur-gupta-f has joined #openstack-neutron | 18:59 | |
*** prateek_ has joined #openstack-neutron | 19:00 | |
*** stevemar____ has quit IRC | 19:02 | |
*** prateek has quit IRC | 19:03 | |
*** tidwellr has quit IRC | 19:04 | |
*** tidwellr has joined #openstack-neutron | 19:04 | |
*** john-davidge has joined #openstack-neutron | 19:04 | |
*** haleyb_ has quit IRC | 19:05 | |
openstackgerrit | Shashank Kumar Shankar proposed openstack/neutron: [WIP] Integration of Port Binding Level OVO. https://review.openstack.org/374418 | 19:06 |
openstackgerrit | Swaminathan Vasudevan proposed openstack/neutron: DVR: Create router to fip namespace connection based on gateway state https://review.openstack.org/283757 | 19:07 |
openstackgerrit | Swaminathan Vasudevan proposed openstack/neutron: DVR: Add static routes to FIP namespace https://review.openstack.org/308068 | 19:07 |
openstackgerrit | Swaminathan Vasudevan proposed openstack/neutron: DVR: Add forwarding routes based on address_scopes https://review.openstack.org/355062 | 19:07 |
*** flaviof has quit IRC | 19:10 | |
*** sdake has quit IRC | 19:10 | |
*** iyamahat_ has joined #openstack-neutron | 19:11 | |
*** mkolesni_ has quit IRC | 19:11 | |
*** haplo37- has quit IRC | 19:11 | |
*** john-dav_ has joined #openstack-neutron | 19:11 | |
*** john-davidge has quit IRC | 19:11 | |
*** abhiraut has quit IRC | 19:11 | |
*** johndperkins has quit IRC | 19:11 | |
*** abhiraut has joined #openstack-neutron | 19:11 | |
*** john-dav_ has quit IRC | 19:11 | |
*** johndperkins has joined #openstack-neutron | 19:11 | |
*** srobert has joined #openstack-neutron | 19:11 | |
*** haplo37- has joined #openstack-neutron | 19:12 | |
*** iyamahat has quit IRC | 19:12 | |
*** Guest76517 has quit IRC | 19:12 | |
*** zzzeek has quit IRC | 19:12 | |
*** bsv has joined #openstack-neutron | 19:12 | |
*** zzzeek has joined #openstack-neutron | 19:12 | |
*** bsv is now known as Guest80109 | 19:13 | |
*** salv-orlando has joined #openstack-neutron | 19:13 | |
*** flaviof has joined #openstack-neutron | 19:14 | |
*** patrickeast has quit IRC | 19:14 | |
*** patrickeast_ is now known as patrickeast | 19:14 | |
*** Esha has quit IRC | 19:16 | |
*** iyamahat_ has quit IRC | 19:18 | |
*** salv-orlando has quit IRC | 19:18 | |
openstackgerrit | boden proposed openstack/neutron-lib: Improve callback notification interface https://review.openstack.org/346554 | 19:21 |
openstackgerrit | John Perkins proposed openstack/neutron: Agent common config https://review.openstack.org/343045 | 19:23 |
*** ihrachys has joined #openstack-neutron | 19:24 | |
*** pdr- has quit IRC | 19:25 | |
*** hoangcx2 has quit IRC | 19:26 | |
*** logan- has quit IRC | 19:26 | |
*** sindhu has quit IRC | 19:26 | |
*** serverascode has quit IRC | 19:27 | |
*** briancurtin has quit IRC | 19:27 | |
*** stevemar has quit IRC | 19:27 | |
*** kuromagi has quit IRC | 19:27 | |
*** kuromagi has joined #openstack-neutron | 19:27 | |
*** mdurrant has joined #openstack-neutron | 19:27 | |
*** f0o has quit IRC | 19:27 | |
*** leifz has quit IRC | 19:27 | |
*** clarkb has quit IRC | 19:27 | |
*** mlavalle1 has quit IRC | 19:27 | |
*** wolverineav has quit IRC | 19:27 | |
*** sindhu has joined #openstack-neutron | 19:27 | |
*** jlvillal has quit IRC | 19:27 | |
*** sindhu has quit IRC | 19:27 | |
*** sindhu has joined #openstack-neutron | 19:27 | |
*** mlavalle1 has joined #openstack-neutron | 19:27 | |
*** Guest40876 has quit IRC | 19:27 | |
*** dsneddon has quit IRC | 19:27 | |
*** prateek_ has quit IRC | 19:27 | |
*** BlackDex has quit IRC | 19:27 | |
*** xgerman has quit IRC | 19:27 | |
*** mrhillsman has quit IRC | 19:27 | |
*** leifz has joined #openstack-neutron | 19:27 | |
*** johndperkins has quit IRC | 19:27 | |
*** dsneddon has joined #openstack-neutron | 19:27 | |
*** slaweq_ has joined #openstack-neutron | 19:27 | |
*** mdurrant_ has quit IRC | 19:27 | |
*** serverascode has joined #openstack-neutron | 19:27 | |
*** wolverineav has joined #openstack-neutron | 19:28 | |
*** lucasagomes is now known as lucas-afk | 19:28 | |
*** clarkb has joined #openstack-neutron | 19:28 | |
*** rkukura has quit IRC | 19:29 | |
*** mrhillsman has joined #openstack-neutron | 19:29 | |
*** f0o has joined #openstack-neutron | 19:30 | |
*** patrickeast_ has joined #openstack-neutron | 19:30 | |
*** trevormc has quit IRC | 19:30 | |
*** stevemar has joined #openstack-neutron | 19:30 | |
*** jroll has quit IRC | 19:31 | |
openstackgerrit | Merged openstack/neutron-fwaas: Fix import path for l3_config https://review.openstack.org/377674 | 19:31 |
*** jlvillal has joined #openstack-neutron | 19:32 | |
*** mdurrant_ has joined #openstack-neutron | 19:32 | |
*** pdr has joined #openstack-neutron | 19:32 | |
*** pdr is now known as Guest39491 | 19:32 | |
*** patrickeast__ has joined #openstack-neutron | 19:32 | |
*** eliqiao has quit IRC | 19:33 | |
*** sgordon has quit IRC | 19:34 | |
*** sambetts|afk has quit IRC | 19:34 | |
*** ajo has quit IRC | 19:34 | |
*** logan- has joined #openstack-neutron | 19:34 | |
*** sinh has quit IRC | 19:34 | |
*** aignatov has quit IRC | 19:34 | |
*** mdbooth has quit IRC | 19:34 | |
*** ianw has quit IRC | 19:35 | |
*** freerunner has quit IRC | 19:35 | |
*** mkoderer__ has quit IRC | 19:35 | |
*** Lehtu has quit IRC | 19:35 | |
*** tonyb has quit IRC | 19:35 | |
*** jamespd_ has quit IRC | 19:35 | |
*** adreznec has quit IRC | 19:35 | |
*** neiljerram has quit IRC | 19:35 | |
*** obondarev_ has joined #openstack-neutron | 19:35 | |
*** fpan has quit IRC | 19:35 | |
*** rdo_ has quit IRC | 19:35 | |
*** sgran has quit IRC | 19:35 | |
*** flaviof has quit IRC | 19:35 | |
*** patrickeast has quit IRC | 19:35 | |
*** leifz has quit IRC | 19:35 | |
*** stevebaker has quit IRC | 19:35 | |
*** kuromagi has quit IRC | 19:35 | |
*** viniciusarcanjo_ has quit IRC | 19:35 | |
*** leifz has joined #openstack-neutron | 19:35 | |
*** patrickeast__ is now known as patrickeast | 19:35 | |
ihrachys | kevinbenton: 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 IRC | 19:35 | |
*** dsneddon has quit IRC | 19:35 | |
*** serverascode has quit IRC | 19:35 | |
*** sindhu has quit IRC | 19:35 | |
*** rajinir has quit IRC | 19:35 | |
*** dkehn_ has quit IRC | 19:35 | |
*** rha has quit IRC | 19:35 | |
*** prometheanfire has quit IRC | 19:35 | |
*** ankur-gupta-f has quit IRC | 19:36 | |
*** mdbooth_ has joined #openstack-neutron | 19:36 | |
*** haleyb_ has joined #openstack-neutron | 19:36 | |
*** jamespd has joined #openstack-neutron | 19:36 | |
ihrachys | kevinbenton: it does not seem like belonging to dnsmasq process manager | 19:36 |
*** mdurrant has quit IRC | 19:36 | |
*** obondarev has quit IRC | 19:36 | |
*** mtreinish has quit IRC | 19:36 | |
*** kbringard has quit IRC | 19:36 | |
*** vkmc has quit IRC | 19:36 | |
*** roaet has quit IRC | 19:36 | |
*** bigjools has quit IRC | 19:36 | |
*** viniciusarcanjo_ has joined #openstack-neutron | 19:36 | |
*** obondarev_ is now known as obondarev | 19:36 | |
*** gopenshaw_ has quit IRC | 19:36 | |
*** stevemar has quit IRC | 19:36 | |
*** patrickeast_ has quit IRC | 19:36 | |
*** zzzeek has quit IRC | 19:36 | |
*** Guest80109 has quit IRC | 19:36 | |
*** tonyb_ has joined #openstack-neutron | 19:36 | |
*** gopenshaw has joined #openstack-neutron | 19:36 | |
*** kuromagi has joined #openstack-neutron | 19:36 | |
*** sgran has joined #openstack-neutron | 19:36 | |
*** eliqiao has joined #openstack-neutron | 19:36 | |
*** mtreinish has joined #openstack-neutron | 19:36 | |
*** adreznec has joined #openstack-neutron | 19:36 | |
*** stevemar has joined #openstack-neutron | 19:36 | |
*** neil_ has joined #openstack-neutron | 19:36 | |
*** ajo has joined #openstack-neutron | 19:36 | |
*** ianw has joined #openstack-neutron | 19:36 | |
*** kbringard has joined #openstack-neutron | 19:37 | |
*** freerunner has joined #openstack-neutron | 19:37 | |
*** dkehn_ has joined #openstack-neutron | 19:37 | |
*** vkmc has joined #openstack-neutron | 19:37 | |
*** sambetts|afk has joined #openstack-neutron | 19:37 | |
openstackgerrit | Anindita Das proposed openstack/neutron: Relocate RouterL3AgentBinding DB model https://review.openstack.org/355719 | 19:37 |
openstackgerrit | Anindita Das proposed openstack/neutron: OVO for RouterL3AgentBinding https://review.openstack.org/360908 | 19:37 |
*** sgordon has joined #openstack-neutron | 19:37 | |
*** jroll has joined #openstack-neutron | 19:37 | |
*** jroll has quit IRC | 19:37 | |
*** jroll has joined #openstack-neutron | 19:37 | |
*** krtaylor has joined #openstack-neutron | 19:37 | |
*** aignatov has joined #openstack-neutron | 19:38 | |
*** mkoderer__ has joined #openstack-neutron | 19:39 | |
*** tidwellr has quit IRC | 19:39 | |
*** stevebaker has joined #openstack-neutron | 19:39 | |
*** bigjools has joined #openstack-neutron | 19:39 | |
*** bigjools has joined #openstack-neutron | 19:39 | |
*** roaet has joined #openstack-neutron | 19:39 | |
*** lezbar has quit IRC | 19:40 | |
*** rha has joined #openstack-neutron | 19:40 | |
*** tidwellr has joined #openstack-neutron | 19:40 | |
*** Lehtu has joined #openstack-neutron | 19:40 | |
*** lezbar has joined #openstack-neutron | 19:40 | |
*** fpan has joined #openstack-neutron | 19:41 | |
*** johndperkins has joined #openstack-neutron | 19:41 | |
ihrachys | kevinbenton: ok I think I understand | 19:41 |
ihrachys | kevinbenton: 'Unable to access /opt/stack/data/neutron/external/pids/ea141299-ce07-4ff7-9a03-7a1b7a75a371.pid' comes from metadata disablement, not from dnsmasq | 19:42 |
*** prometheanfire has joined #openstack-neutron | 19:42 | |
*** mrhillsman has joined #openstack-neutron | 19:42 | |
*** med_ has joined #openstack-neutron | 19:43 | |
*** med_ is now known as Guest45789 | 19:43 | |
ihrachys | kevinbenton: 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 |
ihrachys | so the process manager works fine. | 19:43 |
ihrachys | once we kill -9 the process, we remove the PID file, so it's expected that after that point there is no pid file for dnsmasq | 19:44 |
*** rvba` has quit IRC | 19:44 | |
*** kfox1111 has quit IRC | 19:44 | |
*** leifz has quit IRC | 19:44 | |
*** kuromagi has quit IRC | 19:44 | |
*** krtaylor has quit IRC | 19:44 | |
*** viniciusarcanjo_ has quit IRC | 19:44 | |
*** kuromagi has joined #openstack-neutron | 19:44 | |
*** stevebaker has quit IRC | 19:44 | |
*** jroll has quit IRC | 19:44 | |
*** kbringard has quit IRC | 19:44 | |
*** stevemar has quit IRC | 19:44 | |
*** adreznec has quit IRC | 19:44 | |
*** wolverineav has quit IRC | 19:44 | |
*** leifz has joined #openstack-neutron | 19:44 | |
*** rha has quit IRC | 19:44 | |
*** krtaylor has joined #openstack-neutron | 19:44 | |
*** wolverineav has joined #openstack-neutron | 19:44 | |
*** haplo37- has quit IRC | 19:44 | |
*** ajo has quit IRC | 19:45 | |
*** jamespd has quit IRC | 19:45 | |
*** f0o has quit IRC | 19:45 | |
*** mdavidson has quit IRC | 19:45 | |
*** mdbooth has joined #openstack-neutron | 19:45 | |
*** mdbooth_ has quit IRC | 19:45 | |
*** salv-orlando has joined #openstack-neutron | 19:45 | |
*** tonytan_brb has quit IRC | 19:45 | |
*** hoangcx has joined #openstack-neutron | 19:45 | |
*** vkmc has quit IRC | 19:45 | |
*** iyamahat_ has joined #openstack-neutron | 19:45 | |
*** jheroux has joined #openstack-neutron | 19:45 | |
*** gopenshaw has quit IRC | 19:45 | |
*** gopenshaw has joined #openstack-neutron | 19:45 | |
*** tidwellr1 has joined #openstack-neutron | 19:45 | |
*** tidwellr has quit IRC | 19:45 | |
*** mkoderer__ has quit IRC | 19:45 | |
*** neil_ has quit IRC | 19:45 | |
*** jjheroux has quit IRC | 19:45 | |
*** jamespd_ has joined #openstack-neutron | 19:45 | |
*** kbringard1 has joined #openstack-neutron | 19:46 | |
*** adreznec_ has joined #openstack-neutron | 19:46 | |
*** mkoderer__ has joined #openstack-neutron | 19:46 | |
*** tidwellr1 has quit IRC | 19:46 | |
*** tidwellr1 has joined #openstack-neutron | 19:46 | |
*** adreznec_ is now known as adreznec | 19:46 | |
*** neil__ has joined #openstack-neutron | 19:46 | |
*** viniciusarcanjo_ has joined #openstack-neutron | 19:46 | |
*** rha has joined #openstack-neutron | 19:46 | |
*** stevebaker has joined #openstack-neutron | 19:46 | |
*** vkmc has joined #openstack-neutron | 19:46 | |
*** jroll has joined #openstack-neutron | 19:46 | |
*** jroll has quit IRC | 19:46 | |
*** jroll has joined #openstack-neutron | 19:46 | |
*** prateek has joined #openstack-neutron | 19:46 | |
*** dsneddon has joined #openstack-neutron | 19:47 | |
*** bsv_ has joined #openstack-neutron | 19:47 | |
*** ajo has joined #openstack-neutron | 19:47 | |
*** sinh has joined #openstack-neutron | 19:47 | |
*** f0o has joined #openstack-neutron | 19:47 | |
*** rdo has joined #openstack-neutron | 19:47 | |
*** haplo37- has joined #openstack-neutron | 19:47 | |
*** rvba has joined #openstack-neutron | 19:47 | |
*** rvba has joined #openstack-neutron | 19:47 | |
*** patrickeast has quit IRC | 19:48 | |
*** rkukura has joined #openstack-neutron | 19:48 | |
*** krtaylor has left #openstack-neutron | 19:48 | |
*** vhoward has quit IRC | 19:48 | |
*** vhoward has joined #openstack-neutron | 19:49 | |
*** kfox1111 has joined #openstack-neutron | 19:49 | |
*** patrickeast has joined #openstack-neutron | 19:49 | |
*** BlackDex has joined #openstack-neutron | 19:49 | |
*** haleyb_ has quit IRC | 19:51 | |
*** sindhu has joined #openstack-neutron | 19:51 | |
*** flaviof has joined #openstack-neutron | 19:51 | |
*** hynekm has quit IRC | 19:52 | |
*** zzzeek has joined #openstack-neutron | 19:52 | |
*** stevemar has joined #openstack-neutron | 19:52 | |
openstackgerrit | Nakul Dahiwade proposed openstack/neutron: OVO for NetworkDhcpAgentBinding https://review.openstack.org/370452 | 19:55 |
*** rajinir has joined #openstack-neutron | 19:56 | |
*** sindhude__ has joined #openstack-neutron | 19:56 | |
*** briancurtin has joined #openstack-neutron | 19:57 | |
*** Esha has joined #openstack-neutron | 20:00 | |
*** xgerman has joined #openstack-neutron | 20:01 | |
*** serverascode has joined #openstack-neutron | 20:02 | |
*** iranzo has quit IRC | 20:03 | |
*** mhickey has joined #openstack-neutron | 20:10 | |
*** patrickeast_ has joined #openstack-neutron | 20:13 | |
*** sdake has joined #openstack-neutron | 20:13 | |
openstackgerrit | Swaminathan Vasudevan proposed openstack/neutron: (WIP)DVR: Fix IPtables driver for metering with DVR routers https://review.openstack.org/377108 | 20:14 |
*** claudiub has quit IRC | 20:14 | |
*** sindhude__ has quit IRC | 20:14 | |
*** claudiub has joined #openstack-neutron | 20:14 | |
*** julim has joined #openstack-neutron | 20:15 | |
*** julim has quit IRC | 20:16 | |
*** Esha has quit IRC | 20:18 | |
*** obondarev has quit IRC | 20:20 | |
*** patrickeast__ has joined #openstack-neutron | 20:21 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: Introduce ovo objects for networks https://review.openstack.org/269658 | 20:21 |
*** iyamahat_ has quit IRC | 20:21 | |
*** tonytan4ever has joined #openstack-neutron | 20:21 | |
*** logan- has quit IRC | 20:21 | |
*** adziarkach__ has joined #openstack-neutron | 20:21 | |
*** jschwarz has quit IRC | 20:21 | |
*** mkoderer___ has joined #openstack-neutron | 20:22 | |
*** ujjain- has quit IRC | 20:22 | |
*** j_king has quit IRC | 20:22 | |
*** rvba` has joined #openstack-neutron | 20:22 | |
*** frickler has quit IRC | 20:22 | |
*** sai has quit IRC | 20:22 | |
*** leifmadsen has quit IRC | 20:22 | |
*** xgerman has quit IRC | 20:22 | |
*** rajinir has quit IRC | 20:22 | |
*** flaviof has quit IRC | 20:22 | |
*** sindhu has quit IRC | 20:22 | |
*** ankur-gupta-f1 has joined #openstack-neutron | 20:23 | |
*** rvba has quit IRC | 20:23 | |
*** wolverineav has quit IRC | 20:23 | |
*** sambetts|afk has quit IRC | 20:23 | |
*** martink2 has quit IRC | 20:23 | |
*** kev0 has joined #openstack-neutron | 20:23 | |
*** kuromagi has quit IRC | 20:23 | |
*** kuromagi^ has joined #openstack-neutron | 20:23 | |
*** wolverineav has joined #openstack-neutron | 20:23 | |
*** sinh has quit IRC | 20:23 | |
*** ajo has quit IRC | 20:23 | |
*** dsneddon has quit IRC | 20:23 | |
*** leifz has quit IRC | 20:23 | |
*** dkehn_ has quit IRC | 20:23 | |
*** kevo has quit IRC | 20:23 | |
*** adziarkach_ has quit IRC | 20:23 | |
*** dkehn_ has joined #openstack-neutron | 20:23 | |
*** kbringard has joined #openstack-neutron | 20:23 | |
*** mkolesni_ has joined #openstack-neutron | 20:23 | |
*** zzzeek has quit IRC | 20:23 | |
*** jroll has quit IRC | 20:23 | |
*** vkmc has quit IRC | 20:23 | |
*** mdbooth has quit IRC | 20:23 | |
*** asingh_ has quit IRC | 20:23 | |
*** j_king has joined #openstack-neutron | 20:23 | |
*** sdake_ has joined #openstack-neutron | 20:23 | |
*** ajo has joined #openstack-neutron | 20:23 | |
*** jroll has joined #openstack-neutron | 20:23 | |
*** jroll has quit IRC | 20:23 | |
*** jroll has joined #openstack-neutron | 20:23 | |
*** prateek has quit IRC | 20:23 | |
*** patrickeast has quit IRC | 20:23 | |
*** adreznec has quit IRC | 20:24 | |
*** kbringard1 has quit IRC | 20:24 | |
*** mkoderer__ has quit IRC | 20:24 | |
*** rdo has quit IRC | 20:24 | |
*** bsv_ has quit IRC | 20:24 | |
*** stevebaker has quit IRC | 20:24 | |
*** tidwellr1 has quit IRC | 20:24 | |
*** gopenshaw has quit IRC | 20:24 | |
*** leifz has joined #openstack-neutron | 20:24 | |
*** sdake has quit IRC | 20:24 | |
*** rdo has joined #openstack-neutron | 20:24 | |
*** patrickeast__ is now known as patrickeast | 20:24 | |
*** stevebak` has joined #openstack-neutron | 20:24 | |
*** sinh has joined #openstack-neutron | 20:24 | |
*** vkmc has joined #openstack-neutron | 20:24 | |
*** sambetts|afk has joined #openstack-neutron | 20:24 | |
*** gouthamr_ has quit IRC | 20:24 | |
*** tbachman has quit IRC | 20:24 | |
*** sai has joined #openstack-neutron | 20:24 | |
*** adreznec has joined #openstack-neutron | 20:24 | |
*** gouthamr has joined #openstack-neutron | 20:25 | |
*** srobert has quit IRC | 20:25 | |
*** leifmadsen has joined #openstack-neutron | 20:25 | |
*** dsneddon has joined #openstack-neutron | 20:25 | |
*** irenab has quit IRC | 20:26 | |
*** gopenshaw has joined #openstack-neutron | 20:26 | |
*** logan- has joined #openstack-neutron | 20:26 | |
*** jschwarz has joined #openstack-neutron | 20:26 | |
*** ujjain has joined #openstack-neutron | 20:27 | |
*** ujjain has quit IRC | 20:27 | |
*** ujjain has joined #openstack-neutron | 20:27 | |
*** zzzeek has joined #openstack-neutron | 20:27 | |
*** mdbooth has joined #openstack-neutron | 20:29 | |
*** f0o|away has joined #openstack-neutron | 20:31 | |
*** kevo has joined #openstack-neutron | 20:31 | |
openstackgerrit | Darek Smigiel proposed openstack/neutron: Cleanup of SecurityGroup classes https://review.openstack.org/363198 | 20:31 |
*** jprovazn_ has quit IRC | 20:32 | |
*** gopenshaw has quit IRC | 20:32 | |
*** leifz has quit IRC | 20:32 | |
*** kbringard has quit IRC | 20:32 | |
*** f0o has quit IRC | 20:32 | |
*** jschwarz has quit IRC | 20:32 | |
*** sambetts|afk has quit IRC | 20:32 | |
*** ajo has quit IRC | 20:32 | |
*** serverascode has quit IRC | 20:32 | |
*** kuromagi^ has quit IRC | 20:32 | |
*** kuromagi has joined #openstack-neutron | 20:32 | |
*** xgerman has joined #openstack-neutron | 20:32 | |
*** tidwellr has joined #openstack-neutron | 20:32 | |
*** adreznec has quit IRC | 20:32 | |
*** sai has quit IRC | 20:32 | |
*** kev0 has quit IRC | 20:32 | |
*** briancurtin has quit IRC | 20:32 | |
*** roaet has quit IRC | 20:32 | |
*** mkolesni_ has quit IRC | 20:32 | |
*** f0o|away is now known as f0o | 20:32 | |
*** xgerman has quit IRC | 20:32 | |
*** xgerman has joined #openstack-neutron | 20:32 | |
*** tidwellr has quit IRC | 20:32 | |
*** tidwellr has joined #openstack-neutron | 20:32 | |
*** sambetts_ has joined #openstack-neutron | 20:32 | |
*** jamespd_ has quit IRC | 20:33 | |
*** mkolesni has joined #openstack-neutron | 20:33 | |
*** jamespd has joined #openstack-neutron | 20:33 | |
*** leifmadsen has quit IRC | 20:33 | |
*** vkmc has quit IRC | 20:33 | |
*** rdo has quit IRC | 20:33 | |
*** jroll has quit IRC | 20:33 | |
*** viniciusarcanjo_ has quit IRC | 20:33 | |
*** jschwarz has joined #openstack-neutron | 20:33 | |
*** viniciusarcanjo_ has joined #openstack-neutron | 20:33 | |
*** rdo has joined #openstack-neutron | 20:33 | |
*** leifmadsen_ has joined #openstack-neutron | 20:33 | |
*** ajo has joined #openstack-neutron | 20:33 | |
*** adreznec has joined #openstack-neutron | 20:33 | |
*** sai has joined #openstack-neutron | 20:33 | |
*** leifz has joined #openstack-neutron | 20:34 | |
*** gopenshaw has joined #openstack-neutron | 20:34 | |
*** jroll has joined #openstack-neutron | 20:34 | |
*** jroll has quit IRC | 20:34 | |
*** jroll has joined #openstack-neutron | 20:34 | |
*** roaet has joined #openstack-neutron | 20:34 | |
*** kbringard has joined #openstack-neutron | 20:34 | |
*** vkmc has joined #openstack-neutron | 20:34 | |
openstackgerrit | Mohit Malik proposed openstack/neutron: Add OVO for AutoAllocatedTopology https://review.openstack.org/357506 | 20:35 |
*** sc68cal_ is now known as sc68cal | 20:35 | |
*** bsv has joined #openstack-neutron | 20:35 | |
*** bsv is now known as Guest66282 | 20:36 | |
*** frickler has joined #openstack-neutron | 20:37 | |
*** vhoward has quit IRC | 20:38 | |
*** jklare has quit IRC | 20:38 | |
*** asingh_ has joined #openstack-neutron | 20:39 | |
*** sindhu has joined #openstack-neutron | 20:40 | |
*** yfried has joined #openstack-neutron | 20:40 | |
*** quade1 has quit IRC | 20:40 | |
*** shihanzhang has quit IRC | 20:42 | |
*** jklare has joined #openstack-neutron | 20:42 | |
*** shihanzhang has joined #openstack-neutron | 20:42 | |
*** adziarkach_ has joined #openstack-neutron | 20:43 | |
*** rajinir has joined #openstack-neutron | 20:43 | |
*** serverascode has joined #openstack-neutron | 20:43 | |
*** mkolesni_ has joined #openstack-neutron | 20:44 | |
*** mdurrant__ has joined #openstack-neutron | 20:44 | |
*** adreznec_ has joined #openstack-neutron | 20:44 | |
*** patrickeast_ has quit IRC | 20:44 | |
*** Anticimex has quit IRC | 20:44 | |
*** todin has quit IRC | 20:44 | |
*** ajo_ has joined #openstack-neutron | 20:44 | |
*** jamespd_ has joined #openstack-neutron | 20:44 | |
*** todin has joined #openstack-neutron | 20:44 | |
*** roaet_ has joined #openstack-neutron | 20:44 | |
*** ajo has quit IRC | 20:45 | |
*** jamespd has quit IRC | 20:45 | |
*** mkolesni has quit IRC | 20:45 | |
*** gopenshaw_ has joined #openstack-neutron | 20:45 | |
*** kuromagi^ has joined #openstack-neutron | 20:45 | |
*** leifmadsen has joined #openstack-neutron | 20:45 | |
*** ankur-gupta-f1 has quit IRC | 20:46 | |
*** roaet has quit IRC | 20:46 | |
*** gopenshaw has quit IRC | 20:46 | |
*** adreznec has quit IRC | 20:46 | |
*** leifz has quit IRC | 20:46 | |
*** Guest66282 has quit IRC | 20:46 | |
*** tidwellr has quit IRC | 20:46 | |
*** xgerman has quit IRC | 20:46 | |
*** dsneddon has quit IRC | 20:46 | |
*** dkehn_ has quit IRC | 20:46 | |
*** sdake_ has quit IRC | 20:46 | |
*** wolverineav has quit IRC | 20:46 | |
*** jamielennox has quit IRC | 20:46 | |
*** sindhu has quit IRC | 20:46 | |
*** vkmc has quit IRC | 20:46 | |
*** jroll has quit IRC | 20:46 | |
*** leifmadsen_ has quit IRC | 20:46 | |
*** kuromagi has quit IRC | 20:46 | |
*** rha has quit IRC | 20:46 | |
*** Anticime1 has joined #openstack-neutron | 20:46 | |
*** leifz has joined #openstack-neutron | 20:46 | |
*** bsv_ has joined #openstack-neutron | 20:46 | |
*** jroll has joined #openstack-neutron | 20:46 | |
*** wolverineav has joined #openstack-neutron | 20:46 | |
*** dkehn_ has joined #openstack-neutron | 20:46 | |
*** adreznec_ is now known as adreznec | 20:46 | |
*** krtaylor has joined #openstack-neutron | 20:46 | |
*** jroll is now known as Guest49945 | 20:46 | |
*** adziarkach__ has quit IRC | 20:47 | |
*** mdurrant_ has quit IRC | 20:47 | |
*** briancurtin has joined #openstack-neutron | 20:47 | |
*** sdake has joined #openstack-neutron | 20:47 | |
*** Guest49945 is now known as jroll|dupe | 20:47 | |
*** jroll|dupe has quit IRC | 20:47 | |
*** jroll|dupe has joined #openstack-neutron | 20:47 | |
*** rha has joined #openstack-neutron | 20:47 | |
*** rha has quit IRC | 20:47 | |
*** rha has joined #openstack-neutron | 20:47 | |
*** dsneddon has joined #openstack-neutron | 20:48 | |
*** ankur-gupta-f1 has joined #openstack-neutron | 20:48 | |
*** quade1 has joined #openstack-neutron | 20:48 | |
*** mkolesni_ has quit IRC | 20:49 | |
*** vkmc has joined #openstack-neutron | 20:50 | |
*** dane_leblanc__ has joined #openstack-neutron | 20:50 | |
*** jamielennox has joined #openstack-neutron | 20:51 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: fullstack: VLAN aware VMs test https://review.openstack.org/369001 | 20:52 |
*** tidwellr has joined #openstack-neutron | 20:53 | |
*** kev0 has joined #openstack-neutron | 20:53 | |
*** kevo has quit IRC | 20:54 | |
*** jroll|dupe is now known as jroll | 20:54 | |
*** martink2 has joined #openstack-neutron | 20:55 | |
*** flaviof has joined #openstack-neutron | 20:56 | |
*** sindhu has joined #openstack-neutron | 20:56 | |
*** abhiraut has quit IRC | 20:56 | |
*** abhiraut has joined #openstack-neutron | 20:56 | |
*** banix has quit IRC | 20:56 | |
amuller | armax: re: https://review.openstack.org/#/c/369001/16/neutron/tests/fullstack/test_trunk.py@98 | 20:57 |
armax | amuller: aye | 20:57 |
armax | I replied on the patch, did you see my last comment? | 20:57 |
amuller | armax: does vlan aware vms require disabling arp spoofing or what's the story there? | 20:57 |
amuller | armax: yes, we've moved on =p | 20:57 |
armax | amuller: ah ok :) | 20:57 |
armax | amuller: you want the fully story or the elevator pitch? | 20:57 |
amuller | armax: short version is fine | 20:58 |
amuller | armax: just wanted to make sure it makes sense to you | 20:58 |
armax | it does | 20:58 |
amuller | ok | 20:58 |
amuller | is this a test only thing or prod too? | 20:58 |
armax | the short story is that right now | 20:58 |
armax | without the guest being involved or the way kuba provisioned the subports | 20:59 |
*** patrickeast_ has joined #openstack-neutron | 20:59 | |
armax | the ICMP responses from the subports come with the sender being the parent MAC address | 20:59 |
armax | hence ARP spoofing prevention rules doing their job | 21:00 |
*** xgerman has joined #openstack-neutron | 21:00 | |
armax | kuba was going to braindump this so that we can document this more extensively in the docs | 21:01 |
*** slaweq_ has quit IRC | 21:01 | |
armax | alternatively 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 locally | 21:01 |
armax | but I haven’t heard back from him since | 21:01 |
armax | the last time we spoke | 21:01 |
amuller | in an actual linux based distro, when you add vlan interfaces on a nic does it copy the MAC? | 21:02 |
armax | amuller: I think you gotta give it the MAC, but i am not 100% sure | 21:03 |
amuller | armax: I just did a local test, seems it copies the MAC | 21:03 |
amuller | armax: I think I'm going to have to insist to create the subports with the parent port MAC... | 21:03 |
armax | we thought about it | 21:04 |
armax | but there may be a bug lurking in ovs-firewall | 21:04 |
armax | https://bugs.launchpad.net/neutron/+bug/1626010 | 21:04 |
openstack | Launchpad 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 |
amuller | right now it's using the noop or iptables firewall | 21:04 |
*** ijw has joined #openstack-neutron | 21:04 | |
armax | though right now the tests do not exercise firewall | 21:05 |
amuller | the test | 21:05 |
armax | so it should be fine | 21:05 |
amuller | right | 21:05 |
armax | using the same MAC would be fine, unless I am forgetting something | 21:05 |
armax | in fact that’s one of the suggestions I made in a previous PS | 21:05 |
amuller | armax: 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 |
armax | you create a regular port, then you take the UUID and use it to add a subport to a trunk | 21:06 |
amuller | unique MAC I see | 21:06 |
amuller | yeah | 21:06 |
amuller | hrmm | 21:06 |
armax | so it’s up to the user | 21:06 |
armax | he/she can use the same MAC of the parent port if desired | 21:06 |
armax | thing is, it depends on the use case | 21:06 |
armax | MACs may or may match | 21:07 |
amuller | are you referring to containers in vms vs. vnfs? | 21:07 |
amuller | I guess with containers in vms you want unique macs? | 21:07 |
armax | I was not referring to anything in particular | 21:08 |
*** woodburn1 has quit IRC | 21:08 | |
*** mickeys_ has quit IRC | 21:08 | |
armax | I am simply saying that the system being Neutron may be not the best place to decide what MAC a subport might need to have | 21:08 |
*** mickeys has joined #openstack-neutron | 21:08 | |
amuller | armax: do we have strong use cases in mind for both cases? | 21:08 |
amuller | or did we just not want to make a decision? | 21:08 |
armax | I think having this flexible keeps our options open | 21:09 |
*** mhickey has quit IRC | 21:09 | |
*** g3ek has quit IRC | 21:10 | |
armax | amuller: btw I think I understand why that trace is showing up | 21:13 |
amuller | armax: I'm still not clear why responses are coming from parent ports =/ | 21:13 |
armax | they are not | 21:13 |
armax | unless you mean the why the sender MAC is the parent's | 21:13 |
*** g3ek has joined #openstack-neutron | 21:13 | |
amuller | "the ICMP responses from the subports come with the sender being the parent MAC address" | 21:13 |
amuller | trying to parse that | 21:14 |
armax | I suspect that has to do with how the fakevm works, kuba would be definitely in a better position to shed light on this | 21:15 |
*** eezhova has joined #openstack-neutron | 21:15 | |
armax | and satisfy your thirst of knowledge | 21:15 |
*** patrickeast has quit IRC | 21:15 | |
amuller | armax: OK I'll ask on Gerrit | 21:16 |
*** patrickeast_ is now known as patrickeast | 21:16 | |
armax | yeah, it’s probably best to make sure we capture this with him | 21:17 |
amuller | ack | 21:18 |
armax | amuller: thanks for looking into this | 21:19 |
amuller | should have reviewed this a while ago | 21:19 |
armax | well | 21:21 |
armax | better late than never | 21:21 |
armax | I hope there’s nothing fundamentally wrong | 21:21 |
armax | I don’t think anyway | 21:22 |
*** gvrangan has joined #openstack-neutron | 21:22 | |
*** sdake has quit IRC | 21:22 | |
*** woodburn has joined #openstack-neutron | 21:23 | |
dasm | From https://github.com/openstack/neutron | 21:23 |
dasm | 5514ba5..c9a5400 stable/newton -> origin/stable/newton | 21:23 |
dasm | newton oficially released? | 21:23 |
armax | dasm: rc1 has | 21:23 |
*** thorst_ has quit IRC | 21:23 | |
dasm | armax: rc2 still pending? | 21:24 |
armax | dasm: it’s in the oven | 21:24 |
dasm | armax: ack. thanks | 21:24 |
*** thorst_ has joined #openstack-neutron | 21:24 | |
*** padkrish has joined #openstack-neutron | 21:24 | |
armax | https://review.openstack.org/#/c/376998/ | 21:24 |
*** rawlin has joined #openstack-neutron | 21:26 | |
dasm | armax: thanks | 21:26 |
dasm | all bugs targeted for rc2 fixed: https://launchpad.net/neutron/+milestone/newton-rc2 | 21:28 |
dasm | \o/ | 21:29 |
*** thorst_ has quit IRC | 21:29 | |
armax | dasm: the ones we could catch, yes :) | 21:30 |
dasm | hehe | 21:30 |
*** yfried has quit IRC | 21:32 | |
*** sterdnotshaken has joined #openstack-neutron | 21:33 | |
*** yfried has joined #openstack-neutron | 21:33 | |
*** gouthamr has quit IRC | 21:33 | |
sterdnotshaken | Anyone have any help you could give with this error we're getting in Horizon: "Error: Unable to connect to Neutron" | 21:34 |
dasm | sterdnotshaken: you need to include more details: env, version of openstack, what's happening, did you check logs, etc. | 21:35 |
dasm | sterdnotshaken: i didn't see this kind of message | 21:35 |
*** jheroux has quit IRC | 21:36 | |
*** rtheis has quit IRC | 21:36 | |
sterdnotshaken | Sorry… 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 |
dasm | armax: question about release. why neutron is tagged with c9a54002f2fdbd86e03fb266361ff482ea1c6c9f and not with latest change: c64b6295d9120372ab0c600c3cb087b6f2cbfc3c ? | 21:37 |
sterdnotshaken | The error message happen's when I log into Horizon and click on compute/instances… | 21:37 |
dasm | armax: nvm. i see why. c9 is latest one. | 21:38 |
armax | dasm: c9 is the merge commit | 21:38 |
armax | on the stable branch | 21:38 |
armax | and that’s where we cut RC2 from | 21:39 |
dasm | armax: yeah. didn't notice master vs stable/newton. | 21:39 |
dasm | sterdnotshaken: did you check apache logs? | 21:39 |
dasm | armax: ok. now we have official release :D | 21:39 |
dasm | 21:38:35 openstackgerrit | Merged openstack/releases: Release Neutron Newton RC2 https://review.openstack.org/376998 | 21:39 |
dasm | :D | 21:39 |
sterdnotshaken | checking… | 21:40 |
openstackgerrit | James Anziano proposed openstack/neutron: Add api tempest tests for segments https://review.openstack.org/353115 | 21:43 |
*** kbringard has quit IRC | 21:44 | |
*** tbachman has joined #openstack-neutron | 21:46 | |
openstackgerrit | Aradhana Singh proposed openstack/neutron: Refactoring config options for l3 ha agent opts https://review.openstack.org/346245 | 21:46 |
*** haleyb_ has joined #openstack-neutron | 21:47 | |
openstackgerrit | Aradhana Singh proposed openstack/neutron: Refactoring config options for l3 ha agent opts https://review.openstack.org/346245 | 21:48 |
*** yfried has quit IRC | 21:50 | |
*** ijw has quit IRC | 21:50 | |
*** haleyb_ has quit IRC | 21:52 | |
*** iyamahat has joined #openstack-neutron | 21:52 | |
*** ranjithd has joined #openstack-neutron | 21:53 | |
*** ihrachys has quit IRC | 21:54 | |
amuller | armax: ok, finished my review, gotta run now | 21:55 |
amuller | armax: nothing major overall it's in great shape and a pretty impressive effort on Kuba's part IMO | 21:55 |
*** kbringard has joined #openstack-neutron | 21:55 | |
amuller | it also would have been a nightmare to test without fullstack | 21:55 |
*** tonyb_ is now known as tonyb | 21:56 | |
*** amuller has quit IRC | 21:57 | |
*** jamesdenton has quit IRC | 21:58 | |
*** nherciu_ has quit IRC | 21:58 | |
*** ranjithd has quit IRC | 21:59 | |
*** ranjithd has joined #openstack-neutron | 21:59 | |
openstackgerrit | Swaminathan Vasudevan proposed openstack/neutron: (WIP)DVR: Fix IPtables driver for metering with DVR routers https://review.openstack.org/377108 | 22:02 |
*** sdague has quit IRC | 22:02 | |
*** njohnston_ has joined #openstack-neutron | 22:06 | |
*** janzian has quit IRC | 22:10 | |
*** ijw has joined #openstack-neutron | 22:10 | |
*** boden has quit IRC | 22:12 | |
*** mriedem has quit IRC | 22:12 | |
*** haplo37- has quit IRC | 22:12 | |
*** haplo37- has joined #openstack-neutron | 22:14 | |
*** salv-orlando has quit IRC | 22:15 | |
*** ijw has quit IRC | 22:16 | |
*** zkassab_ has quit IRC | 22:18 | |
*** rawlin has quit IRC | 22:20 | |
*** gvrangan has quit IRC | 22:20 | |
*** ijw has joined #openstack-neutron | 22:21 | |
*** Guest45789 is now known as med_ | 22:22 | |
*** med_ has quit IRC | 22:23 | |
*** med_ has joined #openstack-neutron | 22:23 | |
*** salv-orlando has joined #openstack-neutron | 22:23 | |
*** s3wong has joined #openstack-neutron | 22:24 | |
*** njohnston_ has quit IRC | 22:25 | |
*** njohnston_ has joined #openstack-neutron | 22:26 | |
*** ijw has quit IRC | 22:27 | |
*** ranjithd has quit IRC | 22:27 | |
*** baoli has quit IRC | 22:31 | |
*** eezhova has quit IRC | 22:32 | |
*** njohnston_ is now known as njohnston__ | 22:33 | |
*** SKipp_ has joined #openstack-neutron | 22:33 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements https://review.openstack.org/377469 | 22:34 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron-fwaas: Updated from global requirements https://review.openstack.org/377471 | 22:34 |
sterdnotshaken | So 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 IRC | 22:36 | |
*** ijw has joined #openstack-neutron | 22:36 | |
*** ivar-laz_ has joined #openstack-neutron | 22:38 | |
openstackgerrit | Trevor McCasland proposed openstack/neutron-lib: api-ref: Update local_id configuration https://review.openstack.org/378068 | 22:41 |
*** haleyb_ has joined #openstack-neutron | 22:41 | |
*** ankur-gupta-f1 has left #openstack-neutron | 22:41 | |
*** ivar-lazzaro has quit IRC | 22:42 | |
*** tflynn_ has joined #openstack-neutron | 22:42 | |
*** iyamahat has quit IRC | 22:43 | |
*** amotoki has quit IRC | 22:43 | |
*** tflynn has quit IRC | 22:45 | |
*** salv-orlando has quit IRC | 22:46 | |
*** frontrunner2 has quit IRC | 22:47 | |
*** tflynn_ has quit IRC | 22:47 | |
Sam-I-Am | sterdnotshaken: vms on the same network use the same bridge | 22:48 |
Sam-I-Am | iptables rules are applied on the bridge | 22:48 |
*** alex_xu has quit IRC | 22:50 | |
*** haleyb_ has quit IRC | 22:52 | |
*** alex_xu has joined #openstack-neutron | 22:52 | |
*** jamesdenton has joined #openstack-neutron | 22:53 | |
sterdnotshaken | Sam-I-Am: Thanks!!! | 22:53 |
*** jamesden_ has joined #openstack-neutron | 22:53 | |
*** mmalik4 has quit IRC | 22:54 | |
*** alraddarla_ has quit IRC | 22:55 | |
*** sdake has joined #openstack-neutron | 22:56 | |
*** lnicolas has joined #openstack-neutron | 22:56 | |
*** trozet has joined #openstack-neutron | 22:57 | |
*** jamesdenton has quit IRC | 22:57 | |
*** ijw has quit IRC | 22:57 | |
*** sdake_ has joined #openstack-neutron | 22:58 | |
*** padkrish has quit IRC | 23:00 | |
*** claudiub|2 has joined #openstack-neutron | 23:00 | |
*** kbringard has quit IRC | 23:01 | |
*** nicolasbock has quit IRC | 23:01 | |
*** sdake has quit IRC | 23:01 | |
*** padkrish has joined #openstack-neutron | 23:01 | |
*** nicolasbock has joined #openstack-neutron | 23:02 | |
*** claudiub has quit IRC | 23:03 | |
*** SKipp_ has quit IRC | 23:03 | |
openstackgerrit | Anindita Das proposed openstack/neutron: OVO for RouterL3AgentBinding https://review.openstack.org/360908 | 23:04 |
*** banix has joined #openstack-neutron | 23:05 | |
*** kriskend__ has quit IRC | 23:07 | |
*** sticker_ has joined #openstack-neutron | 23:10 | |
*** dane_leblanc__ has quit IRC | 23:11 | |
*** sticker_ is now known as sticker | 23:11 | |
*** banix has quit IRC | 23:12 | |
openstackgerrit | Sindhu Devale proposed openstack/neutron: Relocate router route DB model https://review.openstack.org/354797 | 23:12 |
*** trozet has quit IRC | 23:13 | |
*** trozet has joined #openstack-neutron | 23:14 | |
*** banix has joined #openstack-neutron | 23:14 | |
*** ijw has joined #openstack-neutron | 23:18 | |
*** ijw has quit IRC | 23:19 | |
*** ijw has joined #openstack-neutron | 23:19 | |
*** markvoelker has quit IRC | 23:19 | |
openstackgerrit | Sindhu Devale proposed openstack/neutron: OVO for Router Route https://review.openstack.org/356223 | 23:21 |
*** ivar-laz_ has quit IRC | 23:28 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Fix misleading error trace in trunk fullstack life cycle test https://review.openstack.org/378081 | 23:28 |
*** g3ek has quit IRC | 23:28 | |
*** ivar-lazzaro has joined #openstack-neutron | 23:28 | |
*** gvrangan has joined #openstack-neutron | 23:28 | |
*** lezbar has quit IRC | 23:31 | |
*** ijw has quit IRC | 23:31 | |
*** lezbar has joined #openstack-neutron | 23:31 | |
*** tidwellr has quit IRC | 23:32 | |
openstackgerrit | Anindita Das proposed openstack/neutron: OVO for VlanAllocation https://review.openstack.org/356660 | 23:33 |
*** rcarrillocruz has quit IRC | 23:33 | |
*** ijw has joined #openstack-neutron | 23:33 | |
*** ijw has quit IRC | 23:34 | |
*** ijw has joined #openstack-neutron | 23:34 | |
*** rcarrillocruz has joined #openstack-neutron | 23:34 | |
*** ijw has quit IRC | 23:36 | |
*** baoli has joined #openstack-neutron | 23:37 | |
*** g3ek has joined #openstack-neutron | 23:37 | |
*** njohnston has quit IRC | 23:37 | |
*** ijw has joined #openstack-neutron | 23:42 | |
*** yushiro has joined #openstack-neutron | 23:44 | |
*** Worry has joined #openstack-neutron | 23:44 | |
*** Worry has quit IRC | 23:46 | |
openstackgerrit | Anindita Das proposed openstack/neutron: OVO for VxlanAllocation and VxlanEndpoints https://review.openstack.org/362508 | 23:46 |
*** Swami has quit IRC | 23:46 | |
*** EinstCrazy has joined #openstack-neutron | 23:47 | |
*** EinstCrazy has quit IRC | 23:48 | |
*** haleyb_ has joined #openstack-neutron | 23:48 | |
*** frontrunner has joined #openstack-neutron | 23:49 | |
manjeets | kevinbenton, ping (reg added dns hook) | 23:50 |
*** hoangcx has quit IRC | 23:53 | |
openstackgerrit | Manjeet Singh Bhatia proposed openstack/neutron: Add api test for create update network and port with dns https://review.openstack.org/354447 | 23:53 |
*** salv-orlando has joined #openstack-neutron | 23:53 | |
*** haleyb_ has quit IRC | 23:53 | |
*** tonytan4ever has quit IRC | 23:55 | |
openstackgerrit | Manjeet Singh Bhatia proposed openstack/neutron: Add api test for create update network and port with dns https://review.openstack.org/354447 | 23:55 |
*** abhiraut has quit IRC | 23:56 | |
*** salv-orlando has quit IRC | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!