Monday, 2017-02-13

*** Leo_ has joined #openstack-neutron00:01
*** masaki has joined #openstack-neutron00:02
*** wolverineav has quit IRC00:03
*** lucas_ has quit IRC00:05
*** thorst_ has joined #openstack-neutron00:10
*** thorst_ has quit IRC00:12
*** zkassab has quit IRC00:13
*** wolverineav has joined #openstack-neutron00:18
*** baoli has joined #openstack-neutron00:22
*** baoli has quit IRC00:23
*** baoli has joined #openstack-neutron00:23
*** wolverineav has quit IRC00:23
*** jamielennox is now known as jamielennox|away00:24
*** rvba has quit IRC00:28
*** rvba has joined #openstack-neutron00:28
*** rvba has joined #openstack-neutron00:29
*** mdbooth has quit IRC00:29
*** wolverineav has joined #openstack-neutron00:29
*** mdbooth has joined #openstack-neutron00:30
*** wolverineav has quit IRC00:33
*** fragatina has joined #openstack-neutron00:35
*** catintheroof has joined #openstack-neutron00:36
*** catintheroof has quit IRC00:37
*** baoli has quit IRC00:38
*** lucas_ has joined #openstack-neutron00:38
*** wolverineav has joined #openstack-neutron00:39
*** hoangcx has joined #openstack-neutron00:42
*** wolverineav has quit IRC00:44
*** geen02 has joined #openstack-neutron00:45
*** tbachman has quit IRC00:46
*** TuHV_ has joined #openstack-neutron00:46
*** TuHV has joined #openstack-neutron00:46
*** wolverineav has joined #openstack-neutron00:49
*** jamielennox|away is now known as jamielennox00:50
*** zkassab has joined #openstack-neutron00:53
*** wolverineav has quit IRC00:54
*** wolverineav has joined #openstack-neutron01:00
*** wolverineav has quit IRC01:04
*** tobias_fiberdata has quit IRC01:14
*** tobias_fiberdata has joined #openstack-neutron01:15
*** yedongcan has joined #openstack-neutron01:17
*** nmagnezi has quit IRC01:18
*** thorst_ has joined #openstack-neutron01:19
*** thorst_ has quit IRC01:19
*** amoralej|off has quit IRC01:19
*** nmagnezi has joined #openstack-neutron01:20
*** wolverineav has joined #openstack-neutron01:20
*** amoralej has joined #openstack-neutron01:22
*** salv-orlando has joined #openstack-neutron01:23
*** wolverineav has quit IRC01:24
*** iwamoto has joined #openstack-neutron01:26
*** salv-orlando has quit IRC01:27
*** huanxie has quit IRC01:28
*** huanxie has joined #openstack-neutron01:28
*** crushil has joined #openstack-neutron01:30
*** donghao has joined #openstack-neutron01:40
*** wolverineav has joined #openstack-neutron01:40
*** tuanluong has joined #openstack-neutron01:41
*** gongysh has joined #openstack-neutron01:41
*** zkassab has quit IRC01:42
*** wolverineav has quit IRC01:44
*** thorst_ has joined #openstack-neutron01:45
*** donghao has quit IRC01:45
*** thorst_ has quit IRC01:45
*** openstackgerrit has joined #openstack-neutron01:47
openstackgerrityuhui proposed openstack/neutron master: Correct the mistake in ../conf.py  https://review.openstack.org/43280401:47
*** wolverineav has joined #openstack-neutron01:50
*** pmannidi has quit IRC01:50
*** wolverineav has quit IRC01:54
*** pmannidi has joined #openstack-neutron01:59
*** baoli has joined #openstack-neutron02:04
*** jamesdenton has quit IRC02:07
kevinbentonyamamoto: pong02:09
kevinbentonreedip: pong02:10
yamamotokevinbenton: hi02:10
*** wolverineav has joined #openstack-neutron02:10
reedip_ kevinbenton : hi02:11
yamamotoi looked at l3 flavor stuff for midonet while ago and had questions02:11
yamamotokevinbenton: is it supposed to use event callbacks sprinkled in l3_db and friends for backend operations?02:12
kevinbentonyamamoto: yeah, the idea was to achieve everything with callbacks02:12
reedip_kevinbenton : I responded to your query in https://review.openstack.org/#/c/432521/ , so if and when you have some time, could you please provide an answer ?02:12
kevinbentonreedip_: if something is expecting an IP address, now we are going to break that if we return a CIDR in some cases02:14
reedip_kevinbenton : yes , thats true. Thats why I was thinking to return whatever the function is passing02:14
*** wolverineav has quit IRC02:15
yamamotokevinbenton: do you plan to move agent rpc/notification to callbacks as well?02:15
kevinbentonreedip_: but then every field that uses this converter is unpredictable02:15
reedip_kevinbenton : if it passes CIDR, then return CIDR( with IP part in canonical format if its IPv6). If it passes IP, return IP ( but in canonical format if its IPv6)02:15
kevinbentonyamamoto: yeah, eventually02:15
kevinbentonyamamoto: right now it will generate a notification which will be a waste02:16
kevinbentonyamamoto: but it shouldn't impact your backend02:16
kevinbentonyamamoto: i mean the l3 agents running on the network shouldn't have the routers scheduled to them02:16
kevinbentonreedip_: but this function is used to validate user input02:17
yamamotokevinbenton: i guess it's related because we should try to provide a sane set of callbacks (ie. driver api)02:17
kevinbentonreedip_: so anything looking at these fields now won't know wheter to expect a CIDR or an IP02:18
kevinbentonreedip_: which means everything has to do another conversion02:18
*** thorst_ has joined #openstack-neutron02:19
*** thorst_ has quit IRC02:19
reedip_kevinbenton : so one things which can be done is attach this funtion only to resources which take in CIDR ( like subnet, gateway )02:19
yamamotokevinbenton: another question; midonet l3 plugin currently provides more functionalities than l3 reference plugin. do you have any idea how should they be provided by l3 flavor?02:19
kevinbentonyamamoto: separate APIs?02:19
reedip_kevinbenton : means if the input provided by the user is in CIDR, then convert it. If it is not, then dont do anything , return it back as it is and let the functions taking it as an input work on it.02:20
*** wolverineav has joined #openstack-neutron02:20
reedip_kevinbenton : that would have the design before this converter  came up , I think02:20
yamamotokevinbenton: functionalities like these https://review.openstack.org/#/c/416951/ https://review.openstack.org/#/c/410001/02:21
kevinbentonreedip_: if some functions expect IPs and other functions expect CIDRs, why are you trying to use the same valiation function for both?02:21
reedip_kevinbenton : I was trying to put the converter on the resources. So , is it possible that a neutron resource can have IP or CIDR as its valid input?02:23
kevinbentonyamamoto: some of these will need to be case-by-case basis. I think 416951 could be handled by moving that enforcement to the drivers rather than l3_db.py02:23
kevinbentonyamamoto: same with 410001 it looks like02:23
kevinbentonreedip_: some may accept both (e.g. a security groups rule)02:25
*** wolverineav has quit IRC02:25
yamamotodo you think it's ok to just add these to L3RouterPlugin's supported_extension_aliases?  or do you prefer to make it somehow dynamic?02:25
kevinbentonreedip_: but it looks like even security group rules right now just force the user to put in a CIDR02:26
reedip_kevinbenton : ok02:27
reedip_kevinbenton : then what would u suggest ?02:27
*** annp has joined #openstack-neutron02:28
reedip_kevinbenton : should the function expect only CIDR type values as input ?02:29
kevinbentonreedip_: it's for IP addresses isn't it? it should probably just take IP addresses02:32
kevinbentonreedip_: then we can have a separate function for CIDRs02:32
kevinbentonyamamoto: i'm not sure02:32
kevinbentonyamamoto: can you file an RFE to allow extensions in l3 flavors framework?02:33
kevinbentonyamamoto: so we can get Armando's input on it as well02:33
reedip_kevinbenton : ok, so for CIDR , I can extend this function , with a separate one.02:33
*** baoli has quit IRC02:33
*** slaweq has quit IRC02:33
yamamotokevinbenton: ok02:34
reedip_kevinbenton : then the issue would be , which converter to call where, but that can be decided based on the input the resource expects , isnt it?02:34
*** slaweq has joined #openstack-neutron02:34
*** armax has joined #openstack-neutron02:35
openstackgerritJesse proposed openstack/neutron master: Update class AsyncProcess to improve openvswitch-agent performance  https://review.openstack.org/43187602:36
kevinbentonreedip_: yeah, that should be right in the API definition02:39
kevinbentonreedip_: with the convert_to field02:39
kevinbentonreedip_: it will reference whichever function it needs02:39
reedip_kevinbenton : okay, thanks, I will proceed accordingly02:39
*** wolverineav has joined #openstack-neutron02:41
*** geen02 has quit IRC02:43
*** reedip_ has quit IRC02:44
*** wolverineav has quit IRC02:45
openstackgerritGuoshuai Li proposed openstack/networking-ovn master: Add Run Unit Tests and Run Functional Tests in the Testing documentation  https://review.openstack.org/42959802:46
*** gkadam has joined #openstack-neutron02:46
*** xiaohhui has quit IRC02:50
*** wolverineav has joined #openstack-neutron02:51
*** anilvenkata has joined #openstack-neutron02:55
*** chandanc_ has joined #openstack-neutron02:55
*** crushil has quit IRC02:55
*** mickeys has joined #openstack-neutron02:55
*** wolverineav has quit IRC02:55
openstackgerritDong Jun proposed openstack/networking-ovn master: Add "enable_service placement-api" to computenode-local.conf.sample  https://review.openstack.org/43282002:58
*** mickeys has quit IRC03:00
*** gkadam has quit IRC03:00
yamamotokevinbenton: https://bugs.launchpad.net/neutron/+bug/166410203:00
openstackLaunchpad bug 1664102 in neutron "allow l3 flavors to provide extensions" [Undecided,New]03:00
*** gouthamr has quit IRC03:03
*** liuyulong has joined #openstack-neutron03:05
kevinbentonyamamoto: thx03:07
openstackgerritYAMAMOTO Takashi proposed openstack/networking-midonet master: devstack: Propagate MIDONET_USE_CASSANDRA  https://review.openstack.org/43282303:13
*** hfu has joined #openstack-neutron03:13
*** TuHV__ has joined #openstack-neutron03:17
*** karthikpr has joined #openstack-neutron03:17
*** thorst_ has joined #openstack-neutron03:20
*** TuHV_ has quit IRC03:20
*** wolverineav has joined #openstack-neutron03:20
*** armax has quit IRC03:21
*** karthikpr has quit IRC03:22
*** salv-orlando has joined #openstack-neutron03:24
*** thorst_ has quit IRC03:25
*** wolverineav has quit IRC03:25
TuHV__zzelle_hello: ping03:28
*** salv-orlando has quit IRC03:28
TuHV__zzelle_hello: I would like to discuss with you about the Netlink feature https://review.openstack.org/38965403:30
*** crushil has joined #openstack-neutron03:31
*** karthikpr has joined #openstack-neutron03:31
*** geen02 has joined #openstack-neutron03:33
*** karthikpr has quit IRC03:37
*** gongysh has quit IRC03:39
*** tbachman has joined #openstack-neutron03:39
*** wolverineav has joined #openstack-neutron03:40
*** crushil has quit IRC03:43
*** psahoo has joined #openstack-neutron03:44
*** wolverineav has quit IRC03:45
*** sudipto has joined #openstack-neutron03:47
*** sudipto_ has joined #openstack-neutron03:47
*** geen02 has quit IRC03:48
*** wolverineav has joined #openstack-neutron03:51
*** huanxie has left #openstack-neutron03:52
*** tbachman has quit IRC03:54
*** wolverineav has quit IRC03:55
*** tbachman has joined #openstack-neutron03:58
*** geen02 has joined #openstack-neutron03:58
*** janki has joined #openstack-neutron03:59
*** wolverineav has joined #openstack-neutron04:01
*** mickeys has joined #openstack-neutron04:01
*** tbachman_ has joined #openstack-neutron04:01
*** tbachman has quit IRC04:04
*** tbachman_ is now known as tbachman04:04
*** wolverineav has quit IRC04:06
*** Dinesh_Bhor has joined #openstack-neutron04:08
*** karthikpr has joined #openstack-neutron04:08
*** mdnadeem has joined #openstack-neutron04:10
*** wolverineav has joined #openstack-neutron04:11
*** tbachman_ has joined #openstack-neutron04:12
*** tbachman has quit IRC04:13
*** tbachman_ is now known as tbachman04:13
*** huanxie has joined #openstack-neutron04:14
openstackgerritReedip proposed openstack/neutron-lib master: Add CIDR for canonical format conversion  https://review.openstack.org/43252104:14
*** wolverineav has quit IRC04:16
*** lucas_ has quit IRC04:20
*** thorst_ has joined #openstack-neutron04:21
*** wolverineav has joined #openstack-neutron04:22
*** adriant has quit IRC04:25
*** thorst_ has quit IRC04:26
*** wolverineav has quit IRC04:26
openstackgerritLujin Luo proposed openstack/neutron master: [WIP] Integration of Port OVO  https://review.openstack.org/41174104:27
*** geen02 has quit IRC04:28
*** sudipto has quit IRC04:28
*** sudipto_ has quit IRC04:28
*** openstackgerrit has quit IRC04:32
*** hoonetorg has quit IRC04:34
*** wolverineav has joined #openstack-neutron04:42
*** zenirc369 has joined #openstack-neutron04:44
*** faizy has joined #openstack-neutron04:46
*** wolverineav has quit IRC04:46
*** masaki has quit IRC04:46
*** masaki has joined #openstack-neutron04:47
*** hoonetorg has joined #openstack-neutron04:47
*** lucas_ has joined #openstack-neutron04:51
*** obondarev has joined #openstack-neutron04:51
*** sudipto has joined #openstack-neutron04:54
*** sudipto_ has joined #openstack-neutron04:54
*** salv-orlando has joined #openstack-neutron04:54
*** nlahouti has joined #openstack-neutron04:56
*** openstackgerrit has joined #openstack-neutron04:57
openstackgerritLujin Luo proposed openstack/neutron master: [WIP] Integration of Router OVO  https://review.openstack.org/42186304:57
*** salv-orlando has quit IRC04:59
*** jhershbe has joined #openstack-neutron05:00
*** udesale has joined #openstack-neutron05:01
*** ayogi has joined #openstack-neutron05:01
*** lucas_ has quit IRC05:01
*** obondarev has quit IRC05:05
*** radhikam has joined #openstack-neutron05:05
*** karthikpr has quit IRC05:06
*** karthikpr has joined #openstack-neutron05:07
*** geen02 has joined #openstack-neutron05:10
*** wolverineav has joined #openstack-neutron05:11
*** crushil has joined #openstack-neutron05:12
*** wolverineav has quit IRC05:16
*** mtreinish has quit IRC05:20
*** ratailor has joined #openstack-neutron05:27
*** gvrangan has joined #openstack-neutron05:27
*** jaosorior has joined #openstack-neutron05:28
*** mtreinish has joined #openstack-neutron05:31
*** wolverineav has joined #openstack-neutron05:32
*** TuHV__ has quit IRC05:32
*** amotoki has joined #openstack-neutron05:33
*** amotoki has quit IRC05:36
*** wolverineav has quit IRC05:37
*** trinaths has joined #openstack-neutron05:39
openstackgerritReedip proposed openstack/neutron master: DNM:Allow port creation/updation by shared nw owners  https://review.openstack.org/43285005:41
*** amotoki has joined #openstack-neutron05:48
*** moshele has joined #openstack-neutron05:49
*** princenana has joined #openstack-neutron05:50
*** janki has quit IRC05:50
*** princenana has quit IRC05:51
*** obondarev has joined #openstack-neutron05:51
*** wolverineav has joined #openstack-neutron05:52
*** trinaths has left #openstack-neutron05:55
*** crushil has quit IRC05:55
*** salv-orlando has joined #openstack-neutron05:55
*** TuHV__ has joined #openstack-neutron05:56
*** wolverineav has quit IRC05:57
*** nyechiel_ has joined #openstack-neutron05:58
*** bkopilov_ has quit IRC05:58
*** bkopilov_ has joined #openstack-neutron05:59
*** salv-orlando has quit IRC06:00
*** janki has joined #openstack-neutron06:00
*** gcb has joined #openstack-neutron06:00
*** Jeffrey4l__ has joined #openstack-neutron06:01
*** wolverineav has joined #openstack-neutron06:02
*** bkopilov_ has quit IRC06:04
*** Jeffrey4l_ has quit IRC06:04
*** mickeys has quit IRC06:04
*** bkopilov_ has joined #openstack-neutron06:04
*** obondarev has quit IRC06:05
*** pgadiya has joined #openstack-neutron06:07
*** wolverineav has quit IRC06:07
*** amotoki has quit IRC06:10
*** lucas_ has joined #openstack-neutron06:12
*** wolverineav has joined #openstack-neutron06:12
*** wolverineav has quit IRC06:17
*** sandanar has joined #openstack-neutron06:18
*** thorst_ has joined #openstack-neutron06:22
*** gcheresh has joined #openstack-neutron06:23
*** amotoki has joined #openstack-neutron06:23
*** jhershbe has quit IRC06:24
*** itzikb has joined #openstack-neutron06:25
*** thorst_ has quit IRC06:26
openstackgerritliusheng proposed openstack/neutron master: Use UUIDField defined in OVO  https://review.openstack.org/43286906:30
*** faizy has quit IRC06:31
*** faizy has joined #openstack-neutron06:31
*** wolverineav has joined #openstack-neutron06:32
*** abhiraut has joined #openstack-neutron06:32
*** faizy has quit IRC06:35
*** abhiraut has quit IRC06:36
*** faizy has joined #openstack-neutron06:36
*** karthikpr has quit IRC06:36
*** faizy has quit IRC06:37
*** wolverineav has quit IRC06:37
*** faizy has joined #openstack-neutron06:38
*** moshele has quit IRC06:39
*** Leo_ has quit IRC06:40
*** geen02 has quit IRC06:40
*** faizy has quit IRC06:41
*** faizy has joined #openstack-neutron06:41
openstackgerritliusheng proposed openstack/neutron master: Use MACAddressField defined in OVO  https://review.openstack.org/43287206:42
*** itisha has quit IRC06:42
*** salv-orlando has joined #openstack-neutron06:43
*** lucas_ has quit IRC06:46
reedipkevinbenton : there ?06:48
*** geen02 has joined #openstack-neutron06:48
openstackgerritliusheng proposed openstack/neutron master: Use IPNetworkField defined in OVO  https://review.openstack.org/43287406:49
*** wolverineav has joined #openstack-neutron06:52
*** wolverineav has quit IRC06:57
*** eezhova has joined #openstack-neutron06:58
*** fragatina has quit IRC06:58
*** sridharg has joined #openstack-neutron07:00
*** vthapar has joined #openstack-neutron07:00
*** salv-orl_ has joined #openstack-neutron07:00
*** liuyulong_ has joined #openstack-neutron07:00
*** Leo_ has joined #openstack-neutron07:00
*** kobis has joined #openstack-neutron07:01
*** nmathew has joined #openstack-neutron07:02
*** Jack_I has joined #openstack-neutron07:02
*** wolverineav has joined #openstack-neutron07:03
*** liuyulong has quit IRC07:03
*** salv-orlando has quit IRC07:03
*** zkassab has joined #openstack-neutron07:04
*** donghao has joined #openstack-neutron07:04
*** iranzo has joined #openstack-neutron07:04
*** iranzo has quit IRC07:04
*** iranzo has joined #openstack-neutron07:04
*** moshele has joined #openstack-neutron07:05
*** mickeys has joined #openstack-neutron07:05
*** kobis has quit IRC07:05
*** wolverineav has quit IRC07:08
*** kobis has joined #openstack-neutron07:09
*** gvrangan has quit IRC07:09
*** mickeys has quit IRC07:10
*** donghao has quit IRC07:10
*** rcernin has joined #openstack-neutron07:15
*** teclator has joined #openstack-neutron07:15
*** claudiub has joined #openstack-neutron07:16
*** jhershbe has joined #openstack-neutron07:19
*** zkassab has quit IRC07:21
openstackgerritMerged openstack/networking-midonet master: gate_hook: Disable advanced services for non full tempest jobs  https://review.openstack.org/40956007:22
*** wolverineav has joined #openstack-neutron07:23
*** radhikam has quit IRC07:26
*** radhikam has joined #openstack-neutron07:26
*** radhikam has quit IRC07:27
*** radhikam has joined #openstack-neutron07:27
*** radhikam has quit IRC07:28
*** wolverineav has quit IRC07:28
*** radhikam has joined #openstack-neutron07:28
*** geen02 has quit IRC07:28
*** tesseract has joined #openstack-neutron07:28
*** radhikam has quit IRC07:28
*** radhikam has joined #openstack-neutron07:29
openstackgerritMerged openstack/networking-midonet master: gate_hook: Stop excluding QosMinimumBandwidthRuleTestJSON explicitly  https://review.openstack.org/40957607:29
*** radhikam has quit IRC07:29
*** radhikam has joined #openstack-neutron07:29
*** tesseract is now known as tesseract-RH07:29
*** radhikam has quit IRC07:30
*** ircuser-1 has joined #openstack-neutron07:30
*** radhikam has joined #openstack-neutron07:30
*** obondarev has joined #openstack-neutron07:31
*** radhikam has quit IRC07:31
*** slaweq_ has joined #openstack-neutron07:31
openstackgerritZhaoBo proposed openstack/neutron-specs master: Correct the doc link  https://review.openstack.org/43288907:33
*** wolverineav has joined #openstack-neutron07:33
*** yamamoto has quit IRC07:34
*** korzen has joined #openstack-neutron07:36
*** wolverineav has quit IRC07:38
*** ijw has joined #openstack-neutron07:38
*** ekuris__ has joined #openstack-neutron07:38
*** fragatina has joined #openstack-neutron07:40
openstackgerritMerged openstack/networking-midonet master: gate_hook: Disable advanced services for rally job  https://review.openstack.org/41012907:42
*** wolverineav has joined #openstack-neutron07:43
*** ralonsoh has joined #openstack-neutron07:46
*** pmannidi has quit IRC07:47
*** wolverineav has quit IRC07:48
*** fragatina has quit IRC07:48
*** pcaruana has joined #openstack-neutron07:49
*** eezhova has quit IRC07:50
*** jhershbe has quit IRC07:56
*** jlibosva has joined #openstack-neutron07:56
*** gcb has quit IRC07:57
*** wolverineav has joined #openstack-neutron08:03
*** mickeys has joined #openstack-neutron08:07
*** wolverineav has quit IRC08:08
openstackgerritNuman Siddique proposed openstack/networking-ovn master: Use the neutron-lib imports in l3_ovn  https://review.openstack.org/43290308:09
*** mickeys has quit IRC08:11
*** xiaohhui has joined #openstack-neutron08:13
*** wolverineav has joined #openstack-neutron08:14
*** matrohon has joined #openstack-neutron08:14
*** gcheresh has quit IRC08:14
openstackgerritLujin Luo proposed openstack/neutron master: Integration of (Distributed) Port Binding OVO  https://review.openstack.org/40786808:14
*** hwoarang has quit IRC08:16
*** yamamoto has joined #openstack-neutron08:17
*** yamamoto has quit IRC08:17
*** yamamoto has joined #openstack-neutron08:18
*** wolverineav has quit IRC08:18
*** faizy has quit IRC08:19
*** faizy has joined #openstack-neutron08:20
*** jlinkes has joined #openstack-neutron08:20
*** thorst_ has joined #openstack-neutron08:22
*** wolverineav has joined #openstack-neutron08:24
*** claudiub has quit IRC08:24
*** ltomasbo|away is now known as ltomasbo08:25
*** nlahouti has quit IRC08:25
*** thorst_ has quit IRC08:27
*** geen02 has joined #openstack-neutron08:27
*** wolverineav has quit IRC08:28
*** abregman has joined #openstack-neutron08:34
*** eezhova has joined #openstack-neutron08:35
*** amarao has joined #openstack-neutron08:35
*** liuyulong_ is now known as liuyulong08:37
*** jpena|away is now known as jpena08:39
*** wolverineav has joined #openstack-neutron08:44
*** jhershbe has joined #openstack-neutron08:44
*** kobis has quit IRC08:45
*** ijw has quit IRC08:48
*** fzdarsky|afk has joined #openstack-neutron08:48
*** wolverineav has quit IRC08:49
*** claudiub has joined #openstack-neutron08:52
*** jpena is now known as jpena|away08:52
*** gcheresh has joined #openstack-neutron08:53
*** abregman has quit IRC08:56
*** wolverineav has joined #openstack-neutron08:56
*** jpena|away is now known as jpena08:59
*** zzzeek has quit IRC09:00
*** zzzeek has joined #openstack-neutron09:00
*** itzikb_ has joined #openstack-neutron09:00
openstackgerritLIU Yulong proposed openstack/networking-ovn master: Prevent unnecessary floating IP dissociate during updating extra attributes  https://review.openstack.org/43004609:00
*** wolverineav has quit IRC09:01
*** itzikb has quit IRC09:01
*** faizy has quit IRC09:01
openstackgerritReedip proposed openstack/neutron-lib master: Add CIDR for canonical format conversion  https://review.openstack.org/43252109:02
*** faizy has joined #openstack-neutron09:02
openstackgerritBernard Cafarelli proposed openstack/networking-sfc master: [DO NOT MERGE] Remove OSC parts  https://review.openstack.org/43224209:03
*** iwamoto has quit IRC09:03
*** john-davidge has joined #openstack-neutron09:03
*** rossella_s has joined #openstack-neutron09:03
*** rossella_s has quit IRC09:04
*** rossella_s has joined #openstack-neutron09:05
*** kobis has joined #openstack-neutron09:10
*** krypto has joined #openstack-neutron09:10
*** vijaykc4 has joined #openstack-neutron09:10
*** nyechiel_ has quit IRC09:10
*** gongysh has joined #openstack-neutron09:10
*** faizy_ has joined #openstack-neutron09:11
*** faizy has quit IRC09:15
*** itzikb_ has quit IRC09:15
*** itzikb has joined #openstack-neutron09:16
openstackgerritLujin Luo proposed openstack/neutron master: [WIP] Integration of Port OVO  https://review.openstack.org/41174109:20
*** davidsha has joined #openstack-neutron09:22
*** faizy_ has quit IRC09:24
*** belharar_ has joined #openstack-neutron09:25
*** belharar_ has quit IRC09:26
*** belharar_ has joined #openstack-neutron09:26
*** udesale__ has joined #openstack-neutron09:26
*** oreillyd_ has joined #openstack-neutron09:27
*** oreillyd has joined #openstack-neutron09:27
*** udesale has quit IRC09:29
*** mickeys has joined #openstack-neutron09:30
*** masaki has quit IRC09:30
*** neiljerram has joined #openstack-neutron09:31
*** lucas-afk is now known as lucasagomes09:36
openstackgerritOpenStack Proposal Bot proposed openstack/networking-midonet master: Updated from global requirements  https://review.openstack.org/43199309:36
*** eliqiao has quit IRC09:37
openstackgerritJesse proposed openstack/neutron master: Update class AsyncProcess to improve openvswitch-agent performance  https://review.openstack.org/43187609:38
*** eliqiao has joined #openstack-neutron09:40
*** eliqiao has quit IRC09:40
openstackgerritvenkata anil proposed openstack/neutron master: Avoid router ri.process if initialize() fails  https://review.openstack.org/43102609:40
*** faizy has joined #openstack-neutron09:42
*** wolverineav has joined #openstack-neutron09:46
*** faizy has quit IRC09:47
*** TMM has quit IRC09:47
*** hwoarang has joined #openstack-neutron09:47
*** jamielennox is now known as jamielennox|away09:48
*** neiljerram has quit IRC09:49
kryptoin DVR is it normal for dhcp namespace to not to communicate with router namespace ,in case vlan and GRE segmentation09:52
*** ataraday_ has joined #openstack-neutron09:53
*** wolverineav has quit IRC09:56
*** nirmoy has joined #openstack-neutron09:57
*** mickeys has quit IRC09:58
*** amotoki has quit IRC09:59
*** amotoki has joined #openstack-neutron10:01
*** obondarev has quit IRC10:02
*** moshele has quit IRC10:05
*** moshele has joined #openstack-neutron10:05
*** wolverineav has joined #openstack-neutron10:07
*** wolverineav has quit IRC10:11
*** neiljerram has joined #openstack-neutron10:12
*** vijaykc4 has quit IRC10:13
*** wolverineav has joined #openstack-neutron10:14
*** wolverineav has quit IRC10:15
*** geen02 has quit IRC10:16
*** dims_ has quit IRC10:16
*** rossella_s has quit IRC10:17
*** ushkalim has joined #openstack-neutron10:19
*** rossella_s has joined #openstack-neutron10:19
openstackgerritReedip proposed openstack/neutron master: Allow port creation/updation by shared nw owners  https://review.openstack.org/43285010:20
openstackgerritReedip proposed openstack/neutron-lib master: Add CIDR for canonical format conversion  https://review.openstack.org/43252110:22
*** udesale has joined #openstack-neutron10:22
*** dims has joined #openstack-neutron10:23
*** udesale__ has quit IRC10:23
*** thorst_ has joined #openstack-neutron10:23
*** jamielennox|away is now known as jamielennox10:24
*** salv-orl_ has quit IRC10:24
*** salv-orlando has joined #openstack-neutron10:25
*** vijaykc4 has joined #openstack-neutron10:25
*** wolverineav has joined #openstack-neutron10:26
*** karthiks has joined #openstack-neutron10:27
*** thorst_ has quit IRC10:28
*** ralonsoh_ has joined #openstack-neutron10:30
*** wolverineav has quit IRC10:30
*** wolverineav has joined #openstack-neutron10:31
*** ralonsoh_ has quit IRC10:32
*** ralonsoh_ has joined #openstack-neutron10:32
*** ralonsoh has quit IRC10:33
*** wolverineav has quit IRC10:35
ajoping kevinbenton quick question, are you around?10:37
*** vijaykc4 has quit IRC10:37
ajoIs it possible to register an extension not in neutron_lib/api/definitions or neutron/extensions, and provide a service plugin that implements it's own extension? (I remember it was possible somehow, but I don't see how/where to define 'here is the extension')10:39
*** chandanc__ has joined #openstack-neutron10:39
*** udesale has quit IRC10:39
ajokevinbenton : I'm asking because I'm looking at a little project dalvarez and anilvenkata have to make neutron-server and all the agents profileable.10:40
*** mvk has quit IRC10:40
ajothey are using a wsgi unixsocket server on each service to enable/disable profiling, but I believe it can be better if we expose the start/stop profiling on the server once for all, fanout the message to any listener.10:40
*** chandanc_ has quit IRC10:42
kevinbentonajo: yeah, one sec10:45
ajokevinbenton ack :) I'm around when you can thanks :)10:46
kevinbentonajo: https://github.com/openstack/networking-bigswitch/blob/master/bsnstacklib/plugins/bigswitch/extensions/bsnserviceextension.py#L2510:46
ajooooohh thanks kevinbenton  :)10:46
kevinbentonajo: no prob10:46
*** TuHV__ has quit IRC10:47
kevinbentonajo: is that project for osprofiler?10:47
ajokevinbenton dalvarez and anilvenkata are doing cool things by making all agents and server profile, and then merge all the profiling info together so you can look at everything in one place10:47
ajokevinbenton more low level (python profiler)10:47
*** yedongcan has left #openstack-neutron10:48
ajokevinbenton : http://awesomescreenshot.com/02368qqv5310:48
*** tuanluong has quit IRC10:49
ajokevinbenton it could be cool to be able to run this periodically, and get it integrated with rally, so rally starts/stops profiling on each run..10:49
kevinbentonajo: ah, cool10:49
*** claudiub|2 has joined #openstack-neutron10:49
ajo:) kevinbenton10:50
*** claudiub has quit IRC10:50
*** krypto has quit IRC10:51
*** krypto has joined #openstack-neutron10:52
ajokevinbenton hmm, and if we wanted to do this (adding the extensions) with ml2? :)10:53
*** rossella_s has quit IRC10:53
*** obondarev has joined #openstack-neutron10:53
kevinbentonajo: does ML2 need to have it? you could just have a service plugin that provides it10:53
*** rossella_s has joined #openstack-neutron10:53
*** annp has quit IRC10:54
ajokevinbenton hmm, sorry, right, ... :D10:54
ajokevinbenton so on the service plugin I make sure the extensions path is added before loading the service...10:54
ajoand then I mark it the extension as provided on the service plugin itself10:54
*** nyechiel_ has joined #openstack-neutron10:55
kevinbentonajo: yeah10:55
kevinbentonajo: hey, can you take a quick look at https://review.openstack.org/#/c/432762/10:56
kevinbentonajo: if you are good with it I will respin it really quick to address obondarev's comment10:56
ajokevinbenton ack thanks10:57
*** sambetts|afk is now known as sambetts10:58
ajokevinbenton ack, looks good :)11:00
*** hoangcx has quit IRC11:00
*** sudipto has quit IRC11:01
*** sudipto_ has quit IRC11:01
*** jamiec has quit IRC11:04
openstackgerritKevin Benton proposed openstack/neutron master: Simple logging de-dup logic to RPC version_manager  https://review.openstack.org/43276211:06
openstackgerritgaryk proposed openstack/neutron master: For typo in sqlalchemytypes  https://review.openstack.org/43299111:07
openstackgerritKevin Benton proposed openstack/neutron master: Switch to Pecan by default  https://review.openstack.org/39353511:08
*** chandanc__ has quit IRC11:08
*** mvk has joined #openstack-neutron11:09
*** vijaykc4 has joined #openstack-neutron11:11
kevinbentonajo: i would also like your thoughts on the approach I am proposing in this patch11:12
kevinbentonajo: https://review.openstack.org/#/c/432506/11:12
*** jamiec has joined #openstack-neutron11:12
kevinbentonajo: i want our SG code to stop guessing where addressing assignment will come from. it definitely cuts back on complexity...11:12
ajokevinbenton ack, I need to finish something, and I'll have a look at it11:12
kevinbentonajo: no worries11:13
*** lujinluo has quit IRC11:14
ajokevinbenton to start, it's nice -400 lines :)11:14
*** TMM has joined #openstack-neutron11:15
*** openstackgerrit has quit IRC11:18
*** sdague has joined #openstack-neutron11:19
*** boden has joined #openstack-neutron11:21
*** wolverineav has joined #openstack-neutron11:22
*** zhhuabj has quit IRC11:22
*** wolverineav has quit IRC11:27
*** pgadiya has quit IRC11:31
*** nicolasbock has joined #openstack-neutron11:31
*** wolverineav has joined #openstack-neutron11:34
*** ratailor has quit IRC11:36
*** sudipto has joined #openstack-neutron11:38
*** sudipto_ has joined #openstack-neutron11:38
*** tbachman has quit IRC11:39
*** wolverineav has quit IRC11:39
*** nmathew has quit IRC11:40
*** gongysh has quit IRC11:52
*** ralonsoh__ has joined #openstack-neutron11:52
*** sridharg has quit IRC11:52
*** claudiub|2 has quit IRC11:53
*** nyechiel_ has quit IRC11:54
*** ralonsoh_ has quit IRC11:55
*** janki has quit IRC11:56
*** openstackgerrit has joined #openstack-neutron11:57
openstackgerritgaryk proposed openstack/neutron-lib master: Add is_extension_supported to neutron_lib  https://review.openstack.org/43302211:57
*** sridharg has joined #openstack-neutron11:57
openstackgerritDong Jun proposed openstack/networking-ovn master: Support distributed NAT in networking-ovn native L3 routing  https://review.openstack.org/42413712:02
openstackgerritYAMAMOTO Takashi proposed openstack/networking-midonet master: devstack: Collect vpp logs on gate  https://review.openstack.org/41408312:03
*** horms has joined #openstack-neutron12:03
*** wolverineav has joined #openstack-neutron12:04
*** dave-mccowan has joined #openstack-neutron12:04
*** psahoo has quit IRC12:05
*** boden has quit IRC12:06
*** vijaykc4 has quit IRC12:06
*** wolverineav has quit IRC12:09
*** boden has joined #openstack-neutron12:09
*** krypto has quit IRC12:10
*** krypto has joined #openstack-neutron12:11
*** vijaykc4 has joined #openstack-neutron12:11
*** wolverineav has joined #openstack-neutron12:14
*** ushkalim has quit IRC12:18
*** wolverineav has quit IRC12:18
*** dims has quit IRC12:23
*** dave-mcc_ has joined #openstack-neutron12:29
*** donghao has joined #openstack-neutron12:29
*** amuller has joined #openstack-neutron12:30
*** dave-mccowan has quit IRC12:30
openstackgerritgaryk proposed openstack/neutron master: Remove deprecated methods supported by neutron_lib  https://review.openstack.org/43303412:31
*** leitan has joined #openstack-neutron12:32
*** ushkalim has joined #openstack-neutron12:32
*** donghao has quit IRC12:33
*** wolverineav has joined #openstack-neutron12:33
*** g3ek has quit IRC12:36
*** wolverineav has quit IRC12:38
*** catintheroof has joined #openstack-neutron12:41
*** g3ek has joined #openstack-neutron12:45
*** thorst_ has joined #openstack-neutron12:48
*** gcb has joined #openstack-neutron12:50
*** lucasagomes is now known as lucas-hungry12:53
*** wolverineav has joined #openstack-neutron12:53
*** sahilsinha_ is now known as sahilsinha12:55
*** ushkalim has quit IRC12:55
*** tbachman has joined #openstack-neutron12:56
*** korzen has quit IRC12:58
*** wolverineav has quit IRC12:58
*** gouthamr has joined #openstack-neutron12:58
*** sridhargaddam has joined #openstack-neutron13:00
*** russellb has joined #openstack-neutron13:01
*** russellb has quit IRC13:01
*** russellb has joined #openstack-neutron13:01
*** limao has joined #openstack-neutron13:02
*** wolverineav has joined #openstack-neutron13:03
*** sridharg has quit IRC13:03
*** zenirc369 has quit IRC13:06
*** ayogi has quit IRC13:06
*** wolverineav has quit IRC13:08
*** ushkalim has joined #openstack-neutron13:08
*** armax has joined #openstack-neutron13:08
*** bfernando has joined #openstack-neutron13:10
*** nmathew has joined #openstack-neutron13:12
*** ociuhandu has quit IRC13:13
*** nmathew- has joined #openstack-neutron13:14
*** vikram_ has joined #openstack-neutron13:16
*** nmathew has quit IRC13:18
openstackgerritMerged openstack/neutron master: Remove dependency on memory heavy python-requests.  https://review.openstack.org/43236713:19
*** dims has joined #openstack-neutron13:20
*** john51_ has joined #openstack-neutron13:26
*** salv-orlando has quit IRC13:29
*** teclator_ has joined #openstack-neutron13:29
*** korzen has joined #openstack-neutron13:30
*** tristanC_ has joined #openstack-neutron13:30
*** raorn_ has joined #openstack-neutron13:31
*** kysse_ has joined #openstack-neutron13:31
*** sinh_ has joined #openstack-neutron13:31
*** sinh has quit IRC13:32
*** teclator has quit IRC13:32
*** khappone has quit IRC13:32
*** kysse has quit IRC13:32
*** martinus__ has quit IRC13:32
*** hyakuhei has quit IRC13:32
*** dr_gogeta86 has quit IRC13:32
openstackgerritKevin Benton proposed openstack/neutron-lib master: Only log IDs of callbacks in debug message  https://review.openstack.org/43305413:32
openstackgerritKevin Benton proposed openstack/neutron master: Only log IDs of callbacks in debug message  https://review.openstack.org/43275813:32
*** kevinbenton has quit IRC13:32
*** tristanC has quit IRC13:32
*** fnordahl has quit IRC13:32
*** dr_gogeta86_ has joined #openstack-neutron13:32
*** martinus__ has joined #openstack-neutron13:32
*** fnordahl has joined #openstack-neutron13:32
*** hyakuhei has joined #openstack-neutron13:32
*** hyakuhei has quit IRC13:32
*** hyakuhei has joined #openstack-neutron13:32
*** hyakuhei has quit IRC13:32
*** hyakuhei has joined #openstack-neutron13:32
*** wolverineav has joined #openstack-neutron13:33
*** jheroux has joined #openstack-neutron13:34
*** jlibosva1 has joined #openstack-neutron13:34
*** zhhuabj has joined #openstack-neutron13:34
*** kevinbenton has joined #openstack-neutron13:35
*** jlibosva has quit IRC13:35
*** john51 has quit IRC13:36
*** raorn has quit IRC13:36
*** wolverineav has quit IRC13:37
*** dr_gogeta86_ is now known as dr_gogeta8613:38
*** dr_gogeta86 has joined #openstack-neutron13:38
*** vikram_ has quit IRC13:39
*** yamamoto has quit IRC13:39
*** yamamoto has joined #openstack-neutron13:41
*** vijaykc4 has quit IRC13:42
*** dims_ has joined #openstack-neutron13:43
*** dims has quit IRC13:45
*** yamamoto has quit IRC13:47
openstackgerritMerged openstack/neutron-specs master: Correct the doc link  https://review.openstack.org/43288913:48
*** ygbo has joined #openstack-neutron13:49
*** salv-orlando has joined #openstack-neutron13:49
*** jpena is now known as jpena|lunch13:50
*** ociuhandu has joined #openstack-neutron13:51
*** ralonsoh__ is now known as ralonsoh13:57
*** ihrachys has joined #openstack-neutron13:57
openstackgerritPaul Carver proposed openstack/neutron-lib master: Move BGPVPN API definition into neutron-lib  https://review.openstack.org/41318213:58
*** amotoki has quit IRC13:59
*** gongysh has joined #openstack-neutron14:00
*** zkassab has joined #openstack-neutron14:02
*** wolverineav has joined #openstack-neutron14:02
openstackgerritMerged openstack/networking-midonet master: gate_hook: Stop excluding an address scope test  https://review.openstack.org/41698314:02
*** dave-mcc_ has quit IRC14:03
*** mvk has quit IRC14:03
*** slaweq_ has quit IRC14:04
*** dave-mccowan has joined #openstack-neutron14:04
*** beagles is now known as beagles-mtg14:05
*** crushil has joined #openstack-neutron14:05
*** reedip_ has joined #openstack-neutron14:06
*** dave-mcc_ has joined #openstack-neutron14:06
*** horms has quit IRC14:06
*** wolverineav has quit IRC14:06
*** amotoki has joined #openstack-neutron14:08
*** vijaykc4 has joined #openstack-neutron14:09
*** dave-mccowan has quit IRC14:09
*** lucas-hungry is now known as lucasagomes14:10
*** reedip_ has quit IRC14:10
*** amoralej is now known as amoralej|lunch14:11
*** wolverineav has joined #openstack-neutron14:12
*** jperry has joined #openstack-neutron14:14
*** mdnadeem has quit IRC14:14
*** wolverineav has quit IRC14:16
*** mvk has joined #openstack-neutron14:18
openstackgerritAnn Taraday proposed openstack/neutron master: New enginefacade for networks, subnets.  https://review.openstack.org/40275014:19
openstackgerritAnn Taraday proposed openstack/neutron master: [WIP] New enginefacade for ports and sg groups  https://review.openstack.org/40471514:19
*** nyechiel_ has joined #openstack-neutron14:20
openstackgerritPaul Carver proposed openstack/neutron-lib master: Move networking-bgpvpn API reference into neutron-lib  https://review.openstack.org/39019614:21
openstackgerritPaul Carver proposed openstack/neutron-lib master: Move BGPVPN API definition into neutron-lib  https://review.openstack.org/41318214:21
openstackgerritMerged openstack/networking-midonet master: Updated from global requirements  https://review.openstack.org/43199314:25
*** tmorin has joined #openstack-neutron14:26
*** mriedem has joined #openstack-neutron14:27
*** gongysh has quit IRC14:29
*** beagles-mtg has quit IRC14:30
*** reedip_ has joined #openstack-neutron14:31
*** nmathew- has quit IRC14:31
*** slaweq_ has joined #openstack-neutron14:32
*** tonytan4ever has joined #openstack-neutron14:34
*** teclator_ is now known as teclator14:35
*** janzian has joined #openstack-neutron14:36
*** amoralej|lunch is now known as amoralej14:37
*** amotoki has quit IRC14:37
*** jamielennox is now known as jamielennox|away14:39
*** Guest69121 has joined #openstack-neutron14:39
openstackgerritMerged openstack/networking-midonet master: devstack: Collect vpp logs on gate  https://review.openstack.org/41408314:40
*** sridhargaddam has quit IRC14:40
*** abregman has joined #openstack-neutron14:41
*** wolverineav has joined #openstack-neutron14:42
*** vthapar has quit IRC14:43
*** fnaval has quit IRC14:44
*** yamamoto has joined #openstack-neutron14:44
*** fnaval has joined #openstack-neutron14:44
*** Jack_V has joined #openstack-neutron14:44
*** Jack_I has quit IRC14:45
*** ranjithd has joined #openstack-neutron14:46
*** shaner has quit IRC14:46
*** wolverineav has quit IRC14:46
*** HenryG has quit IRC14:46
*** shaner has joined #openstack-neutron14:47
*** fnaval has quit IRC14:48
*** nyechiel_ has quit IRC14:48
*** yamamoto has quit IRC14:49
*** HenryG has joined #openstack-neutron14:49
*** krypto has quit IRC14:50
*** pcaruana has quit IRC14:50
*** krypto has joined #openstack-neutron14:51
*** tmorin has quit IRC14:51
*** nyechiel has joined #openstack-neutron14:51
*** reedip_ has quit IRC14:51
*** jpena|lunch is now known as jpena14:52
*** reedip_ has joined #openstack-neutron14:52
*** rossella_s has quit IRC14:53
*** baoli has joined #openstack-neutron14:53
anilvenkataajo, https://bugs.launchpad.net/python-openstackclient/+bug/166425514:53
openstackLaunchpad bug 1664255 in python-openstackclient "Admin can't override default "distributed" flags" [Undecided,New] - Assigned to venkata anil (anil-venkata)14:53
*** rossella_s has joined #openstack-neutron14:53
*** claudiub|2 has joined #openstack-neutron14:54
openstackgerritPaul Carver proposed openstack/neutron-lib master: Move networking-bgpvpn API reference into neutron-lib  https://review.openstack.org/39019614:54
*** pcaruana has joined #openstack-neutron14:55
*** xinliang has quit IRC14:56
*** vijaykc4 has quit IRC14:56
*** tmorin has joined #openstack-neutron14:56
*** vijaykc4 has joined #openstack-neutron14:56
*** vijaykc4 has quit IRC14:57
*** zzelle_hello is now known as ZZelle14:57
*** nyechiel has quit IRC14:57
*** vijaykc4 has joined #openstack-neutron14:57
*** nyechiel has joined #openstack-neutron14:57
*** dave-mcc_ has quit IRC14:57
*** vijaykc4 has quit IRC14:58
*** vijaykc4 has joined #openstack-neutron14:58
*** jhershbe has quit IRC14:58
*** vijaykc4 has quit IRC14:58
*** chandanc__ has joined #openstack-neutron14:59
*** vijaykc4 has joined #openstack-neutron14:59
*** limao has quit IRC14:59
*** moshele has quit IRC14:59
*** vijaykc4 has quit IRC15:00
*** jose-phillips has joined #openstack-neutron15:00
*** limao has joined #openstack-neutron15:00
*** anilvenkata has quit IRC15:00
*** vijaykc4 has joined #openstack-neutron15:00
*** moshele has joined #openstack-neutron15:00
*** vijaykc4 has quit IRC15:01
*** vijaykc4 has joined #openstack-neutron15:01
*** vijaykc4 has quit IRC15:02
*** vijaykc4 has joined #openstack-neutron15:02
*** wolverineav has joined #openstack-neutron15:02
*** vijaykc4 has quit IRC15:02
*** kriskend has joined #openstack-neutron15:03
*** vijaykc4 has joined #openstack-neutron15:03
*** ushkalim has quit IRC15:03
*** udesale has joined #openstack-neutron15:03
*** nyechiel has quit IRC15:03
*** vijaykc4 has quit IRC15:03
*** reedip_ has quit IRC15:03
*** vijaykc4 has joined #openstack-neutron15:04
*** horms has joined #openstack-neutron15:04
*** mlavalle has joined #openstack-neutron15:04
*** fnaval has joined #openstack-neutron15:05
*** donghao has joined #openstack-neutron15:05
*** reedip_ has joined #openstack-neutron15:07
*** vijaykc4 has quit IRC15:08
*** beekneemech is now known as bnemec15:08
*** xinliang has joined #openstack-neutron15:08
*** xinliang has quit IRC15:08
*** xinliang has joined #openstack-neutron15:08
*** tmorin has quit IRC15:09
*** cgoncalves has quit IRC15:09
*** cgoncalves has joined #openstack-neutron15:10
*** anilvenkata has joined #openstack-neutron15:10
*** salv-orlando has quit IRC15:11
ajoanilvenkata oh yeah, I remember15:11
ajo:_)15:11
*** salv-orlando has joined #openstack-neutron15:11
ajo:)15:11
*** Guest69121 is now known as beagles15:11
*** dave-mccowan has joined #openstack-neutron15:12
*** zenirc369 has joined #openstack-neutron15:12
anilvenkataajo, thanks :)15:14
*** tidwellr has joined #openstack-neutron15:16
*** jose-phillips has quit IRC15:16
*** rkukura has quit IRC15:17
*** ushkalim has joined #openstack-neutron15:17
*** jose-phi_ has joined #openstack-neutron15:17
*** lucas_ has joined #openstack-neutron15:18
*** tlian has joined #openstack-neutron15:18
*** reedip_ has quit IRC15:19
*** reedip_ has joined #openstack-neutron15:21
*** rkukura has joined #openstack-neutron15:23
*** karthikpr has joined #openstack-neutron15:24
*** dave-mccowan has quit IRC15:29
*** ushkalim has quit IRC15:32
*** gvrangan has joined #openstack-neutron15:32
*** dave-mccowan has joined #openstack-neutron15:33
*** lucas_ is now known as lucasxu15:34
*** rajinir_ has joined #openstack-neutron15:34
*** reedip_1 has joined #openstack-neutron15:35
*** mriedem1 has joined #openstack-neutron15:35
*** sandanar has quit IRC15:37
*** krypto has quit IRC15:37
*** krypto has joined #openstack-neutron15:37
*** reedip_ has quit IRC15:38
*** mriedem has quit IRC15:38
*** kobis1 has joined #openstack-neutron15:41
*** obondarev has quit IRC15:41
*** lucasxu has quit IRC15:42
*** lucas_ has joined #openstack-neutron15:43
*** ekuris__ has quit IRC15:43
*** kobis has quit IRC15:43
*** Jeffrey4l__ is now known as Jeffrey4l15:44
*** lucas_ has quit IRC15:44
*** lucasxu has joined #openstack-neutron15:44
openstackgerritboden proposed openstack/neutron-lib master: disallow updating provider_net attrs in api-def  https://review.openstack.org/42196115:44
*** reedip_1 has quit IRC15:45
*** obondarev has joined #openstack-neutron15:46
*** ushkalim has joined #openstack-neutron15:47
*** mriedem1 is now known as mriedem15:48
*** lucasxu has quit IRC15:48
*** lucasxu has joined #openstack-neutron15:49
-openstackstatus- NOTICE: We are currently investigating an issue with our AFS mirrors which is causing some projects jobs to fail. We are working to correct the issue.15:50
openstackgerritboden proposed openstack/neutron-lib master: Use a single hacking check factory  https://review.openstack.org/42148415:50
*** amarao has quit IRC15:50
*** anilvenkata has quit IRC15:50
*** marst has quit IRC15:51
*** tbachman has quit IRC15:51
*** gcheresh has quit IRC15:52
*** karthikpr has quit IRC15:52
*** mvk has quit IRC15:53
*** salv-orlando has quit IRC15:54
*** ratailor has joined #openstack-neutron15:54
*** trevormc has joined #openstack-neutron15:54
*** ranjithd has quit IRC15:56
*** karthikpr has joined #openstack-neutron15:56
*** jose-phi_ has quit IRC15:56
*** yamahata has joined #openstack-neutron15:59
*** abregman has quit IRC16:00
*** vthapar has joined #openstack-neutron16:00
*** marst has joined #openstack-neutron16:01
*** dsneddon_afk is now known as dsneddon16:02
*** chandanc__ has quit IRC16:03
*** Leom has joined #openstack-neutron16:04
*** jamesdenton has joined #openstack-neutron16:04
*** Leo_ has quit IRC16:06
*** horms has quit IRC16:07
*** korzen has quit IRC16:08
*** moshele has quit IRC16:09
*** obondarev has quit IRC16:10
*** jlibosva1 is now known as jlibosva16:10
*** donghao has quit IRC16:12
*** abregman has joined #openstack-neutron16:13
*** donghao has joined #openstack-neutron16:13
*** ociuhandu has quit IRC16:14
openstackgerritJakub Libosvar proposed openstack/neutron master: fullstack: Fix race between updating port security and test  https://review.openstack.org/43315716:15
*** kobis has joined #openstack-neutron16:16
*** ventifus has joined #openstack-neutron16:16
*** mhickey has joined #openstack-neutron16:17
openstackgerritgaryk proposed openstack/neutron master: Remove deprecated methods supported by neutron_lib  https://review.openstack.org/43303416:18
openstackgerritgaryk proposed openstack/neutron master: For typo in sqlalchemytypes  https://review.openstack.org/43299116:18
*** rcernin has quit IRC16:19
*** dims_ has quit IRC16:19
*** donghao has quit IRC16:19
*** ramishra has quit IRC16:19
*** horms has joined #openstack-neutron16:20
*** pcaruana has quit IRC16:20
*** armax has quit IRC16:21
*** tbachman has joined #openstack-neutron16:22
openstackgerritJesse proposed openstack/neutron master: Update class AsyncProcess to improve openvswitch-agent performance  https://review.openstack.org/43187616:23
*** iyamahat has joined #openstack-neutron16:23
*** dims has joined #openstack-neutron16:24
openstackgerritItzik Brown proposed openstack/neutron master: Adding floating ip for cleanup  https://review.openstack.org/43271316:26
*** vijaykc4 has joined #openstack-neutron16:31
*** matrohon has quit IRC16:32
*** karthikpr has quit IRC16:32
*** pcaruana has joined #openstack-neutron16:34
*** horms has quit IRC16:34
openstackgerritgaryk proposed openstack/neutron-lib master: Add is_extension_supported to neutron_lib  https://review.openstack.org/43302216:34
*** reedip_ has joined #openstack-neutron16:34
*** princenana has joined #openstack-neutron16:35
*** abregman is now known as abregman|afk16:38
*** iranzo has quit IRC16:40
*** nlahouti has joined #openstack-neutron16:40
*** ociuhandu has joined #openstack-neutron16:41
*** crose has joined #openstack-neutron16:42
*** vhosakot has joined #openstack-neutron16:44
ZZellegus, hi16:45
*** john-davidge has quit IRC16:45
*** john-davidge has joined #openstack-neutron16:45
*** udesale has quit IRC16:47
*** vijaykc4 has quit IRC16:50
*** john-davidge has quit IRC16:50
*** dims has quit IRC16:51
*** annegentle has joined #openstack-neutron16:54
*** dims has joined #openstack-neutron16:55
*** tesseract-RH has quit IRC16:55
*** annegentle has quit IRC16:56
*** annegentle has joined #openstack-neutron16:56
*** horms has joined #openstack-neutron16:56
*** ratailor has quit IRC16:56
*** abhiraut has joined #openstack-neutron16:57
*** ltomasbo is now known as ltomasbo|away16:57
*** pcaruana has quit IRC16:58
*** pcaruana has joined #openstack-neutron16:58
openstackgerritAnindita Das proposed openstack/neutron master: [OVO] Integration of RouterL3AgentBinding  https://review.openstack.org/37707416:59
*** mriedem has quit IRC17:00
openstackgerritJakub Libosvar proposed openstack/neutron master: ovsfw: Fix overlapping MAC addresses on integration bridge  https://review.openstack.org/38508517:01
*** mriedem has joined #openstack-neutron17:01
*** liangy has joined #openstack-neutron17:02
*** gvrangan has quit IRC17:03
*** nyechiel has joined #openstack-neutron17:04
*** reedip_ has quit IRC17:05
*** dims_ has joined #openstack-neutron17:06
*** dims has quit IRC17:07
*** itzikb has quit IRC17:07
openstackgerritJakub Libosvar proposed openstack/neutron master: ovsfw: Fix overlapping MAC addresses on integration bridge  https://review.openstack.org/38508517:13
*** abregman|afk has quit IRC17:13
*** abhiraut has quit IRC17:13
*** ltomasbo|away is now known as ltomasbo17:15
*** vijaykc4 has joined #openstack-neutron17:19
openstackgerritJakub Libosvar proposed openstack/neutron master: fullstack: Fix race between updating port security and test  https://review.openstack.org/43315717:19
-openstackstatus- NOTICE: AFS replication issue has been addressed. Mirrors are currently re-syncing and coming back online.17:19
*** ygbo has quit IRC17:19
*** gvrangan has joined #openstack-neutron17:20
*** bnemec has quit IRC17:20
*** jlibosva has quit IRC17:21
*** vijaykc4 has quit IRC17:21
*** krypto has quit IRC17:22
*** krypto has joined #openstack-neutron17:23
*** krypto has quit IRC17:23
*** krypto has joined #openstack-neutron17:23
*** bss has joined #openstack-neutron17:23
*** jperry has quit IRC17:23
openstackgerritMerged openstack/networking-sfc master: Make the pep8 env detect style errors again  https://review.openstack.org/43259317:24
*** bnemec has joined #openstack-neutron17:24
*** jperry has joined #openstack-neutron17:24
*** vijaykc4 has joined #openstack-neutron17:25
*** crose has quit IRC17:25
*** ihrachys_ has joined #openstack-neutron17:25
*** ihrachys has quit IRC17:26
*** ltomasbo is now known as ltomasbo|away17:28
*** liangy has quit IRC17:30
*** ushkalim has quit IRC17:32
*** moshele has joined #openstack-neutron17:32
*** vhosakot has quit IRC17:33
*** davidsha has quit IRC17:33
*** mhickey has quit IRC17:35
*** kobis has quit IRC17:36
*** john-davidge has joined #openstack-neutron17:37
*** mvk has joined #openstack-neutron17:38
*** jlinkes has quit IRC17:40
*** vthapar has quit IRC17:41
*** baoli has quit IRC17:44
*** pcaruana has quit IRC17:44
*** baoli has joined #openstack-neutron17:45
*** baoli has quit IRC17:45
*** iyamahat has quit IRC17:45
*** yamahata has quit IRC17:45
*** lucasxu has quit IRC17:47
*** belharar_ has quit IRC17:48
*** eezhova has quit IRC17:49
*** radhikam has joined #openstack-neutron17:49
*** princenana has quit IRC17:49
*** kriskend has quit IRC17:50
*** princenana has joined #openstack-neutron17:50
*** bss has quit IRC17:51
*** armax has joined #openstack-neutron17:51
*** salv-orlando has joined #openstack-neutron17:55
*** ralonsoh has quit IRC17:56
*** david-lyle has joined #openstack-neutron17:58
*** ZZelle_ has joined #openstack-neutron17:58
*** armax has quit IRC17:59
*** armax has joined #openstack-neutron18:00
*** fragatina has joined #openstack-neutron18:01
*** fragatina has quit IRC18:01
*** lucasagomes is now known as lucas-afk18:01
*** fragatina has joined #openstack-neutron18:01
*** armax has quit IRC18:02
*** princenana has quit IRC18:02
*** fandi has joined #openstack-neutron18:03
*** princenana has joined #openstack-neutron18:03
*** iyamahat has joined #openstack-neutron18:05
*** Swami has joined #openstack-neutron18:06
*** jlinkes has joined #openstack-neutron18:06
*** david-lyle_ has joined #openstack-neutron18:08
*** jaosorior has quit IRC18:08
openstackgerritPaul Carver proposed openstack/neutron-lib master: Move BGPVPN API definition into neutron-lib  https://review.openstack.org/41318218:09
*** david-lyle has quit IRC18:09
*** jhershbe has joined #openstack-neutron18:10
*** david-lyle_ is now known as david-lyle18:12
*** vijaykc4 has quit IRC18:13
*** fandi has quit IRC18:14
kryptohello all ,i am struggling with DVR in mitaka.router namespace is not able to reach dhcp or lbaas namespace any idea about this issue18:15
openstackgerritAnindita Das proposed openstack/neutron master: [OVO] Integration of RouterL3AgentBinding  https://review.openstack.org/37707418:16
*** bfernando has quit IRC18:19
*** lucasxu has joined #openstack-neutron18:19
*** liangy has joined #openstack-neutron18:20
*** princenana has quit IRC18:20
*** princenana has joined #openstack-neutron18:21
*** obondarev has joined #openstack-neutron18:23
*** baoli has joined #openstack-neutron18:24
Swamikrypto: what do you see in the router namespace. is the other subnets in the router reachable through the router namespace.18:24
*** baoli has quit IRC18:25
*** yamahata has joined #openstack-neutron18:25
*** eezhova has joined #openstack-neutron18:25
*** baoli has joined #openstack-neutron18:25
*** nplanel has quit IRC18:25
*** krypto has quit IRC18:26
*** rossella_s has quit IRC18:26
*** krypto has joined #openstack-neutron18:26
*** krypto has quit IRC18:26
*** krypto has joined #openstack-neutron18:26
*** gouthamr has quit IRC18:26
*** jhershbe has quit IRC18:26
*** gouthamr has joined #openstack-neutron18:27
*** nplanel has joined #openstack-neutron18:27
openstackgerritIsaku Yamahata proposed openstack/networking-odl master: QoS V2 driver for ODL  https://review.openstack.org/31894218:28
*** horms has quit IRC18:30
kryptoSwami i have only one subnet in router namespace and from there i can reach all instance's ip but not qlbaas and qdhcp namespaces.Where as qlbaas and qdhcp can talk to each other and also to instances18:30
Swamikrypto: typically from the dhcp namespace you should be able to ping any instances connected to the router, is that working.18:31
*** abhiraut has joined #openstack-neutron18:32
Swamikrypto: does the qlbaas have a vip ip that you are trying to ping, is the vip ip also residing in the same subnet.18:32
*** reedip_ has joined #openstack-neutron18:32
kryptoyes Swami  dhcp to instance is fine ,lbaas to instance is also fine .only things that are not working are qdhcp to qrouter and qlbaas to qrouter18:33
kryptoyes vip is in same subnet and instances can reach vip18:33
*** kriskend has joined #openstack-neutron18:33
Swamikrypto: let me be clear here. You mentioned that lbaas to instance is fine. Is this traffic going through the router or is in the same bridge, so the traffic does not even hit the router.18:34
*** sudipto_ has quit IRC18:35
*** sudipto has quit IRC18:35
kryptono Swami  lbaas to instance traffic is not hitting qrouter18:35
*** TMM has quit IRC18:36
Swamikrypto: now tell me what you are trying to do with the router and lbaas, are you trying to connect to another subnet18:36
*** sterdnotshaken has joined #openstack-neutron18:38
Swamiare you trying to use floatingip to vip to reach from outside.18:38
kryptofloating ip associated to lbaas instance is not working.I can not reach that ip even with correct security groups. I assume that will also be handled by qrouter18:38
*** princenana has quit IRC18:38
Swamikrypto: so you are using floating ip18:38
kryptoyes :)18:39
*** princenana has joined #openstack-neutron18:39
kryptostrangely floating ip assigned on vm is working18:39
Swamikrypto: when you assigned the vip, does the vip port have a host-binding.18:39
*** s3wong has joined #openstack-neutron18:39
Swamikrypto: you should be able to see that from the vip port detials 'binding:host_id'18:40
*** gcheresh has joined #openstack-neutron18:40
*** zenirc369 has quit IRC18:40
kryptookk let me check that18:40
*** john-dav_ has joined #openstack-neutron18:40
*** princenana has quit IRC18:40
*** princenana has joined #openstack-neutron18:40
*** john-davidge has quit IRC18:40
*** jpena is now known as jpena|away18:40
*** jlinkes has quit IRC18:42
*** rmcadams has joined #openstack-neutron18:44
*** obondarev has quit IRC18:45
*** baoli has quit IRC18:48
*** baoli has joined #openstack-neutron18:48
*** jhershbe has joined #openstack-neutron18:50
*** emagana has joined #openstack-neutron18:54
*** oreillyd has quit IRC18:56
*** oreillyd_ has quit IRC18:56
*** sterdnotshaken has quit IRC18:56
openstackgerritboden proposed openstack/neutron-lib master: rehome l3 api-def exceptions  https://review.openstack.org/42328918:58
openstackgerritSindhu Devale proposed openstack/neutron master: [WIP] Creating a subnet without allocation pool  https://review.openstack.org/43323418:59
*** fragatina has quit IRC18:59
*** salv-orl_ has joined #openstack-neutron19:00
openstackgerritReedip proposed openstack/neutron master: Allow port creation/updation by shared nw owners  https://review.openstack.org/43285019:02
*** moshele has quit IRC19:03
*** salv-orlando has quit IRC19:03
*** crushil has quit IRC19:05
*** jamesdenton has quit IRC19:05
*** cheran has joined #openstack-neutron19:05
*** Jack_V has quit IRC19:07
*** krypto has quit IRC19:08
*** sean-k-mooney has quit IRC19:09
*** krypto has joined #openstack-neutron19:10
*** krypto has quit IRC19:10
*** krypto has joined #openstack-neutron19:10
*** obondarev has joined #openstack-neutron19:11
reedip_guys , do we have our team meeting today or tomorrow ?19:12
*** leitan has quit IRC19:13
*** john-dav_ has quit IRC19:13
*** ociuhandu has quit IRC19:13
*** leitan has joined #openstack-neutron19:13
dasmreedip_: my calendar shows tomorrow19:13
*** john-davidge has joined #openstack-neutron19:13
reedip_Thats what I wanted to confirm dasm :)19:14
reedip_thanks :)19:14
dasmreedip_: and past logs shows 02/06: http://eavesdrop.openstack.org/meetings/networking/2017/19:14
*** princenana has quit IRC19:14
dasmso... next one should be 02/06+week+1 ;)19:14
dasmreedip_: np19:14
*** princenana has joined #openstack-neutron19:14
reedip_dasm : yeah, thats why I was confused, so just wanted to be sure  :)19:15
*** john-davidge has quit IRC19:18
*** princenana has quit IRC19:18
*** princenana has joined #openstack-neutron19:19
*** princenana has quit IRC19:19
*** princenana has joined #openstack-neutron19:19
*** shaner has quit IRC19:20
*** shaner has joined #openstack-neutron19:20
*** salv-orl_ has quit IRC19:20
*** salv-orlando has joined #openstack-neutron19:21
*** MasterOfBugs has joined #openstack-neutron19:21
*** princenana has quit IRC19:25
*** princenana has joined #openstack-neutron19:25
*** obondarev has quit IRC19:26
*** princena_ has joined #openstack-neutron19:26
*** princenana has quit IRC19:26
*** crushil has joined #openstack-neutron19:28
openstackgerritPaul Carver proposed openstack/neutron-lib master: Move networking-bgpvpn API reference into neutron-lib  https://review.openstack.org/39019619:29
openstackgerritPaul Carver proposed openstack/neutron-lib master: Move BGPVPN API definition into neutron-lib  https://review.openstack.org/41318219:29
*** jlinkes has joined #openstack-neutron19:29
*** eezhova has quit IRC19:30
*** ihrachys_ has quit IRC19:31
*** princena_ has quit IRC19:31
*** ihrachys_ has joined #openstack-neutron19:33
openstackgerritboden proposed openstack/neutron-lib master: add exceptions package  https://review.openstack.org/43323919:34
*** horms has joined #openstack-neutron19:35
openstackgerritPaul Carver proposed openstack/neutron-lib master: Move BGPVPN API definition into neutron-lib  https://review.openstack.org/41318219:36
*** amoralej is now known as amoralej|off19:37
*** crose has joined #openstack-neutron19:39
*** iranzo has joined #openstack-neutron19:41
*** iranzo has quit IRC19:41
*** iranzo has joined #openstack-neutron19:41
*** matrohon has joined #openstack-neutron19:41
*** gk-1wm-su has joined #openstack-neutron19:41
*** gk-1wm-su has left #openstack-neutron19:41
*** donghao has joined #openstack-neutron19:45
*** dsneddon is now known as dsneddon_afk19:45
openstackgerritboden proposed openstack/neutron-lib master: rehome l3 api-def exceptions  https://review.openstack.org/42328919:45
*** eezhova has joined #openstack-neutron19:46
*** kobis has joined #openstack-neutron19:48
*** krypto has quit IRC19:48
*** donghao has quit IRC19:49
*** baoli has quit IRC19:50
*** ociuhandu has joined #openstack-neutron19:51
*** baoli has joined #openstack-neutron19:51
openstackgerritReedip proposed openstack/neutron-lib master: Add CIDR for canonical format conversion  https://review.openstack.org/43252119:51
*** korzen has joined #openstack-neutron19:52
*** horms has quit IRC19:53
*** nlahouti has quit IRC19:53
*** ociuhandu has quit IRC19:56
*** salv-orlando has quit IRC19:57
*** dsneddon has joined #openstack-neutron19:58
*** mbirru has joined #openstack-neutron19:59
*** trevormc has quit IRC20:02
*** crushil has quit IRC20:02
openstackgerritIsaku Yamahata proposed openstack/networking-odl master: OpenStack Networking-SFC Ver.2 driver for ODL  https://review.openstack.org/38908120:03
*** jlinkes has quit IRC20:03
reedip_sindhu : ping20:04
sindhureedip_: hey, wass up :)20:04
reedip_just saw ur patch20:05
*** cheran has quit IRC20:05
sindhureedip_: create subnet?20:05
reedip_no allocation pool one20:05
*** crushil has joined #openstack-neutron20:05
sindhureedip_: ya20:05
reedip_My only query :  why do we need a separate extension20:05
sindhureedip_: what is the other alternative?20:06
*** crose has quit IRC20:06
*** TMM has joined #openstack-neutron20:06
*** armax has joined #openstack-neutron20:07
reedip_sindhu  : checking the code, but I think we can specify allocation pools as [] in https://github.com/openstack/neutron/blob/master/neutron/api/v2/attributes.py#L177-L18020:07
sindhureedip_:20:08
sindhubut that results in allocation_pools being [] by default right?20:08
openstackgerritIhar Hrachyshka proposed openstack/neutron master: Reconcile quitting_rpc_timeout with backoff RPC client  https://review.openstack.org/43248120:08
reedip_sindhu , actually , no. Allocation_Pools are None by default20:09
reedip_sindhu : I am just checking the code, I am not as proficient as others but for example , https://github.com/openstack/neutron/blob/49d614895f44c44f9e1735210498facf1886c404/neutron/ipam/requests.py#L32-L88 you can see that allocation_pools is expected to be None if not defined20:09
reedip_sindhu , setting it to [] would not be useful20:10
sindhureedip_: isn't the default option that it automatically assigns start and end value ?20:10
*** jhershbe has quit IRC20:11
*** amoralej|off is now known as amoralej20:11
*** slaweq has quit IRC20:11
*** ociuhandu has joined #openstack-neutron20:12
sindhureedip_: if I create a subnet : openstack subnet create subnet1 --network net1 --subnet-range <> , even though I don't specify the allocation, it automatically assigns the start and end value of allocation pool20:12
reedip_sindhu , thats how allocation pool would work20:12
*** ranjithd has joined #openstack-neutron20:13
*** slaweq has joined #openstack-neutron20:13
reedip_sindhu but what you need is something which can override it20:13
sindhureedip_: yeah20:13
reedip_sindhu but creating a new extension would be a bit more than expected20:13
reedip_sindhu : actually you can create a --no-allocation-pool in OSC20:14
sindhureedip_: I did that20:15
reedip_That can send [] to the allocation pools20:15
sindhureedip_: that won't work20:15
sindhureedip_: coz, even though in the POST request the allocation_pools looks like []20:15
sindhureedip_: when the request reaches the neutron server20:15
sindhureedip_: it assigns the value20:16
sindhureedip_: I spoke with carl baldwin20:17
reedip_sindhu : I saw his comments in the bug20:17
reedip_comment#820:17
sindhureedip_: he suggested an extension or API microversioning is needed to handle this20:17
*** fragatina has joined #openstack-neutron20:17
sindhureedip_: oh ok, yeah20:18
reedip_sindhu , actually I was reading this : https://github.com/openstack/neutron/blob/49d614895f44c44f9e1735210498facf1886c404/neutron/ipam/requests.py#L5320:18
reedip_sindhu : if the allocation_pool here is None, then most of your job would be done20:18
*** Jack_V has joined #openstack-neutron20:18
*** ijw has joined #openstack-neutron20:20
sindhureedip_: hmm, but the problem is by default when nothing is given in the command line it assign automatically (like how it is working now) and we need it to assign [] only when the user uses --no-allocation-pool option (which I will implement later)20:21
*** ociuhandu has quit IRC20:21
openstackgerritboden proposed openstack/neutron-lib master: rehome port security api-def  https://review.openstack.org/42847320:22
reedip_sindhu : so basically we need to trace where the allocation_pool is getting an IPRange value ( via PDB, traceback or simple debugging )20:23
sindhureedip_: yeah, I am working on that now20:23
openstackgerritAnindita Das proposed openstack/neutron-lib master: api-ref: Correcting QoS policies in API extension  https://review.openstack.org/35839720:23
reedip_sindhu : that would help us , other wise I think your extension may do the frontend job but not sure if backend would be handled20:23
*** gouthamr has quit IRC20:24
sindhureedip_:  I'll work on this extension, the backend server code and the osc option (everything that is needed)20:25
*** ijw has quit IRC20:25
*** gouthamr has joined #openstack-neutron20:25
*** ijw has joined #openstack-neutron20:25
sindhureedip_: but is the need of extension justified now?20:25
reedip_sindhu : IMHO , not necessary , but cores can justify it further20:27
reedip_sindhu : btw did the floating ip patch merge20:27
sindhureedip_: haha okay :)20:28
reedip_I didnt track it for some days now20:28
sindhureedip_: no not yet20:28
*** Jack_V has quit IRC20:28
sindhureedip_: may they'll look at it after PTG20:28
reedip_Hmm, I will also look at it tomorrow.. its 2 am now, need to sleep :D20:29
sindhureedip_: sure :) I will address the comments by then20:30
reedip_sindhu : BTW you may need to change this https://github.com/openstack/neutron/blob/31e5176a3606fca4ee7587964fce82729db5ef15/neutron/db/models_v2.py#L29-L3920:31
reedip_this is the first and the last IP of the allocation pool and its setting nullable=False20:32
*** ociuhandu has joined #openstack-neutron20:32
reedip_in the DB20:32
reedip_sindhu : your patch may need to change this20:32
reedip_sindhu : and probably https://github.com/openstack/neutron/blob/eb1dd050f14072bb9eebcba432db24ca68f8c762/neutron/ipam/subnet_alloc.py#L117-L139 would be needed20:35
openstackgerritboden proposed openstack/neutron-lib master: rehome extra_dhcp_opt api-def  https://review.openstack.org/42838720:35
*** tonytan4ever has quit IRC20:36
*** tonytan4ever has joined #openstack-neutron20:36
*** ociuhandu has quit IRC20:36
*** janzian has quit IRC20:39
*** jamesdenton has joined #openstack-neutron20:40
*** korzen has quit IRC20:42
sindhureedip_: yeah, the change in the model makes sense. Will look into it :) thank you20:42
dasmpcarver: i just read your comment: "I think git review killed it and hid the body."20:43
dasmpcarver: xD20:43
*** reedip_ has quit IRC20:44
*** crushil has quit IRC20:44
*** crushil has joined #openstack-neutron20:45
*** leitan has quit IRC20:51
*** princenana has joined #openstack-neutron20:51
*** leitan has joined #openstack-neutron20:52
bodenarmax kevinbenton ihrachys: has the topic of the auto_allocated_topology plugin/service supporting no SNAT ever been disucssed?20:52
armaxnot quit20:53
armaxe20:53
openstackgerritRussell Bryant proposed openstack/networking-ovn master: Update hacking version  https://review.openstack.org/42923220:53
openstackgerritRussell Bryant proposed openstack/networking-ovn master: Sync with global requirements.  https://review.openstack.org/43325820:53
russellbwoah, first time i noticed the networking-ovn reviews in here20:54
armaxat the summit we once talked about making the allocation model more flexible20:54
*** iranzo has quit IRC20:54
armaxrussellb: https://review.openstack.org/#/c/431254/20:54
*** princenana has quit IRC20:54
russellbarmax: nice work sir20:55
armaxboden: but we were sorta waiting for more adoption before jumping with boot feet to see what we can do20:55
*** princenana has joined #openstack-neutron20:55
*** Swami has quit IRC20:55
bodenarmax: opposed to an RFE To kick the idea?20:55
armaxI wouldn’t be20:56
*** Swami has joined #openstack-neutron20:56
bodenI’ll throw one up; worst that can happen is it gets killed20:56
*** leitan has quit IRC20:56
*** princenana has quit IRC20:56
*** princenana has joined #openstack-neutron20:56
*** janzian has joined #openstack-neutron20:57
*** nyechiel has quit IRC20:59
*** mickeys has joined #openstack-neutron20:59
*** jamielennox|away is now known as jamielennox21:02
*** princenana has quit IRC21:02
*** princenana has joined #openstack-neutron21:03
*** princenana has quit IRC21:03
*** princenana has joined #openstack-neutron21:03
*** mickeys has quit IRC21:03
*** rkukura has quit IRC21:04
*** amarao has joined #openstack-neutron21:09
*** ihrachys_ is now known as ihrachys21:10
*** jamesden_ has joined #openstack-neutron21:11
*** nlahouti has joined #openstack-neutron21:11
*** kobis has quit IRC21:11
*** yamamoto has joined #openstack-neutron21:12
*** jamesdenton has quit IRC21:12
*** sambetts is now known as sambetts|afk21:14
*** fzdarsky|afk has quit IRC21:17
*** crushil has quit IRC21:19
openstackgerritIhar Hrachyshka proposed openstack/neutron master: Add exit points into ovs agent rpc_loop to catch termination signal  https://review.openstack.org/43327621:20
*** amarao has quit IRC21:20
*** kobis has joined #openstack-neutron21:20
*** kobis has quit IRC21:22
*** vijaykc4 has joined #openstack-neutron21:22
*** iyamahat has quit IRC21:22
*** amoralej is now known as amoralej|off21:23
*** mickeys has joined #openstack-neutron21:25
*** yamamoto has quit IRC21:27
*** leitan has joined #openstack-neutron21:27
*** vijaykc4 has quit IRC21:27
*** pramodrj07 has joined #openstack-neutron21:28
*** jlinkes has joined #openstack-neutron21:29
*** pramodrj07 has quit IRC21:30
*** pramodrj07 has joined #openstack-neutron21:30
*** MasterOfBugs has quit IRC21:32
*** pramodrj07 has quit IRC21:32
*** MasterOfBugs has joined #openstack-neutron21:32
*** fzdarsky|afk has joined #openstack-neutron21:32
armaxihrachys: ping21:35
*** sterdnotshaken has joined #openstack-neutron21:35
armaxdo you think we should try and squeeze fix for bug https://bugs.launchpad.net/neutron/+bug/1663458 in the RC?21:35
openstackLaunchpad bug 1663458 in neutron "brutal stop of ovs-agent doesn't kill ryu controller" [High,In progress] - Assigned to Ihar Hrachyshka (ihar-hrachyshka)21:35
armaxkevinbenton: ^21:35
*** Jeffrey4l has quit IRC21:36
*** Jeffrey4l_ has joined #openstack-neutron21:36
*** dave-mccowan has quit IRC21:36
openstackgerritRitu Sood proposed openstack/networking-odl master: Add/Update hostconfig examples for OVS-DPDK and VPP  https://review.openstack.org/43328321:36
ihrachysarmax: well, I dunno. I tend to say we can give it some time to settle in master and backport later. it was with us since mitaka?21:38
openstackgerritManjeet Singh Bhatia proposed openstack/networking-odl master: QoS V2 driver for ODL  https://review.openstack.org/31894221:38
openstackgerritManjeet Singh Bhatia proposed openstack/networking-odl master: Add a method to query operations  https://review.openstack.org/41726021:38
ihrachysnot to say it's not critical21:38
armaxihrachys: ok, I would concur21:38
ihrachysbtw it's not just ovs agent it seems. the way we model our agent loops and the way we implement signal handlers, it's a bit slow catching up stop requests sometimes. :(21:39
*** gcheresh has quit IRC21:39
ihrachysI checked l3, it seems to show a similar behaviour21:39
ihrachysI wonder where the plans to refactor ovs agent that we heard about in the past stand21:40
armaxihrachys: pipe dream stage21:41
*** princenana has quit IRC21:41
*** princenana has joined #openstack-neutron21:41
ihrachysyeah21:41
*** johndperkins has joined #openstack-neutron21:42
ihrachysso I honestly don't know much about safety of exceptions raised inside signal handlers in python21:42
armaxI know, that was ambitious21:42
openstackgerritRussell Bryant proposed openstack/networking-ovn master: Sync devstackgaterc with devstackgatenativeservicesrc.  https://review.openstack.org/43328821:43
*** salv-orlando has joined #openstack-neutron21:46
*** jheroux has quit IRC21:56
*** sterdnotshaken1 has joined #openstack-neutron21:58
*** lucasxu has quit IRC21:58
*** sterdnotshaken1 has quit IRC21:58
*** gouthamr has quit IRC21:59
*** sterdnotshaken has quit IRC21:59
*** kriskend has quit IRC22:01
*** kriskend has joined #openstack-neutron22:02
*** thorst_ has quit IRC22:03
*** leitan has quit IRC22:06
*** leitan has joined #openstack-neutron22:07
openstackgerritMohammed Naser proposed openstack/neutron master: Update KillFilter for OpenStack on RHEL  https://review.openstack.org/43329722:07
*** jamesden_ has quit IRC22:08
*** abhiraut1 has joined #openstack-neutron22:08
*** abhiraut has quit IRC22:08
*** abhiraut has joined #openstack-neutron22:08
mnaserhi everyone, i'm hoping this can be looked at ^ it's a pretty bad issue which can result in logs filling up super quickly22:09
*** leitan has quit IRC22:11
*** yamamoto has joined #openstack-neutron22:12
*** gvrangan has quit IRC22:12
*** abhiraut1 has quit IRC22:12
*** jlinkes has quit IRC22:14
*** ihrachys has quit IRC22:16
*** liangy has quit IRC22:16
*** catintheroof has quit IRC22:20
*** vijaykc4 has joined #openstack-neutron22:20
*** rajinir_ has quit IRC22:20
openstackgerritYAMAMOTO Takashi proposed openstack/networking-midonet master: devstack: Stop using devmido  https://review.openstack.org/42699622:23
openstackgerritMerged openstack/networking-odl master: delete sg rule on sg deletion on ODL neutron northbound  https://review.openstack.org/43189422:24
openstackgerritMerged openstack/networking-odl master: devstack: show ODL neutron northbound data  https://review.openstack.org/43250822:24
openstackgerritMerged openstack/networking-odl master: devstack: configure external net for new netvirt  https://review.openstack.org/43052322:24
*** gvrangan has joined #openstack-neutron22:26
*** princenana has quit IRC22:26
*** princenana has joined #openstack-neutron22:27
*** ZZelle_ has quit IRC22:28
*** matrohon has quit IRC22:30
*** princenana has quit IRC22:32
*** amuller has quit IRC22:32
openstackgerritMerged openstack/networking-ovn master: Change assertEqual(A, None) by optimal assert like assertIsNone(A)  https://review.openstack.org/42953622:33
*** thorst_ has joined #openstack-neutron22:33
openstackgerritMerged openstack/networking-ovn master: Updated from global requirements  https://review.openstack.org/43199522:33
openstackgerritMerged openstack/networking-ovn master: Return id of created entity for LSwitch and LPort  https://review.openstack.org/42721722:34
*** lucasxu has joined #openstack-neutron22:35
*** tidwellr has quit IRC22:36
*** gouthamr has joined #openstack-neutron22:36
openstackgerritMerged openstack/networking-ovn master: Use the neutron-lib imports in l3_ovn  https://review.openstack.org/43290322:37
openstackgerritMerged openstack/networking-ovn master: Add "enable_service placement-api" to computenode-local.conf.sample  https://review.openstack.org/43282022:37
openstackgerritMerged openstack/networking-ovn master: Typo fix: diferent => different  https://review.openstack.org/43009022:37
*** thorst_ has quit IRC22:38
*** pmannidi has joined #openstack-neutron22:38
*** tommylikehu_ has joined #openstack-neutron22:39
*** princenana has joined #openstack-neutron22:41
*** liangy has joined #openstack-neutron22:42
*** princenana has quit IRC22:42
*** princenana has joined #openstack-neutron22:43
*** dhellmann has left #openstack-neutron22:43
*** princenana has quit IRC22:43
openstackgerritTrevor McCasland proposed openstack/neutron master: use neutron_lib's get_random_mac  https://review.openstack.org/43174122:45
*** princenana has joined #openstack-neutron22:45
*** tonytan4ever has quit IRC22:46
*** vijaykc4 has quit IRC22:47
*** wolverineav has quit IRC22:47
*** eezhova has quit IRC22:47
*** salv-orlando has quit IRC22:49
*** princenana has quit IRC22:51
*** vijaykc4 has joined #openstack-neutron22:51
*** princenana has joined #openstack-neutron22:52
*** jperry has quit IRC22:55
*** boden has quit IRC22:56
*** sterdnotshaken has joined #openstack-neutron22:57
*** kriskend has quit IRC23:00
*** gk--1wm- has joined #openstack-neutron23:00
*** gk--1wm- has left #openstack-neutron23:00
*** wolverineav has joined #openstack-neutron23:00
*** thorst_ has joined #openstack-neutron23:01
*** mriedem is now known as mriedem_afk23:02
*** lucasxu has quit IRC23:02
*** vijaykc4 has quit IRC23:02
*** lucasxu has joined #openstack-neutron23:02
*** dhellmann has joined #openstack-neutron23:04
*** dhellmann has quit IRC23:05
*** wolverineav has quit IRC23:05
*** annegentle has quit IRC23:07
*** vijaykc4 has joined #openstack-neutron23:09
*** tommylikehu_ has quit IRC23:10
*** marst has quit IRC23:11
*** marst has joined #openstack-neutron23:11
*** vijaykc4 has quit IRC23:12
*** limao has quit IRC23:13
*** jamielennox is now known as jamielennox|away23:15
*** iyamahat has joined #openstack-neutron23:18
*** jamielennox|away is now known as jamielennox23:20
*** marst has quit IRC23:21
*** donghao has joined #openstack-neutron23:21
*** annegentle has joined #openstack-neutron23:21
openstackgerritMerged openstack/networking-odl master: L2Gateway version 2 driver for OpenDaylight  https://review.openstack.org/42242123:21
*** annegentle has quit IRC23:22
*** donghao has quit IRC23:26
*** lucasxu has quit IRC23:28
*** ihrachys has joined #openstack-neutron23:31
*** ihrachys has quit IRC23:36
*** Swami has quit IRC23:36
*** wolverineav has joined #openstack-neutron23:41
*** fzdarsky|afk has quit IRC23:42
*** geen02 has joined #openstack-neutron23:43
*** fnaval has quit IRC23:44
*** reedip_ has joined #openstack-neutron23:45
*** wolverineav has quit IRC23:46
*** MasterOfBugs has quit IRC23:46
*** reedip_ has quit IRC23:46
*** Swami has joined #openstack-neutron23:49
*** lujinluo has joined #openstack-neutron23:51
*** catintheroof has joined #openstack-neutron23:55
*** princenana has quit IRC23:55
*** wolverineav has joined #openstack-neutron23:57
*** g3ek has quit IRC23:58

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